Searched refs:sub (Results 1 – 10 of 10) sorted by relevance
/busybox-1.35.0/libbb/ |
D | replace.c | 13 unsigned FAST_FUNC count_strstr(const char *str, const char *sub) in count_strstr() argument 15 size_t sub_len = strlen(sub); in count_strstr() 22 while ((str = strstr(str, sub)) != NULL) { in count_strstr() 29 char* FAST_FUNC xmalloc_substitute_string(const char *src, int count, const char *sub, const char *… in xmalloc_substitute_string() argument 32 size_t sub_len = strlen(sub); in xmalloc_substitute_string() 39 while ((end = strstr(src, sub)) != NULL) { in xmalloc_substitute_string()
|
/busybox-1.35.0/shell/ash_test/ash-arith/ |
D | arith.right | 131 ./arith1.sub: line 2: arithmetic syntax error 132 ./arith1.sub: line 3: arithmetic syntax error 133 ./arith1.sub: line 4: arithmetic syntax error 134 ./arith1.sub: line 5: arithmetic syntax error
|
D | arith.tests | 273 ${THIS_SH} ./arith1.sub 274 ${THIS_SH} ./arith2.sub
|
/busybox-1.35.0/scripts/ |
D | checkstack.pl | 56 $dre = qr/^.*sub.*sp, sp, #(0x$x{1,8})/o; 59 $re = qr/.*sub.*sp, sp, #(([0-9]{2}|[3-9])[0-9]{2})/o;
|
/busybox-1.35.0/procps/ |
D | smemcap.c | 83 static void archivejoin(const char *sub, const char *name) in archivejoin() argument 86 sprintf(path, "%s/%s", sub, name); in archivejoin()
|
/busybox-1.35.0/scripts/basic/ |
D | fixdep.c | 272 int strrcmp(char *s, char *sub) in strrcmp() argument 275 int sublen = strlen(sub); in strrcmp() 280 return memcmp(s + slen - sublen, sub, sublen); in strrcmp()
|
/busybox-1.35.0/miscutils/ |
D | dc.c | 65 static void sub(void) in sub() function 213 {"-", sub},
|
D | bc.c | 1742 static FAST_FUNC BC_STATUS zbc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub) in zbc_num_a() argument 1753 if (sub && c->len) c->neg = !c->neg; in zbc_num_a() 1814 static FAST_FUNC BC_STATUS zbc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub) in zbc_num_s() argument 1826 if (sub && c->len) c->neg = !c->neg; in zbc_num_s() 1853 if (sub) neg = !neg; in zbc_num_s()
|
/busybox-1.35.0/shell/hush_test/hush-arith/ |
D | arith.tests | 277 ${THIS_SH} ./arith1.sub 278 ${THIS_SH} ./arith2.sub
|
/busybox-1.35.0/include/ |
D | libbb.h | 920 unsigned count_strstr(const char *str, const char *sub) FAST_FUNC; 921 char *xmalloc_substitute_string(const char *src, int count, const char *sub, const char *repl) FAST…
|