Home
last modified time | relevance | path

Searched refs:BITOP (Results 1 – 4 of 4) sorted by relevance

/third_party/ulib/musl/src/string/
A Dstrspn.c3 #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 Dstrcspn.c3 #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 Dstrstr.c30 #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 Dmemmem.c34 #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