Searched defs:strncmp (Results 1 - 11 of 11) sorted by relevance

/external/grub/netboot/
H A Dlinux-asm-string.h255 static inline int strncmp(const char * cs,const char * ct,size_t count) function
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h62 #define strncmp(_s1,_s2,_sz) VG_(strncmp)((_s1),(_s2),(_sz)) macro
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.h77 // 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/wpa_supplicant/
H A Dos.h436 #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/
H A Dos.h436 #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/hostapd/src/utils/
H A Dos.h443 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
496 #undef strncmp macro
497 #define strncmp OS_DO_NOT_USE_strncmp macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h443 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
496 #undef strncmp macro
497 #define strncmp OS_DO_NOT_USE_strncmp macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h443 #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/
H A Dm_libcbase.c275 Int VG_(strncmp) ( const Char* s1, const Char* s2, SizeT nmax ) function
320 if (VG_(strncmp)(haystack, needle, n) == 0)
/external/clang/test/Analysis/
H A Dstring.c791 // 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(
[all...]
/external/pcre/
H A Dpcre_internal.h291 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) macro

Completed in 268 milliseconds