Home
last modified time | relevance | path

Searched refs:DETECTNULL (Results 1 – 7 of 7) sorted by relevance

/optee_os-3.20.0/lib/libutils/isoc/newlib/
A Dstrchr.c79 #define DETECTNULL(X) (((X) - 0x01010101L) & ~(X) & 0x80808080UL) macro
83 #define DETECTNULL(X) (((X) - 0x0101010101010101L) & ~(X) & \ macro
92 #define DETECTCHAR(X,MASK) (DETECTNULL(X ^ MASK))
117 while (!DETECTNULL (*aligned_addr))
141 while (!DETECTNULL (*aligned_addr) && !DETECTCHAR (*aligned_addr, mask))
A Dstrlen.c76 #define DETECTNULL(X) (((X) - 0x01010101L) & ~(X) & 0x80808080UL) macro
80 #define DETECTNULL(X) (((X) - 0x0101010101010101L) & ~(X) & \ macro
87 #ifndef DETECTNULL
108 while (!DETECTNULL(*aligned_addr))
A Dstrcpy.c79 #define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080) macro
83 #define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080) macro
89 #ifndef DETECTNULL
119 while (!DETECTNULL(*aligned_src))
A Dstrcmp.c82 #define DETECTNULL(X) (((X) - 0x01010101L) & ~(X) & 0x80808080UL) macro
85 #define DETECTNULL(X) (((X) - 0x0101010101010101L) & ~(X) & \ macro
92 #ifndef DETECTNULL
121 if (DETECTNULL(*a1))
A Dstrncmp.c81 #define DETECTNULL(X) (((X) - 0x01010101L) & ~(X) & 0x80808080UL) macro
84 #define DETECTNULL(X) (((X) - 0x0101010101010101L) & ~(X) & \ macro
91 #ifndef DETECTNULL
133 if (n == 0 || DETECTNULL (*a1))
A Dstrncpy.c85 #define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080) macro
89 #define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080) macro
95 #ifndef DETECTNULL
137 while (count >= sizeof (long int) && !DETECTNULL(*aligned_src))
A Dmemchr.c85 #define DETECTNULL(X) (((X) - 0x01010101L) & ~(X) & 0x80808080UL) macro
89 #define DETECTNULL(X) (((X) - 0x0101010101010101L) & ~(X) & \ macro
96 #ifndef DETECTNULL
102 #define DETECTCHAR(X, MASK) (DETECTNULL(X ^ MASK))

Completed in 5 milliseconds