HomeSort by relevance Sort by last modified time
    Searched defs:bcmp (Results 1 - 10 of 10) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xfuncs.h 42 int bcmp();
48 #define bcmp(b1,b2,len) memcmp(b1, b2, len) macro
58 #define bcmp(b1,b2,len) memcmp(b1, b2, (size_t)(len)) macro
84 #define memcmp(b1,b2,len) bcmp((char *)(b1),(char *)(b2),(int)(len))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xfuncs.h 42 int bcmp();
48 #define bcmp(b1,b2,len) memcmp(b1, b2, len) macro
58 #define bcmp(b1,b2,len) memcmp(b1, b2, (size_t)(len)) macro
84 #define memcmp(b1,b2,len) bcmp((char *)(b1),(char *)(b2),(int)(len))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xfuncs.h 42 int bcmp();
48 #define bcmp(b1,b2,len) memcmp(b1, b2, len) macro
58 #define bcmp(b1,b2,len) memcmp(b1, b2, (size_t)(len)) macro
84 #define memcmp(b1,b2,len) bcmp((char *)(b1),(char *)(b2),(int)(len))
  /external/clang/test/Analysis/
bstring.c 11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
324 #define bcmp BUILTIN(bcmp) macro
326 int bcmp(/*const*/ void *s1, /*const*/ void *s2, size_t n);
327 #define memcmp bcmp
  /ndk/sources/host-tools/make-3.81/
make.h 250 # ifndef bcmp
251 # define bcmp(s1, s2, n) memcmp ((s1), (s2), (n)) macro
267 # ifndef bcmp
268 extern int bcmp PARAMS ((const char *, const char *, int));