Home
last modified time | relevance | path

Searched refs:cp (Results 1 – 23 of 23) sorted by relevance

/third_party/ulib/ngunwind/src/
A Dos-linux.h104 while (*cp == ' ' || *cp == '\t') in skip_whitespace()
114 cp = skip_whitespace (cp); in scan_hex()
144 if (!(cp = skip_whitespace (cp))) in scan_dec()
190 while (*cp != ' ' && *cp != '\t' && *cp != '\0') in scan_string()
263 cp = scan_hex (cp, low); in maps_next()
264 cp = scan_char (cp, &dash); in maps_next()
265 cp = scan_hex (cp, high); in maps_next()
267 cp = scan_hex (cp, offset); in maps_next()
268 cp = scan_hex (cp, &major); in maps_next()
270 cp = scan_hex (cp, &minor); in maps_next()
[all …]
/third_party/ulib/ngunwind/src/mi/
A Dstrerror.c33 const char *cp; in unw_strerror() local
37 case UNW_ESUCCESS: cp = "no error"; break; in unw_strerror()
38 case UNW_EUNSPEC: cp = "unspecified (general) error"; break; in unw_strerror()
39 case UNW_ENOMEM: cp = "out of memory"; break; in unw_strerror()
40 case UNW_EBADREG: cp = "bad register number"; break; in unw_strerror()
42 case UNW_ESTOPUNWIND: cp = "stop unwinding"; break; in unw_strerror()
43 case UNW_EINVALIDIP: cp = "invalid IP"; break; in unw_strerror()
44 case UNW_EBADFRAME: cp = "bad frame"; break; in unw_strerror()
47 case UNW_ENOINFO: cp = "no unwind info found"; break; in unw_strerror()
48 default: cp = "invalid error code"; break; in unw_strerror()
[all …]
/third_party/lib/acpica/generate/release/
A Dbuild.sh275 cp -r generate/lint $TEMP_DIR/generate
348 cp -r tests $TEMP_DIR/tests
410 cp documents/aslcompiler.pdf $TEMP_DIR
411 cp libraries/acpibin.exe $TEMP_DIR
412 cp libraries/acpidump.exe $TEMP_DIR
413 cp libraries/acpiexec.exe $TEMP_DIR
414 cp libraries/acpihelp.exe $TEMP_DIR
415 cp libraries/acpinames.exe $TEMP_DIR
416 cp libraries/acpisrc.exe $TEMP_DIR
417 cp libraries/acpixtract.exe $TEMP_DIR
[all …]
A Drelease.sh59 cp $file ../$ARCHIVE_DIR
/third_party/uapp/dash/src/bltin/
A Dprintf.c272 char *cp; in conv_escape_str() local
301 *sp = cp; in conv_escape_str()
396 char *cp, *ep; in getuintmax() local
398 cp = *gargv; in getuintmax()
399 if (cp == NULL) in getuintmax()
404 if (*cp == '\"' || *cp == '\'') in getuintmax()
408 val = sign ? strtoimax(cp, &ep, 0) : strtoumax(cp, &ep, 0); in getuintmax()
418 char *cp, *ep; in getdouble() local
420 cp = *gargv; in getdouble()
421 if (cp == NULL) in getdouble()
[all …]
/third_party/ulib/musl/src/network/
A Dns_parse.c11 unsigned ns_get16(const unsigned char* cp) { in ns_get16() argument
12 return cp[0] << 8 | cp[1]; in ns_get16()
15 unsigned long ns_get32(const unsigned char* cp) { in ns_get32() argument
16 return (unsigned)cp[0] << 24 | cp[1] << 16 | cp[2] << 8 | cp[3]; in ns_get32()
19 void ns_put16(unsigned s, unsigned char* cp) { in ns_put16() argument
20 *cp++ = s >> 8; in ns_put16()
21 *cp++ = s; in ns_put16()
25 *cp++ = l >> 24; in ns_put32()
26 *cp++ = l >> 16; in ns_put32()
27 *cp++ = l >> 8; in ns_put32()
[all …]
/third_party/uapp/dash/src/
A Dmkinit.c194 char *cp; in readfile() local
200 cp = line2 + sizeof(undef) - 1; in readfile()
201 while(*cp && (*cp == ' ' || *cp == '\t')) in readfile()
202 cp++; in readfile()
203 while(*cp && *cp != ' ' && *cp != '\t' && *cp != '\n') in readfile()
204 cp++; in readfile()
205 *cp++ = '\n'; *cp = '\0'; in readfile()
A Deval.c428 union node *cp; in evalcase() local
441 for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) { in evalcase()
448 if (evalskip == 0 && cp->nclist.body) { in evalcase()
449 status = evaltree(cp->nclist.body, in evalcase()
668 char *cp, c; in parse_command_args() local
671 cp = *++argv; in parse_command_args()
672 if (!cp) in parse_command_args()
674 if (*cp++ != '-') in parse_command_args()
676 if (!(c = *cp++)) in parse_command_args()
678 if (c == '-' && !*cp) { in parse_command_args()
[all …]
A Dmachdep.h42 #define SHELL_SIZE (sizeof(union {int i; char *cp; double d; }) - 1)
A Dbuiltins.def44 zxc_mv_or_cp -w cp mv
A Dexpand.c1302 const char *cp; in expmeta() local
1365 cp = "."; in expmeta()
1367 cp = "/"; in expmeta()
1369 cp = expdir; in expmeta()
1372 if ((dirp = opendir(cp)) == NULL) in expmeta()
1397 for (p = enddir, cp = dp->d_name; in expmeta()
1398 (*p++ = *cp++) != '\0';) in expmeta()
A Dparser.c294 union node *cp, **cpp; in command() local
411 *cpp = cp = (union node *)stalloc(sizeof (struct nclist)); in command()
412 cp->type = NCLIST; in command()
413 app = &cp->nclist.pattern; in command()
427 cp->nclist.body = list(2); in command()
429 cpp = &cp->nclist.next; in command()
A Dbuiltins.def.in94 zxc_mv_or_cp -w cp mv
/third_party/ulib/musl/include/arpa/
A Dnameser.h301 #define NS_GET16(s, cp) (void)((s) = ns_get16(((cp) += 2) - 2)) argument
302 #define NS_GET32(l, cp) (void)((l) = ns_get32(((cp) += 4) - 4)) argument
303 #define NS_PUT16(s, cp) ns_put16((s), ((cp) += 2) - 2) argument
304 #define NS_PUT32(l, cp) ns_put32((l), ((cp) += 4) - 4) argument
/third_party/ulib/lz4/
A DMakefile.lz497 @cp -a liblz4.$(SHARED_EXT_MAJOR) $(DESTDIR)$(LIBDIR)
98 @cp -a liblz4.$(SHARED_EXT) $(DESTDIR)$(LIBDIR)
99 @cp -a liblz4.pc $(DESTDIR)$(LIBDIR)/pkgconfig/
/third_party/uapp/fsck-msdosfs/
A Ddir.c157 char *cp, *np; in fullpath() local
160 cp = namebuf + sizeof namebuf - 1; in fullpath()
161 *cp = '\0'; in fullpath()
165 if ((cp -= nl) <= namebuf + 1) in fullpath()
167 memcpy(cp, np, nl); in fullpath()
168 *--cp = '/'; in fullpath()
171 *--cp = '?'; in fullpath()
173 cp++; in fullpath()
174 return cp; in fullpath()
/third_party/lib/acpica/generate/unix/
A DMakefile.config71 INSTALL = cp
96 cp -f $(PROG) ../$(BINDIR); \
/third_party/ulib/musl/third_party/math/
A Dpow.c93 cp = 9.61796693925975554329e-01, /* 0x3FEEC709, 0xDC3A03FD =2/(3ln2) */ variable
279 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in pow()
A Dpowf.c49 cp = 9.6179670095e-01, /* 0x3f76384f =2/(3ln2) */ variable
206 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in powf()
/third_party/ulib/backtrace/
A Dinstall-sh65 cpprog=${CPPROG-cp}
/third_party/tools/android/avb/
A Davbtool2196 for cp in expected_chain_partitions:
2197 cp_tokens = cp.split(':')
2199 raise AvbError('Malformed chained partition "{}".'.format(cp))
2655 for cp in chain_partitions:
2656 cp_tokens = cp.split(':')
2658 raise AvbError('Malformed chained partition "{}".'.format(cp))
/third_party/dev/ethernet/e1000/
A DREADME90 cp *.[ch] /usr/src/sys/dev/em
/third_party/ulib/jemalloc/
A Dconfigure.ac1400 cp ${srcroot}VERSION ${objroot}VERSION
1940 cp /dev/null "${f}"

Completed in 37 milliseconds