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

  /external/libjpeg-turbo/
tjutil.h 36 #define strncasecmp strnicmp macro
  /external/libvncserver/test/
tjutil.h 36 #define strncasecmp strnicmp macro
  /external/syslinux/com32/lib/
strncasecmp.c 2 * strncasecmp.c
8 int strncasecmp(const char *s1, const char *s2, size_t n) function
  /toolchain/binutils/binutils-2.27/libiberty/
strncasecmp.c 15 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
71 strncasecmp(const char *s1, const char *s2, register size_t n) function
  /bionic/libc/upstream-openbsd/lib/libc/string/
strcasecmp.c 91 strncasecmp(const char *s1, const char *s2, size_t n) function
107 DEF_WEAK(strncasecmp); variable
  /device/google/contexthub/firmware/lib/libc/
strcasecmp.c 90 strncasecmp(const char *s1, const char *s2, size_t n) function
  /external/xmlrpcpp/src/
XmlRpcUtil.h 18 # define strncasecmp _strnicmp macro
21 # define strncasecmp strnicmp macro
  /external/e2fsprogs/intl/
os2compat.h 40 #define strncasecmp strnicmp macro
  /external/libusb/libusb/
strerror.c 32 #define strncasecmp _strnicmp macro
167 if (strncasecmp(usbi_locale_supported[i], locale, 2) == 0)
  /external/python/cpython3/Modules/_decimal/libmpdec/
vccompat.h 44 #undef strncasecmp macro
45 #define strncasecmp _strnicmp macro
  /external/clang/test/Sema/
builtins-gnu-mode.c 14 int strncasecmp; variable
  /external/e2fsprogs/include/nonunix/
config.h 12 #define strncasecmp _strnicmp macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
string.h 104 int __cdecl strncasecmp (const char *, const char *, size_t);
107 __CRT_INLINE int __cdecl strncasecmp (const char *__sz1, const char *__sz2, size_t __sizeMaxCompare) { return _strnicmp (__sz1, __sz2, __sizeMaxCompare); } function
110 #define strncasecmp _strnicmp macro
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 442 int strncasecmp (const char *c, const char *s, size_t l) function
  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 41 #define strncasecmp _strnicmp macro
86 if (p <= e && *keylen <= x[0] && !strncasecmp(key, (char*)x+1, *keylen))
119 if (strncasecmp((regtype + len - 4), "_tcp", 4) && strncasecmp((regtype + len - 4), "_udp", 4)) return kDNSServiceErr_BadParam;
  /external/wpa_supplicant_8/src/utils/
os.h 529 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n))
651 #define strncasecmp OS_DO_NOT_USE_strncasecmp macro
  /hardware/qcom/msm8998/json-c/
json_tokener.c 49 # define strncasecmp _strnicmp macro
51 # error You do not have strncasecmp on your system.
368 strncasecmp(json_inf_str, infbuf, size_inf) == 0) ||
394 strncasecmp(json_null_str, tok->pb->buf, size) == 0)
405 strncasecmp(json_nan_str, tok->pb->buf, size_nan) == 0) ||
640 strncasecmp(json_true_str, tok->pb->buf, size1) == 0)
650 strncasecmp(json_false_str, tok->pb->buf, size2) == 0)
  /external/ImageMagick/MagickCore/
nt-base.h 244 #if !defined(strncasecmp)
245 # define strncasecmp _strnicmp macro
  /external/libxml2/
triostr.c 74 # define strncasecmp(x,y,n) strnicmp(x,y,n) macro
534 return (0 == strncasecmp(first, second, max));
    [all...]
  /external/valgrind/coregrind/
m_libcbase.c 396 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax ) function
439 if (VG_(strncasecmp)(haystack, needle, n) == 0)
  /external/clang/test/Analysis/
string.c 986 // strncasecmp()
989 #define strncasecmp BUILTIN(strncasecmp) macro
990 int strncasecmp(const char *s1, const char *s2, size_t n);
995 clang_analyzer_eval(strncasecmp(x, y, 2) > 0); // expected-warning{{TRUE}}
996 clang_analyzer_eval(strncasecmp(x, y, 2) <= 0); // expected-warning{{FALSE}}
997 clang_analyzer_eval(strncasecmp(x, y, 2) > 1); // expected-warning{{UNKNOWN}}
999 clang_analyzer_eval(strncasecmp(y, x, 2) < 0); // expected-warning{{TRUE}}
1000 clang_analyzer_eval(strncasecmp(y, x, 2) >= 0); // expected-warning{{FALSE}}
1001 clang_analyzer_eval(strncasecmp(y, x, 2) < -1); // expected-warning{{UNKNOWN}
    [all...]
  /external/libvncserver/rfb/
rfbproto.h 90 /* MS compilers don't have strncasecmp */
92 #define strncasecmp _strnicmp macro
    [all...]

Completed in 753 milliseconds