Searched refs:ctx1 (Results 1 – 6 of 6) sorted by relevance
/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/main/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/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/v8/test/cctest/ |
D | test-heap.cc | 1347 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); in TEST() local 1349 ctx1->Enter(); in TEST() 1357 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST() 1368 ctx1->Exit(); in TEST() 1369 ctx1.Dispose(); in TEST() 1384 v8::Persistent<v8::Context> ctx1 = v8::Context::New(); in TEST() local 1386 ctx1->Enter(); in TEST() 1394 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST() 1405 ctx1->Exit(); in TEST() 1406 ctx1.Dispose(); in TEST() [all …]
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2011-02-16 | 42950 ctx1.drawImage(canvas2, x, y). The current implementation supports
|