/third_party/musl/src/string/ |
D | strspn.c | 3 #define BITOP(a,b,op) \ macro 17 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strspn() 18 for (; *s && BITOP(byteset, *(unsigned char *)s, &); s++); in strspn()
|
D | strstr.c | 30 #define BITOP(a,b,op) \ macro 42 BITOP(byteset, n[l], |=), shift[n[l]] = l+1; in twoway_strstr() 109 if (BITOP(byteset, h[l-1], &)) { in twoway_strstr()
|
D | memmem.c | 34 #define BITOP(a,b,op) \ macro 45 BITOP(byteset, n[i], |=), shift[n[i]] = i+1; in twoway_memmem() 100 if (BITOP(byteset, h[l-1], &)) { in twoway_memmem()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
D | strspn.c | 3 #define BITOP(a,b,op) \ macro 17 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strspn() 18 for (; *s && BITOP(byteset, *(unsigned char *)s, &); s++); in strspn()
|
D | strcspn.c | 3 #define BITOP(a,b,op) \ macro 14 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strcspn() 15 for (; *s && !BITOP(byteset, *(unsigned char *)s, &); s++); in strcspn()
|
D | strstr.c | 30 #define BITOP(a,b,op) \ macro 42 BITOP(byteset, n[l], |=), shift[n[l]] = l+1; in twoway_strstr() 109 if (BITOP(byteset, h[l-1], &)) { in twoway_strstr()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
D | strspn.c | 3 #define BITOP(a,b,op) \ macro 17 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strspn() 18 for (; *s && BITOP(byteset, *(unsigned char *)s, &); s++); in strspn()
|
D | strcspn.c | 3 #define BITOP(a,b,op) \ macro 14 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strcspn() 15 for (; *s && !BITOP(byteset, *(unsigned char *)s, &); s++); in strcspn()
|
D | strstr.c | 30 #define BITOP(a,b,op) \ macro 42 BITOP(byteset, n[l], |=), shift[n[l]] = l+1; in twoway_strstr() 109 if (BITOP(byteset, h[l-1], &)) { in twoway_strstr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
D | strspn.c | 3 #define BITOP(a,b,op) \ macro 17 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strspn() 18 for (; *s && BITOP(byteset, *(unsigned char *)s, &); s++); in strspn()
|
D | strcspn.c | 3 #define BITOP(a,b,op) \ macro 14 for (; *c && BITOP(byteset, *(unsigned char *)c, |=); c++); in strcspn() 15 for (; *s && !BITOP(byteset, *(unsigned char *)s, &); s++); in strcspn()
|
D | strstr.c | 30 #define BITOP(a,b,op) \ macro 42 BITOP(byteset, n[l], |=), shift[n[l]] = l+1; in twoway_strstr() 109 if (BITOP(byteset, h[l-1], &)) { in twoway_strstr()
|