HomeSort by relevance Sort by last modified time
    Searched refs:memcmp (Results 1 - 25 of 2246) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/libiberty/
bcmp.c 20 extern int memcmp(const void *, const void *, size_t);
25 return memcmp (s1, s2, count);
memcmp.c 0 /* memcmp -- compare two memory regions.
6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, @
23 memcmp (const PTR str1, const PTR str2, size_t count) function
vsnprintf.c 114 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
118 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
122 VERIFY (status==8 && memcmp (buf, "foobar:\0XXXXXX\0", 15) == 0);
126 VERIFY (status==8 && memcmp (buf, "foobar\0XXXXXXX\0", 15) == 0);
130 VERIFY (status==8 && memcmp (buf, "fooba\0XXXXXXXX\0", 15) == 0);
134 VERIFY (status==8 && memcmp (buf, "f\0XXXXXXXXXXXX\0", 15) == 0);
138 VERIFY (status==8 && memcmp (buf, "\0XXXXXXXXXXXXX\0", 15) == 0);
142 VERIFY (status==8 && memcmp (buf, "XXXXXXXXXXXXXX\0", 15) == 0);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
pr12758a.s 4 .dc.a memcmp
  /external/llvm/lib/Fuzzer/test/
MemcmpTest.cpp 12 if (Size >= 8 && memcmp(Data, "01234567", 8) == 0) {
13 if (Size >= 12 && memcmp(Data + 8, "ABCD", 4) == 0) {
14 if (Size >= 14 && memcmp(Data + 12, "XY", 2) == 0) {
15 if (Size >= 17 && memcmp(Data + 14, "KLM", 3) == 0) {
16 if (Size >= 27 && memcmp(Data + 17, "ABCDE-GHIJ", 10) == 0){
RepeatedMemcmp.cpp 14 if (!memcmp(Data + i, Pat, 3))
  /external/ltp/testcases/kernel/syscalls/memcmp/
memcmp01.c 28 * memcmp(3)
90 if (memcmp(p, q, LEN)) {
97 if (!memcmp(p, q, LEN)) {
105 if (!memcmp(p, q, LEN)) {
113 if (!memcmp(p, q, LEN)) {
121 if (!memcmp(p, q, LEN)) {
128 if (memcmp(p, q, LEN)) {
145 if (memcmp(p, q, LEN)) {
152 if (!memcmp(p, q, LEN)) {
160 if (!memcmp(p, q, LEN))
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 60 (std::memcmp(S, Str.data(), N-1) == 0)) {
71 std::memcmp(S, Str.data() + Str.size() + 1 - N, N-1) == 0) {
82 std::memcmp(S, Str.data(), N-1) == 0) {
94 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
95 (N1-1 == Str.size() && std::memcmp(S1, Str.data(), N1-1) == 0))) {
107 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
108 (N1-1 == Str.size() && std::memcmp(S1, Str.data(), N1-1) == 0) ||
109 (N2-1 == Str.size() && std::memcmp(S2, Str.data(), N2-1) == 0))) {
122 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
123 (N1-1 == Str.size() && std::memcmp(S1, Str.data(), N1-1) == 0) |
    [all...]
  /external/compiler-rt/lib/builtins/arm/
aeabi_memcmp.S 1 //===-- aeabi_memcmp.S - EABI memcmp implementation -----------------------===//
12 // void __aeabi_memcmp(void *dest, void *src, size_t n) { memcmp(dest, src, n); }
17 b memcmp
  /external/compiler-rt/test/asan/TestCases/
memcmp_strict_test.cc 11 int res = memcmp(kFoo, kFubar, strlen(kFubar));
memcmp_test.cc 12 int res = memcmp(a1, a2, 4 + argc); // BOOM
14 // CHECK: {{#0.*memcmp}}
  /external/syslinux/com32/lib/
memcmp.c 2 * memcmp.c
7 int memcmp(const void *s1, const void *s2, size_t n) function
  /frameworks/wilhelm/tools/hashgen/
part8.c 6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /frameworks/wilhelm/src/android/
OutputMix_to_android.cpp 35 if (memcmp(SL_IID_EQUALIZER, &om->mEqualizer.mEqDescriptor.type,
40 if (memcmp(SL_IID_BASSBOOST, &om->mBassBoost.mBassBoostDescriptor.type,
45 if (memcmp(SL_IID_PRESETREVERB, &om->mPresetReverb.mPresetReverbDescriptor.type,
50 if (memcmp(SL_IID_ENVIRONMENTALREVERB,
56 if (memcmp(SL_IID_VIRTUALIZER, &om->mVirtualizer.mVirtualizerDescriptor.type,
  /toolchain/binutils/binutils-2.25/gold/testsuite/
script_test_2.cc 61 assert(memcmp(start_data, "\1\2\0\4\0\0\0\010\0\0\0\0\0\0\0", 15) == 0
62 || memcmp(start_data, "\1\0\2\0\0\0\4\0\0\0\0\0\0\0\010", 15) == 0);
67 assert(memcmp(start_fill, "\x12\x34\x56\x78\x12\x34\x56\0", 8) == 0);
  /external/compiler-rt/lib/scudo/
scudo_utils.cpp 68 if (memcmp(reinterpret_cast<char *>(&Info.Ebx), "Genu", 4) == 0 &&
69 memcmp(reinterpret_cast<char *>(&Info.Edx), "ineI", 4) == 0 &&
70 memcmp(reinterpret_cast<char *>(&Info.Ecx), "ntel", 4) == 0) {
73 if (memcmp(reinterpret_cast<char *>(&Info.Ebx), "Auth", 4) == 0 &&
74 memcmp(reinterpret_cast<char *>(&Info.Edx), "enti", 4) == 0 &&
75 memcmp(reinterpret_cast<char *>(&Info.Ecx), "cAMD", 4) == 0) {
  /external/sfntly/cpp/src/test/
memory_io_test.cc 54 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 3, 7), 0);
58 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 3, 17), 0);
65 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 50, 10), 0);
70 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 40, 10), 0);
79 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + kTestBufferLen - 10, 10), 0);
92 EXPECT_EQ(memcmp(os.Get(), &(test_buffer[0]) + 50, kTestBufferLen - 50), 0);
file_io_test.cc 52 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0);
59 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0);
65 EXPECT_EQ(memcmp(&(b1[100]), &(b2[0]), 100), 0);
69 EXPECT_EQ(memcmp(&(b1[300]), &(b2[0]), 100), 0);
76 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), 200), 0);
82 EXPECT_EQ(memcmp(&(b3[0]), &(b2[0]), 200), 0);
114 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0);
121 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0);
123 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 200), 0);
127 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0)
    [all...]
  /external/valgrind/memcheck/tests/
memcmptest.stderr.exp 2 at 0x........: memcmp (vg_replace_strmem.c:...)
memcmptest.c 5 // An issue here is that in glibc memcmp() and bcmp() are aliases. Valgrind
7 // message, even though memcmp() was called. This is hard to avoid.
13 if (memcmp(s1, s2, 8) != 0)
  /hardware/qcom/gps/msm8909/utils/
loc_target.cpp 130 if (!memcmp(buf, QCA1530_DETECT_PRESENT,
136 if (!memcmp(buf, QCA1530_DETECT_PROGRESS,
212 if( !memcmp(baseband, STR_AUTO, LENGTH(STR_AUTO)) )
218 if( !memcmp(baseband, STR_APQ_NO_WGR, LENGTH(STR_APQ_NO_WGR)) ){
224 if( !memcmp(baseband, STR_APQ, LENGTH(STR_APQ)) ){
226 if( !memcmp(rd_id, MPQ8064_ID_1, LENGTH(MPQ8064_ID_1))
233 if( (!memcmp(rd_hw_platform, STR_LIQUID, LENGTH(STR_LIQUID))
235 (!memcmp(rd_hw_platform, STR_SURF, LENGTH(STR_SURF))
237 (!memcmp(rd_hw_platform, STR_MTP, LENGTH(STR_MTP))
243 else if( (!memcmp(rd_id, MSM8930_ID_1, LENGTH(MSM8930_ID_1)
    [all...]
  /bionic/libc/private/
bionic_string_utils.h 28 return memcmp(s1 + (s1_length - s2_length), s2, s2_length) == 0;
  /device/google/contexthub/firmware/lib/libc/
memcmp.c 42 memcmp(const void *s1, const void *s2, size_t n) function
  /external/compiler-rt/test/msan/
memcmp_test.cc 12 int res = memcmp(a1, a2, 4);
  /external/linux-kselftest/tools/testing/selftests/powerpc/stringloops/
Makefile 5 TEST_PROGS := memcmp

Completed in 859 milliseconds

1 2 3 4 5 6 7 8 91011>>