Home
last modified time | relevance | path

Searched refs:ctx1 (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/crypto/
Dsecure_hash_unittest.cc50 scoped_ptr<crypto::SecureHash> ctx1(crypto::SecureHash::Create( in TEST() local
55 ctx1->Update(input1.data(), input1.size()); in TEST()
56 ctx1->Update(input2.data(), input2.size()); in TEST()
57 ctx1->Update(input3.data(), input3.size()); in TEST()
59 EXPECT_TRUE(ctx1->Serialize(&pickle)); in TEST()
60 ctx1->Update(input4.data(), input4.size()); in TEST()
61 ctx1->Update(input5.data(), input5.size()); in TEST()
63 ctx1->Finish(output1, sizeof(output1)); in TEST()
/external/valgrind/main/memcheck/tests/linux/
Dstack_changes.c15 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/
DSSLSocketFunctionalTest.java69 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/
Dmls.c656 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/
Dstw_context.c97 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
Dstw_context.c97 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/
Dvp9_decodemv.c300 const int ctx1 = vp9_get_pred_context_single_ref_p2(xd); in read_ref_frames() local
301 const int bit1 = vp9_read(r, fc->single_ref_prob[ctx1][1]); in read_ref_frames()
303 ++counts->single_ref[ctx1][1][bit1]; in read_ref_frames()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
Dvp9_decodemv.c299 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/chromium_org/v8/test/cctest/
Dtest-heap.cc1788 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local
1790 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST()
1801 v8::Local<v8::Context>::New(isolate, ctx1)->Exit(); in TEST()
1834 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local
1836 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST()
1847 ctx1->Exit(); in TEST()
1878 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local
1880 v8::Local<v8::Value> v = ctx1->Global()->Get(v8_str("v")); in TEST()
1891 ctx1->Exit(); in TEST()
1922 v8::Local<v8::Context> ctx1 = v8::Local<v8::Context>::New(isolate, ctx1p); in TEST() local
[all …]
Dtest-api.cc15593 v8::Local<v8::Context> ctx1 = v8::Context::New(isolate); in TEST() local
15595 ctx1->Enter(); in TEST()
15600 v8::Local<v8::Value> foo = ctx1->Global()->Get(v8_str("foo")); in TEST()
15612 CHECK(ctx1->Global()->ForceDelete(G_property)); in TEST()
15624 ctx1->Exit(); in TEST()
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java231 public static native boolean EC_GROUP_cmp(long ctx1, long ctx2); in EC_GROUP_cmp() argument