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

  /bionic/libc/string/
strncmp.c 1 /* $OpenBSD: strncmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
39 strncmp(const char *s1, const char *s2, size_t n) function
  /bionic/libc/arch-x86/string/
strncmp.S 1 /* $OpenBSD: strncmp.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
15 ENTRY(strncmp) function
  /external/grub/netboot/
linux-asm-string.h 255 static inline int strncmp(const char * cs,const char * ct,size_t count) function
  /external/chromium/third_party/libjingle/source/talk/base/
stringutils.h 77 // strlen, strcmp, stricmp, strncmp, strnicmp
101 inline int strncmp(const wchar_t* s1, const wchar_t* s2, size_t n) { function
267 return strncmp(s1, s2, n);
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 62 #define strncmp(_s1,_s2,_sz) VG_(strncmp)((_s1),(_s2),(_sz)) macro
  /external/wpa_supplicant/
os.h 436 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
476 #undef strncmp macro
477 #define strncmp OS_DO_NOT_USE_strncmp macro
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os.h 436 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
489 #undef strncmp macro
490 #define strncmp OS_DO_NOT_USE_strncmp macro
  /external/wpa_supplicant_8/src/utils/
os.h 443 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
496 #undef strncmp macro
497 #define strncmp OS_DO_NOT_USE_strncmp macro
  /external/valgrind/main/coregrind/
m_libcbase.c 275 Int VG_(strncmp) ( const Char* s1, const Char* s2, SizeT nmax ) function
320 if (VG_(strncmp)(haystack, needle, n) == 0)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h 920 # define strncmp macro
    [all...]
  /external/clang/test/Analysis/
string.c 791 // strncmp()
794 #define strncmp BUILTIN(strncmp) macro
795 int strncmp(const char *s1, const char *s2, size_t n);
798 if (strncmp("123", "123", 3) != 0)
804 if (strncmp(x, "123", 3) != 0)
810 if (strncmp("123", x, 3) != 0)
817 if (strncmp(x, y, 3) != 0)
824 if (strncmp(x, y, 3) != 1)
831 if (strncmp(x, y, 3) != -1
    [all...]
  /external/pcre/
pcre_internal.h 291 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) macro
    [all...]

Completed in 1024 milliseconds