HomeSort by relevance Sort by last modified time
    Searched refs:strncasecmp (Results 126 - 150 of 400) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/
string.h 58 extern int strncasecmp(const char *, const char *, size_t);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-spu.h 93 if (strncasecmp (input_line_pointer, "@ppu", 4) == 0) \
tc-xgate.c 1059 if (strncasecmp (name, "r0", 2) == 0)
1061 if (strncasecmp (name, "r1", 2) == 0)
1063 if (strncasecmp (name, "r2", 2) == 0)
1065 if (strncasecmp (name, "r3", 2) == 0)
1067 if (strncasecmp (name, "r4", 2) == 0)
1069 if (strncasecmp (name, "r5", 2) == 0)
1071 if (strncasecmp (name, "r6", 2) == 0)
1073 if (strncasecmp (name, "r7", 2) == 0)
1075 if (strncasecmp (name, "pc", 2) == 0)
1077 if (strncasecmp (name, "ccr", 3) == 0
    [all...]
  /external/iptables/extensions/
libxt_HMARK.c 146 if (strncasecmp(type, "ct", len) == 0) {
149 } else if (strncasecmp(type, "src", len) == 0) {
153 } else if (strncasecmp(type, "dst", len) == 0) {
157 } else if (strncasecmp(type, "sport", len) == 0) {
162 } else if (strncasecmp(type, "dport", len) == 0) {
167 } else if (strncasecmp(type, "proto", len) == 0) {
171 } else if (strncasecmp(type, "spi", len) == 0) {
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 260 // strncasecmp
261 EXPECT_EQ(0, strncasecmp("a", "b", 0));
262 EXPECT_EQ(0, strncasecmp("abCD", "ABcd", 10));
263 EXPECT_EQ(0, strncasecmp("abCd", "ABcef", 3));
264 EXPECT_GT(0, strncasecmp("abcde", "ABCfa", 4));
265 EXPECT_GT(0, strncasecmp("a", "B", 5));
266 EXPECT_GT(0, strncasecmp("bc", "BCde", 4));
267 EXPECT_LT(0, strncasecmp("xyz", "xyy", 10));
268 EXPECT_LT(0, strncasecmp("Baa", "aaa", 1));
269 EXPECT_LT(0, strncasecmp("zyx", "", 2))
    [all...]
  /toolchain/binutils/binutils-2.25/cpu/
m32r.opc 120 if (strncasecmp (*strp, "high(", 5) == 0)
137 else if (strncasecmp (*strp, "shigh(", 6) == 0)
176 if (strncasecmp (*strp, "low(", 4) == 0)
191 if (strncasecmp (*strp, "sda(", 4) == 0)
223 if (strncasecmp (*strp, "low(", 4) == 0)
  /toolchain/binutils/binutils-2.25/opcodes/
lm32-asm.c 85 if (strncasecmp (*strp, "hi(", 3) == 0)
117 if (strncasecmp (*strp, "lo(", 3) == 0)
147 if (strncasecmp (*strp, "gp(", 3) == 0)
177 if (strncasecmp (*strp, "got(", 4) == 0)
207 if (strncasecmp (*strp, "gotoffhi16(", 11) == 0)
237 if (strncasecmp (*strp, "gotofflo16(", 11) == 0)
m32r-asm.c 83 if (strncasecmp (*strp, "high(", 5) == 0)
100 else if (strncasecmp (*strp, "shigh(", 6) == 0)
139 if (strncasecmp (*strp, "low(", 4) == 0)
154 if (strncasecmp (*strp, "sda(", 4) == 0)
186 if (strncasecmp (*strp, "low(", 4) == 0)
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 127 extern "C" int strncasecmp(const char *s1, const char *s2, unsigned n);
138 strncasecmp(FOO, BAR, sizeof(FOO)); // \
139 // expected-warning {{'strncasecmp' call operates on objects of type 'const char' while the size is based on a different type 'const char *'}} expected-note{{did you mean to provide an explicit length?}}
warn-memsize-comparison.cpp 10 extern "C" int strncasecmp(const char *s1, const char *s2, size_t n);
49 if (strncasecmp(b1, b2, sizeof(b1) >= 0)) {} // \
50 expected-warning{{size argument in 'strncasecmp' call is a comparison}} \
53 if (strncasecmp(b1, b2, sizeof(b1)) >= 0) {}
  /external/libvncserver/libvncserver/
websockets.c 319 } else if ((strncasecmp("host: ", line, min(llen,6))) == 0) {
323 } else if ((strncasecmp("origin: ", line, min(llen,8))) == 0) {
327 } else if ((strncasecmp("sec-websocket-key1: ", line, min(llen,20))) == 0) {
331 } else if ((strncasecmp("sec-websocket-key2: ", line, min(llen,20))) == 0) {
337 } else if ((strncasecmp("sec-websocket-protocol: ", line, min(llen,24))) == 0) {
341 } else if ((strncasecmp("sec-websocket-origin: ", line, min(llen,22))) == 0) {
344 } else if ((strncasecmp("sec-websocket-key: ", line, min(llen,19))) == 0) {
347 } else if ((strncasecmp("sec-websocket-version: ", line, min(llen,23))) == 0) {
  /external/ImageMagick/MagickWand/tests/
script-token-test.c 72 #define LocaleNCompare(p,q,l) strncasecmp(p,q,l)
  /external/e2fsprogs/lib/e2p/
mntopts.c 68 if (strncasecmp(string, "MNTOPT_", 7))
  /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/xmlrpcpp/src/
XmlRpcServerConnection.cpp 87 if ((ep - cp > 16) && (strncasecmp(cp, "Content-length: ", 16) == 0))
89 else if ((ep - cp > 12) && (strncasecmp(cp, "Connection: ", 12) == 0))
130 if (kp == 0 || strncasecmp(kp, "keep-alive", 10) != 0)
133 if (kp != 0 && strncasecmp(kp, "close", 5) == 0)
  /frameworks/av/media/libstagefright/
DataURISource.cpp 27 if (strncasecmp("data:", uri, 5)) {
  /external/webrtc/webrtc/modules/video_capture/
device_info_impl.cc 53 if(strncasecmp((char*)_lastUsedDeviceName,
85 || (strncasecmp((char*)_lastUsedDeviceName,
133 || (strncasecmp((char*)_lastUsedDeviceName,
  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.cpp 93 if (!strncasecmp(url, "file://", 7)) {
95 } else if (strncasecmp(url, "http://", 7)
96 && strncasecmp(url, "https://", 8)) {
  /toolchain/binutils/binutils-2.25/gas/
atof-generic.c 125 if (!strncasecmp ("nan", first_digit, 3))
138 if (!strncasecmp ("inf", first_digit, 3))
147 if (!strncasecmp ("inity", first_digit, 5))
  /external/valgrind/memcheck/tests/
str_tester.c     [all...]

Completed in 1199 milliseconds

1 2 3 4 56 7 8 91011>>