/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_build_helper.py | 39 Return ```(c_file, c_name, exe_name)``` where ``c_file`` is a Python 40 stream open for writing to the file, ``c_name`` is the name of the file 44 c_fd, c_name = tempfile.mkstemp(prefix='tmp-{}-'.format(file_label), 47 exe_name = c_name[:-2] + exe_suffix 50 return c_file, c_name, exe_name 150 c_name = None variable 154 c_file, c_name, exe_name = create_c_file(file_label) 163 compile_c_file(c_name, exe_name, include_path) 166 .format(caller, c_name)) 168 os.remove(c_name) [all...] |
/third_party/python/Lib/test/ |
H A D | test__osx_support.py | 144 for c_name, c_output in compilers: 145 os_helper.unlink(c_name) 146 self.addCleanup(os_helper.unlink, c_name) 147 with open(c_name, 'w') as f: 149 os.chmod(c_name, stat.S_IRWXU) 222 c_name = 'clang' 223 os_helper.unlink(c_name) 224 self.addCleanup(os_helper.unlink, c_name) 226 with open(c_name, 'w') as f: 228 os.chmod(c_name, sta [all...] |
/third_party/ltp/testcases/kernel/syscalls/getcwd/ |
H A D | getcwd04.c | 86 char c_name[PATH_MAX] = "testfile", n_name[PATH_MAX]; in do_child() local 88 SAFE_TOUCH(c_name, 0644, NULL); in do_child() 92 SAFE_RENAME(c_name, n_name); in do_child() 93 strncpy(c_name, n_name, PATH_MAX); in do_child()
|
/third_party/toybox/toys/pending/ |
H A D | syslogd.c | 78 for (; w->c_name; w++) in logger_lookup() 79 if (!strcasecmp(key, w->c_name)) return w->c_val; in logger_lookup() 87 for (; clist->c_name; clist++) in dec() 88 if (val == clist->c_val) return clist->c_name; in dec()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_fade.c | 198 #define INTERP(c_name, c_idx) av_clip_uint8(((c[c_idx]<<16) + ((int)p[c_name] - (int)c[c_idx]) * s->factor + (1<<15)) >> 16) in filter_rgb() 222 #define INTERPP(c_name, c_idx) av_clip_uint8(((c[c_idx]<<16) + ((int)c_name - (int)c[c_idx]) * s->factor + (1<<15)) >> 16) in filter_rgb_planar()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | syslog.h | 73 char *c_name; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | syslog.h | 73 char *c_name; member
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | syslog.h | 73 char *c_name; member
|
/third_party/musl/include/ |
H A D | syslog.h | 73 char *c_name; member
|
/third_party/toybox/lib/ |
H A D | portability.h | 309 typedef struct {char *c_name; int c_val;} CODE; member
|
/third_party/mesa3d/src/mapi/ |
H A D | mapi_abi.py | 114 c_name = m.group('name') 118 return (c_type, c_name, c_array)
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | gen_disasm.py | 96 bi_disasm_${c_name}(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 348 return disasm_op_template.render(c_name = opname_to_c(name), body = body)
|
/third_party/ffmpeg/libavformat/ |
H A D | rtsp.c | 292 const char *c_name; in sdp_parse_rtpmap() local 319 c_name = desc->name; in sdp_parse_rtpmap() 321 c_name = "(null)"; in sdp_parse_rtpmap() 327 av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name); in sdp_parse_rtpmap() 344 av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name); in sdp_parse_rtpmap()
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 4526 c_name = None 4534 c_name = fields[0] 4535 if c_name.endswith(':'): 4537 c_name = c_name[:-1] 4711 # if you use a c_name for the parameter, we just give that name to the converter 4713 converter = dict[name](c_name or parameter_name, parameter_name, self.function, value, **kwargs) 4754 elif names and parameter_name == names[0] and c_name is None: 4757 key = f"{parameter_name}_as_{c_name}" if c_name els [all...] |