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

  /bionic/libc/upstream-openbsd/lib/libc/string/
strncmp.c 1 /* $OpenBSD: strncmp.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */
35 strncmp(const char *s1, const char *s2, size_t n) function
48 DEF_STRONG(strncmp); variable
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
strncmp.c 39 strncmp(const char *s1, const char *s2, size_t n) function
  /toolchain/binutils/binutils-2.27/libiberty/
strncmp.c 0 /* strncmp -- compare two strings, stop after n bytes.
6 @deftypefn Supplemental int strncmp (const char *@var{s1}, @
20 strncmp(const char *s1, const char *s2, register size_t n) function
  /bionic/libc/arch-x86/generic/string/
strncmp.S 1 /* $OpenBSD: strncmp.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
15 ENTRY(strncmp) function
114 END(strncmp)
  /external/syslinux/com32/lib/
strncmp.c 2 * strncmp.c
7 int strncmp(const char *s1, const char *s2, size_t n) function
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Comparison.c 61 /** The strncmp function compares not more than n characters (characters that
65 @return The strncmp function returns an integer greater than, equal to,
70 int strncmp(const char *s1, const char *s2, size_t n) function
  /external/pcre/dist2/src/
pcre2_string_utils.c 121 PRIV(strncmp)(PCRE2_SPTR str1, PCRE2_SPTR str2, size_t len) function
pcre2_internal.h 185 #define strncmp(s1,s2,m) _strncmp(s1,s2,m) macro
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strncmp.S 67 ENTRY(strncmp) function
217 END(strncmp)
  /external/syslinux/gpxe/src/arch/x86/include/bits/
string.h 216 static inline int strncmp(const char * cs,const char * ct,size_t count) function
  /external/syslinux/gpxe/src/core/
string.c 111 * strncmp - Compare two length-limited strings
116 int strncmp(const char * cs,const char * ct,size_t count) function
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 62 #define strncmp(_s1,_s2,_sz) VG_(strncmp)((_s1),(_s2),(_sz)) macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 149 #define strncmp(s1,s2,nmax) VG_(strncmp) ((s1),(s2),nmax) macro
  /external/webrtc/webrtc/base/
stringutils.h 60 // strlen, strcmp, stricmp, strncmp, strnicmp
84 inline int strncmp(const wchar_t* s1, const wchar_t* s2, size_t n) { function
242 return strncmp(s1, s2, n);
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 406 INTERCEPT_LIBRARY_FUNCTION(strncmp); variable
  /external/wpa_supplicant_8/src/utils/
os.h 539 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
656 #undef strncmp macro
657 #define strncmp OS_DO_NOT_USE_strncmp macro
  /hardware/intel/bootstub/
bootstub.c 117 int strncmp(const char *cs, const char *ct, size_t count) function
135 return !strncmp((char *)magic, (char *)BOOT_MAGIC, sizeof(BOOT_MAGIC)-1);
388 if (!strncmp(src, "capfreq=", 8)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string2.h 920 # define strncmp macro
    [all...]
string.h 1206 #define strncmp macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string2.h 920 # define strncmp macro
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Include/
OpenSslSupport.h 206 int strncmp (const char *, const char *, size_t);
215 int strncmp (const char *, const char *, size_t);
273 #define strncmp(string1,string2,count) (int)(AsciiStrnCmp(string1,string2,(UINTN)(count))) macro
  /external/valgrind/coregrind/
m_libcbase.c 381 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) function
424 if (VG_(strncmp)(haystack, needle, n) == 0)
  /external/clang/test/Analysis/
string.c 786 // strncmp()
789 #define strncmp BUILTIN(strncmp) macro
790 int strncmp(const char *s1, const char *s2, size_t n);
795 clang_analyzer_eval(strncmp(x, y, 2) > 0); // expected-warning{{TRUE}}
796 clang_analyzer_eval(strncmp(x, y, 2) <= 0); // expected-warning{{FALSE}}
797 clang_analyzer_eval(strncmp(x, y, 2) > 1); // expected-warning{{UNKNOWN}}
799 clang_analyzer_eval(strncmp(y, x, 2) < 0); // expected-warning{{TRUE}}
800 clang_analyzer_eval(strncmp(y, x, 2) >= 0); // expected-warning{{FALSE}}
801 clang_analyzer_eval(strncmp(y, x, 2) < -1); // expected-warning{{UNKNOWN}
    [all...]

Completed in 1922 milliseconds