/external/cmockery/cmockery_0_1_2/src/example/ |
key_value_test.c | 65 KeyValue * const kv = *state; local 68 assert_true(kv[i - 1].key < kv[i].key);
|
/external/libunwind/src/ |
os-freebsd.c | 58 struct kinfo_proc *kv; local 80 for (i = 0, kv = (struct kinfo_proc *)buf; i < len / sizeof(*kv); 81 i++, kv++) { 82 if (kv->ki_tid == tid) { 83 pid = kv->ki_pid; 98 struct kinfo_vmentry *kv; local 132 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) 134 kv = (struct kinfo_vmentry *)(uintptr_t)bp; 135 if (kv->kve_type != KVME_TYPE_VNODE [all...] |
/external/libunwind/tests/ |
crasher.c | 49 struct kinfo_vmentry *kv; local 73 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) { 74 kv = (struct kinfo_vmentry *)(uintptr_t)bp; 75 if (kv->kve_type == KVME_TYPE_VNODE && 76 (kv->kve_protection & KVME_PROT_EXEC) != 0) { 77 fprintf(out, "0x%jx:%s ", kv->kve_start, kv->kve_path);
|
/external/openssl/crypto/srp/ |
srp_lib.c | 182 BIGNUM *kv = NULL, *gb = NULL; local 190 if ( (kv = BN_new()) == NULL || 199 !BN_mod_mul(kv,v,k,N,bn_ctx) || 200 !BN_mod_add(B,gb,kv,N,bn_ctx)) 207 BN_clear_free(kv);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
fldset.cpp | 107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc); local 113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status); 117 const UChar *u = kv[0].getBuffer(); 118 int32_t len = kv[0].length(); 122 delete[] kv; 128 handleParseValue(inheritFrom, field, kv[1], status); 132 const UChar *u = kv[1].getBuffer(); 133 int32_t len = kv[1].length(); 137 delete[] kv; [all...] |
/external/icu/icu4c/source/test/intltest/ |
fldset.cpp | 107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc); local 113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status); 117 const UChar *u = kv[0].getBuffer(); 118 int32_t len = kv[0].length(); 122 delete[] kv; 128 handleParseValue(inheritFrom, field, kv[1], status); 132 const UChar *u = kv[1].getBuffer(); 133 int32_t len = kv[1].length(); 137 delete[] kv; [all...] |