/external/openssh/ |
D | md5crypt.c | 57 MD5_CTX ctx, ctx1; in md5_crypt() local 92 MD5_Init(&ctx1); in md5_crypt() 93 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt() 94 MD5_Update(&ctx1, sp, sl); in md5_crypt() 95 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt() 96 MD5_Final(final, &ctx1); in md5_crypt() 122 MD5_Init(&ctx1); in md5_crypt() 124 MD5_Update(&ctx1, pw, strlen(pw)); in md5_crypt() 126 MD5_Update(&ctx1, final, 16); in md5_crypt() 129 MD5_Update(&ctx1, sp, sl); in md5_crypt() [all …]
|
/external/libchrome/crypto/ |
D | secure_hash_unittest.cc | 54 scoped_ptr<crypto::SecureHash> ctx1(crypto::SecureHash::Create( in TEST() local 59 ctx1->Update(input1.data(), input1.size()); in TEST() 60 ctx1->Update(input2.data(), input2.size()); in TEST() 61 ctx1->Update(input3.data(), input3.size()); in TEST() 63 EXPECT_TRUE(ctx1->Serialize(&pickle)); in TEST() 64 ctx1->Update(input4.data(), input4.size()); in TEST() 65 ctx1->Update(input5.data(), input5.size()); in TEST() 67 ctx1->Finish(output1, sizeof(output1)); in TEST()
|
/external/valgrind/memcheck/tests/linux/ |
D | stack_changes.c | 15 mycontext ctx1, ctx2, oldc; variable 57 int c1 = init_context(&ctx1); in main() 60 makecontext(&ctx1, (void (*)()) hello, 1, &ctx2); in main() 61 makecontext(&ctx2, (void (*)()) hello, 1, &ctx1); in main() 63 swapcontext(&oldc, &ctx1); in main()
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
D | SSLSocketFunctionalTest.java | 69 SSLContext ctx1, ctx2; in doTestInteraction() local 71 ctx1 = context; in doTestInteraction() 76 SSLServerSocket ssocket = (SSLServerSocket) ctx1 in doTestInteraction() 103 SSLContext ctx1, ctx2; in _doTestInteraction() local 111 ctx1 = ((k & 1) > 0) ? context : ctx_other; in _doTestInteraction() 114 SSLServerSocket ssocket = (SSLServerSocket) ctx1 in _doTestInteraction()
|
/external/selinux/libsepol/src/ |
D | mls.c | 656 context_struct_t *ctx1 = NULL, *ctx2 = NULL; in sepol_mls_contains() local 657 ctx1 = malloc(sizeof(context_struct_t)); in sepol_mls_contains() 659 if (ctx1 == NULL || ctx2 == NULL) in sepol_mls_contains() 661 context_init(ctx1); in sepol_mls_contains() 664 if (mls_from_string(handle, &policydb->p, mls1, ctx1) < 0) in sepol_mls_contains() 670 *response = mls_range_contains(ctx1->range, ctx2->range); in sepol_mls_contains() 671 context_destroy(ctx1); in sepol_mls_contains() 673 free(ctx1); in sepol_mls_contains() 683 context_destroy(ctx1); in sepol_mls_contains() 685 free(ctx1); in sepol_mls_contains()
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
D | stw_context.c | 97 struct stw_context *ctx1; in DrvShareLists() local 106 ctx1 = stw_lookup_context_locked( dhglrc1 ); in DrvShareLists() 109 if (ctx1 && ctx2 && ctx2->st->share) in DrvShareLists() 110 ret = ctx2->st->share(ctx2->st, ctx1->st); in DrvShareLists()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodemv.c | 351 const int ctx1 = vp9_get_pred_context_single_ref_p2(xd); in read_ref_frames() local 352 const int bit1 = vpx_read(r, fc->single_ref_prob[ctx1][1]); in read_ref_frames() 354 ++counts->single_ref[ctx1][1][bit1]; in read_ref_frames()
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 2426 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 2429 ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked(); in TEST() 2442 v8::Local<v8::Context>::New(isolate, ctx1)->Exit(); in TEST() 2475 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 2478 ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked(); in TEST() 2491 ctx1->Exit(); in TEST() 2522 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 2525 ctx1->Global()->Get(ctx1, v8_str("v")).ToLocalChecked(); in TEST() 2538 ctx1->Exit(); in TEST() 2569 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local [all …]
|