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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/string/
memcmp_wrapper.S 33 # define MEMCMP memcmp
38 # include "memcmp.S"
memcmp.S 1 /* $OpenBSD: memcmp.S,v 1.4 2005/08/07 11:30:38 espie Exp $ */
9 ENTRY(memcmp) function
44 END(memcmp)
  /external/compiler-rt/lib/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); }
16 b memcmp
  /external/compiler-rt/SDKs/darwin/usr/include/
string.h 22 int memcmp(const void *, const void *, size_t);
  /external/compiler-rt/SDKs/linux/usr/include/
string.h 22 int memcmp(const void *, const void *, size_t);
  /external/compiler-rt/lib/asan/lit_tests/
memcmp_strict_test.cc 11 int res = memcmp(kFoo, kFubar, strlen(kFubar));
memcmp_test.cc 14 int res = memcmp(a1, a2, 4 + argc); // BOOM
16 // CHECK: {{#0.*memcmp}}
  /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,
  /external/dropbear/libtomcrypt/demos/
multi.c 19 if (len != len2 || memcmp(buf[0], buf[1], len)) {
25 if (len != len2 || memcmp(buf[0], buf[1], len)) {
31 if (len != len2 || memcmp(buf[0], buf[1], len)) {
41 if (len != len2 || memcmp(buf[0], buf[1], len)) {
47 if (len != len2 || memcmp(buf[0], buf[1], len)) {
53 if (len != len2 || memcmp(buf[0], buf[1], len)) {
63 if (len != len2 || memcmp(buf[0], buf[1], len)) {
69 if (len != len2 || memcmp(buf[0], buf[1], len)) {
75 if (len != len2 || memcmp(buf[0], buf[1], len)) {
85 if (len != len2 || memcmp(buf[0], buf[1], len))
    [all...]
  /external/elfutils/tests/
sha1-tst.c 45 if (memcmp (buf, expected1, SHA1_DIGEST_SIZE) != 0)
58 if (memcmp (buf, expected2, SHA1_DIGEST_SIZE) != 0)
72 if (memcmp (buf, expected3, SHA1_DIGEST_SIZE) != 0)
  /external/valgrind/main/memcheck/tests/
memcmptest.stderr.exp 2 at 0x........: memcmp (mc_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)
  /external/clang/test/Analysis/
bstring.c 11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
319 // memcmp()
327 #define memcmp bcmp macro
331 #define memcmp BUILTIN(memcmp) macro
332 int memcmp(const void *s1, const void *s2, size_t n);
341 memcmp(a, b, 4); // no-warning
348 memcmp(a, b, 5); // expected-warning{{out-of-bound}}
355 memcmp(a, b, 4); // expected-warning{{out-of-bound}}
361 clang_analyzer_eval(memcmp(a, a, 4) == 0); // expected-warning{{TRUE}
    [all...]
  /external/chromium/net/http/
des_unittest.cc 29 EXPECT_EQ(0, memcmp(ciphertext, des_ecb_known_ciphertext, 8));
47 EXPECT_EQ(0, memcmp(ciphertext, known_ciphertext, 8));
  /external/tcpdump/
print-cip.c 76 if (memcmp(rfcllc, p, sizeof(rfcllc))==0 && caplen < RFC1483LLC_LEN) {
84 if (memcmp(rfcllc, p, sizeof(rfcllc)) == 0) {
  /bionic/libc/bionic/
memcmp.c 30 int memcmp(const void *s1, const void *s2, size_t n) function
  /external/bison/lib/
signbitd.c 59 return (memcmp (&plus_zero, &arg_mem, SIZEOF_DBL) != 0);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 63 #define pv_memcmp(p, q, n) memcmp(p, q, n)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 69 #define pv_memcmp(p, q, n) memcmp(p, q, n)
  /system/security/keystore/
keyblob_utils.cpp 58 return !memcmp(key_blob, SOFT_KEY_MAGIC, sizeof(SOFT_KEY_MAGIC));
  /external/dropbear/libtomcrypt/testprof/
modes_test.c 45 if (l != 16 || memcmp(iv2, iv, 16)) {
55 if (memcmp(tmp, pt, 64) != 0) {
67 /* note we don't memcmp iv2/iv since cfb_start processes the IV for the first block */
78 if (memcmp(tmp, pt, 64) != 0) {
90 if (l != 16 || memcmp(iv2, iv, 16)) {
100 if (memcmp(tmp, pt, 64) != 0) {
  /external/compiler-rt/lib/asan/tests/
asan_mem_test.cc 212 // Normal memcmp calls.
213 Ident(memcmp(s1, s2, size));
214 Ident(memcmp(s1 + size - 1, s2 + size - 1, 1));
215 Ident(memcmp(s1 - 1, s2 - 1, 0));
217 EXPECT_DEATH(Ident(memcmp)(s1 - 1, s2, 1), LeftOOBReadMessage(1));
218 EXPECT_DEATH(Ident(memcmp)(s1, s2 - 1, 1), LeftOOBReadMessage(1));
219 EXPECT_DEATH(Ident(memcmp)(s1 + size, s2, 1), RightOOBReadMessage(0));
220 EXPECT_DEATH(Ident(memcmp)(s1, s2 + size, 1), RightOOBReadMessage(0));
222 EXPECT_DEATH(Ident(memcmp)(s1 + 1, s2 + 1, size), RightOOBReadMessage(0));
223 EXPECT_DEATH(Ident(memcmp)(s1 + size - 1, s2, 2), RightOOBReadMessage(0))
    [all...]
  /external/skia/legacy/src/animator/
SkOperandIterpolator.cpp 120 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
124 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
128 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
132 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
136 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
140 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
  /external/skia/src/animator/
SkOperandIterpolator.cpp 120 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
124 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
128 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
132 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
136 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
140 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 91011>>