Searched refs:memcmp (Results 201 - 225 of 635) sorted by relevance

1234567891011>>

/external/openssl/ssl/
H A Dd1_enc.c255 if ((memcmp(s->s3->read_sequence,
/external/qemu/android/
H A Dhw-events.c110 if ( !memcmp(name, list->name, namelen) &&
H A Dhw-sensors.c364 if (msglen == 12 && !memcmp(msg, "list-sensors", 12)) {
382 if (msglen == 4 && !memcmp(msg, "wake", 4)) {
390 if (msglen > 10 && !memcmp(msg, "set-delay:", 10)) {
401 if (msglen > 4 && !memcmp(msg, "set:", 4)) {
/external/qemu/block/
H A Dcloop.c48 if(!memcmp(magic_version_2_0,buf,length))
/external/skia/include/core/
H A DSkMetaData.h91 return NULL != ptr && len == byteCount && !memcmp(ptr, data, len);
H A DSkPostConfig.h186 #define sk_memcmp(s, t, n) memcmp(s, t, n)
H A DSkRect.h75 return !memcmp(&a, &b, sizeof(a));
79 return memcmp(&a, &b, sizeof(a));
347 return !memcmp(&a, &b, sizeof(a));
351 return memcmp(&a, &b, sizeof(a));
/external/skia/src/animator/
H A DSkTypedArray.cpp98 (a.fCount == 0 || !memcmp(a.fArray, b.fArray, a.fCount * sizeof(int32_t)));
/external/skia/src/core/
H A DSkPictureFlat.h106 return memcmp(&a->fAllocSize, &b->fAllocSize, a->fAllocSize);
/external/skia/src/gpu/
H A DSkGrFontScaler.cpp62 int cmp = memcmp(fDesc, srcDesc, SkMin32(lenLH, lenRH));
/external/skia/src/utils/
H A DSkOSFile.cpp178 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0;
/external/skia/tests/
H A DMatrixTest.cpp48 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
/external/v8/src/
H A Dpreparse-data.h232 return memcmp(string1->literal_bytes.start(),
/external/webkit/Source/WebCore/platform/graphics/android/
H A DVideoLayerManager.cpp145 if (pInfo && !memcmp(matrix, pInfo->surfaceMatrix, sizeof(pInfo->surfaceMatrix)))
/external/webrtc/src/system_wrappers/test/TestSort/
H A DTestSort.cpp227 if (memcmp(key, keyRef, sizeof(key)) != 0)
/external/chromium/base/
H A Dpickle_unittest.cc54 EXPECT_EQ(memcmp(testdata, outdata, outdatalen), 0);
58 EXPECT_EQ(memcmp(testdata, outdata, outdatalen), 0);
H A Dstring_util_unittest.cc973 EXPECT_EQ(0, memcmp(dst, "abcdefg", 8));
975 EXPECT_EQ(0, memcmp(wdst, L"abcdefg", sizeof(wchar_t) * 8));
1001 EXPECT_EQ(0, memcmp(dst, "abcdefg", 8));
1003 EXPECT_EQ(0, memcmp(wdst, L"abcdefg", sizeof(wchar_t) * 8));
1011 EXPECT_EQ(0, memcmp(dst, "abcdef", 7));
1013 EXPECT_EQ(0, memcmp(wdst, L"abcdef", sizeof(wchar_t) * 7));
1021 EXPECT_EQ(0, memcmp(dst, "ab", 3));
1023 EXPECT_EQ(0, memcmp(wdst, L"ab", sizeof(wchar_t) * 3));
/external/dbus/dbus/
H A Dsd-daemon.c316 memcmp(path, sockaddr.un.sun_path, length+1) == 0;
321 memcmp(path, sockaddr.un.sun_path, length) == 0;
/external/grub/stage2/
H A Dfsys_iso9660.c123 && !memcmp(PRIMDESC->id, ISO_STANDARD_ID, sizeof(PRIMDESC->id)))
347 && !memcmp(name, dirname, pathlen))
/external/qemu/android/utils/
H A Dtimezone.c123 if ( memcmp(buff, ZONEINFO_DIR, sizeof(ZONEINFO_DIR)-1) ) {
366 if ( !memcmp( temp, tzdir, tzdirlen ) && temp[tzdirlen] == '/' ) {
/external/qemu/slirp/
H A Dtftp.c90 if (!memcmp(&spt->client_ip, &tp->ip.ip_src, sizeof(spt->client_ip))) {
320 if (memcmp(&src[k], "octet\0", 6) != 0) {
/external/quake/quake/src/WinQuake/
H A Dnet_wipx.cpp407 if (memcmp(((struct sockaddr_ipx *)addr1)->sa_netnum, ((struct sockaddr_ipx *)addr2)->sa_netnum, 4) != 0)
409 if (memcmp(((struct sockaddr_ipx *)addr1)->sa_nodenum, ((struct sockaddr_ipx *)addr2)->sa_nodenum, 6) != 0)
/external/valgrind/main/drd/
H A Ddrd_cond.c32 #include "pub_tool_libcbase.h" /* VG_(memcmp)() */
393 if (!p && VG_(memcmp)((void*)cond, (void*)DRD_(pthread_cond_initializer),
421 if (!p && VG_(memcmp)((void*)cond, (void*)DRD_(pthread_cond_initializer),
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc297 memcmp(buffer_, kVarintCases_case.bytes, kVarintCases_case.size));
314 memcmp(buffer_, kVarintCases_case.bytes, kVarintCases_case.size));
531 EXPECT_EQ(0, memcmp(buffer_, kFixed32Cases_case.bytes, sizeof(uint32)));
547 EXPECT_EQ(0, memcmp(buffer_, kFixed64Cases_case.bytes, sizeof(uint64)));
586 EXPECT_EQ(0, memcmp(kRawBytes, read_buffer, sizeof(kRawBytes)));
605 EXPECT_EQ(0, memcmp(buffer_, kRawBytes, sizeof(kRawBytes)));
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c975 it = "memcmp";
976 check(memcmp("a", "a", 1) == 0, 1); /* Identity. */
977 check(memcmp("abc", "abc", 3) == 0, 2); /* Multicharacter. */
978 check(memcmp("abcd", "abce", 4) < 0, 3); /* Honestly unequal. */
979 check(memcmp("abce", "abcd", 4) > 0, 4);
980 check(memcmp("alph", "beta", 4) < 0, 5);
981 check(memcmp("a\203", "a\003", 2) > 0, 6);
982 check(memcmp("abce", "abcd", 3) == 0, 7); /* Count limited. */
983 check(memcmp("abc", "def", 0) == 0, 8); /* Zero count. */
1057 check (memcmp (on
[all...]

Completed in 7058 milliseconds

1234567891011>>