HomeSort by relevance Sort by last modified time
    Searched refs:memcmp (Results 1 - 25 of 846) 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"
  /bootable/bootloader/legacy/libc/
memcmp.c 29 int memcmp(void *_a, void *_b, unsigned len) function
strstr.c 37 if (memcmp(s1, s2, l2) == 0) {
  /system/media/wilhelm/tools/hashgen/
part8.c 6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /system/media/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/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/valgrind/tsan/
ts_valgrind_libc.cc 53 extern "C" int memcmp(const void *a, const void *b, unsigned long c) { function
54 return VG_(memcmp)(a,b,c);
  /external/clang/test/Analysis/
bstring.c 11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
321 // memcmp()
329 #define memcmp bcmp macro
333 #define memcmp BUILTIN(memcmp) macro
334 int memcmp(const void *s1, const void *s2, size_t n);
343 memcmp(a, b, 4); // no-warning
350 memcmp(a, b, 5); // expected-warning{{out-of-bound}}
357 memcmp(a, b, 4); // expected-warning{{out-of-bound}}
363 if (memcmp(a, a, 4)
    [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) {
  /external/wpa_supplicant/tests/
test_md4.c 76 if (memcmp(hash, tests[i].hash, 16) != 0) {
88 if (memcmp(hash, tests[i].hash, 16) != 0) {
test_md5.c 76 if (memcmp(hash, tests[i].hash, 16) != 0) {
88 if (memcmp(hash, tests[i].hash, 16) != 0) {
test_ms_funcs.c 67 if (memcmp(challenge, buf, sizeof(challenge)) != 0) {
73 if (memcmp(password_hash, buf, sizeof(password_hash)) != 0) {
82 if (memcmp(nt_response, buf, sizeof(nt_response)) != 0) {
88 if (memcmp(password_hash_hash, buf, sizeof(password_hash_hash)) != 0) {
97 if (memcmp(authenticator_response, buf, sizeof(authenticator_response))
104 if (memcmp(master_key, buf, sizeof(master_key)) != 0) {
110 if (memcmp(send_start_key, buf, sizeof(send_start_key)) != 0) {
  /external/wpa_supplicant_6/wpa_supplicant/tests/
test_md4.c 76 if (memcmp(hash, tests[i].hash, 16) != 0) {
88 if (memcmp(hash, tests[i].hash, 16) != 0) {
test_md5.c 76 if (memcmp(hash, tests[i].hash, 16) != 0) {
88 if (memcmp(hash, tests[i].hash, 16) != 0) {
test_ms_funcs.c 67 if (memcmp(challenge, buf, sizeof(challenge)) != 0) {
73 if (memcmp(password_hash, buf, sizeof(password_hash)) != 0) {
82 if (memcmp(nt_response, buf, sizeof(nt_response)) != 0) {
88 if (memcmp(password_hash_hash, buf, sizeof(password_hash_hash)) != 0) {
97 if (memcmp(authenticator_response, buf, sizeof(authenticator_response))
104 if (memcmp(master_key, buf, sizeof(master_key)) != 0) {
110 if (memcmp(send_start_key, buf, sizeof(send_start_key)) != 0) {
  /bionic/libc/string/
memcmp.c 30 int memcmp(const void *s1, const void *s2, size_t n) function
  /frameworks/base/media/libstagefright/codecs/aacdec/
aac_mem_funcs.h 46 #define pv_memcmp(p, q, n) memcmp(p, q, n)
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 63 #define pv_memcmp(p, q, n) memcmp(p, q, n)
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 69 #define pv_memcmp(p, q, n) memcmp(p, q, n)
  /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/skia/src/animator/
SkOperandIterpolator.cpp 128 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
132 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
136 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
140 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
144 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
148 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
  /external/chromium/net/base/
x509_cert_types.h 33 return memcmp(data, other.data, sizeof(data)) == 0;
43 return memcmp(lhs.data, rhs.data, sizeof(lhs.data)) < 0;
131 (memcmp(oid1->Data, oid2->Data, oid1->Length) == 0);

Completed in 1928 milliseconds

1 2 3 4 5 6 7 8 91011>>