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

  /bionic/libc/upstream-openbsd/lib/libc/string/
strcmp.c 1 /* $OpenBSD: strcmp.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */
41 strcmp(const char *s1, const char *s2) function
48 DEF_STRONG(strcmp); variable
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
strcmp.c 46 strcmp(const char *s1, const char *s2) function
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Comparison.c 34 /** The strcmp function compares the string pointed to by s1 to the string
37 @return The strcmp function returns an integer greater than, equal to, or
41 int strcmp(const char *s1, const char *s2) function
58 return (strcmp(s1, s2));
77 such that if the strcmp function is applied to two transformed strings, it
  /external/linux-kselftest/tools/testing/selftests/vDSO/
vdso_standalone_test_x86.c 24 int strcmp(const char *a, const char *b) function
  /external/pcre/dist2/src/
pcre2_string_utils.c 42 of strings. These are used instead of strcmp() etc because the standard
102 PRIV(strcmp)(PCRE2_SPTR str1, PCRE2_SPTR str2) function
  /external/u-boot/arch/powerpc/lib/
ppcstring.S 47 .globl strcmp
48 strcmp: label
  /bionic/libc/arch-arm64/generic/bionic/
strcmp.S 61 ENTRY(strcmp) function
192 END(strcmp)
  /external/u-boot/arch/sh/include/asm/
string.h 59 static inline int strcmp(const char *__cs, const char *__ct) function
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 68 #define strcmp OnigStrCmp macro
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 167 int strcmp(char *s1, char *s2) { function
  /external/icu/icu4c/source/samples/coll/
coll.cpp 97 if (strcmp(pOpt->name, pArgName) == 0) {
143 int strcmp() function
259 int result = strcmp();
  /external/webrtc/webrtc/base/
stringutils.h 60 // strlen, strcmp, stricmp, strncmp, strnicmp
78 inline int strcmp(const wchar_t* s1, const wchar_t* s2) { function
236 return strcmp(s1, s2);
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 400 INTERCEPT_LIBRARY_FUNCTION(strcmp); variable
  /external/piex/src/binary_parse/
range_checked_byte_ptr.cc 276 int strcmp(const RangeCheckedBytePtr &x, const std::string &y) { function in namespace:piex::binary_parse
  /external/wpa_supplicant_8/src/utils/
os.h 536 #define os_strcmp(s1, s2) strcmp((s1), (s2))
654 #undef strcmp macro
655 #define strcmp OS_DO_NOT_USE_strcmp macro
  /external/u-boot/lib/
string.c 180 * strcmp - Compare two strings
184 int strcmp(const char * cs,const char * ct) function
  /device/linaro/bootloader/edk2/CryptoPkg/Include/
OpenSslSupport.h 205 int strcmp (const char *, const char *);
272 #define strcmp AsciiStrCmp macro
  /external/clang/test/Analysis/
string.c 677 // strcmp()
680 #define strcmp BUILTIN(strcmp) macro
681 int strcmp(const char * s1, const char * s2);
686 clang_analyzer_eval(strcmp(x, y) > 0); // expected-warning{{TRUE}}
687 clang_analyzer_eval(strcmp(x, y) <= 0); // expected-warning{{FALSE}}
688 clang_analyzer_eval(strcmp(x, y) > 1); // expected-warning{{UNKNOWN}}
690 clang_analyzer_eval(strcmp(y, x) < 0); // expected-warning{{TRUE}}
691 clang_analyzer_eval(strcmp(y, x) >= 0); // expected-warning{{FALSE}}
692 clang_analyzer_eval(strcmp(y, x) < -1); // expected-warning{{UNKNOWN}
    [all...]

Completed in 680 milliseconds