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

/fuchsia/zircon/third_party/ulib/musl/src/string/
H A Dstrcspn.c3 #define BITOP(a, b, op) \ macro
16 for (; *c && BITOP(byteset, *(unsigned char*)c, |=); c++)
18 for (; *s && !BITOP(byteset, *(unsigned char*)s, &); s++)
H A Dstrspn.c3 #define BITOP(a, b, op) \ macro
18 for (; *c && BITOP(byteset, *(unsigned char*)c, |=); c++)
20 for (; *s && BITOP(byteset, *(unsigned char*)s, &); s++)
H A Dmemmem.c34 #define BITOP(a, b, op) \ macro
45 BITOP(byteset, n[i], |=)
111 if (BITOP(byteset, h[l - 1], &)) {
H A Dstrstr.c30 #define BITOP(a, b, op) \ macro
41 BITOP(byteset, n[l], |=)
121 if (BITOP(byteset, h[l - 1], &)) {

Completed in 86 milliseconds