/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/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/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/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/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 | 299 const int ctx1 = vp9_get_pred_context_single_ref_p2(xd); in read_ref_frames() local 300 const int bit1 = vp9_read(r, fc->single_ref_prob[ctx1][1]); in read_ref_frames() 302 ++counts->single_ref[ctx1][1][bit1]; in read_ref_frames()
|
/external/v8/test/cctest/ |
D | test-heap.cc | 1807 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 1809 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST() 1820 v8::Local<v8::Context>::New(isolate, ctx1)->Exit(); in TEST() 1853 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 1855 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST() 1866 ctx1->Exit(); in TEST() 1897 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local 1899 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST() 1910 ctx1->Exit(); in TEST() 1941 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local [all …]
|
D | test-api.cc | 15610 v8::Local<v8::Context> ctx1 = v8::Context::New(isolate); in TEST() local 15612 ctx1->Enter(); in TEST() 15617 v8::Local<v8::Value> foo = ctx1->Global()->Get(v8_str("foo")); in TEST() 15629 CHECK(ctx1->Global()->ForceDelete(G_property)); in TEST() 15641 ctx1->Exit(); in TEST()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 188 public static native boolean EC_GROUP_cmp(NativeRef.EC_GROUP ctx1, NativeRef.EC_GROUP ctx2); in EC_GROUP_cmp() argument
|