Searched refs:BITOP (Results 1 – 4 of 4) sorted by relevance
| /third_party/ulib/musl/src/string/ |
| A D | strspn.c | 3 #define BITOP(a, b, op) \ macro 18 for (; *c && BITOP(byteset, *(unsigned char*)c, |=); c++) in strspn() 20 for (; *s && BITOP(byteset, *(unsigned char*)s, &); s++) in strspn()
|
| A D | strcspn.c | 3 #define BITOP(a, b, op) \ macro 16 for (; *c && BITOP(byteset, *(unsigned char*)c, |=); c++) in strcspn() 18 for (; *s && !BITOP(byteset, *(unsigned char*)s, &); s++) in strcspn()
|
| A D | strstr.c | 30 #define BITOP(a, b, op) \ macro 41 BITOP(byteset, n[l], |=) in twoway_strstr() 121 if (BITOP(byteset, h[l - 1], &)) { in twoway_strstr()
|
| A D | memmem.c | 34 #define BITOP(a, b, op) \ macro 45 BITOP(byteset, n[i], |=) in twoway_memmem() 111 if (BITOP(byteset, h[l - 1], &)) { in twoway_memmem()
|
Completed in 8 milliseconds