HomeSort by relevance Sort by last modified time
    Searched defs:value_out (Results 1 - 3 of 3) sorted by null

  /external/vboot_reference/tests/tpm_lite/
tpmtest_earlyextend.c 18 uint8_t value_out[20]; local
23 TPM_CHECK(TlclExtend(1, value_in, value_out));
  /external/mesa3d/src/gallium/tests/unit/
u_cache_test.c 75 cache_test_value *value_out; local
90 value_out = (cache_test_value *) util_cache_get(cache, key);
91 assert(value_out == NULL);
106 value_out = util_cache_get(cache, key);
107 assert(value_out != NULL);
108 assert(value_in == value_out);
109 assert(*value_in == *value_out);
  /external/v8/src/
code-stubs.cc 229 void CodeStub::Dispatch(Isolate* isolate, uint32_t key, void** value_out,
236 call(pstub, value_out); \
250 void** value_out) {
252 reinterpret_cast<CodeStubDescriptor*>(value_out);
260 void** value_out = reinterpret_cast<void**>(desc); local
261 Dispatch(isolate, key, value_out, &InitializeDescriptorDispatchedCall);
265 void CodeStub::GetCodeDispatchCall(CodeStub* stub, void** value_out) {
266 Handle<Code>* code_out = reinterpret_cast<Handle<Code>*>(value_out);
275 void** value_out = reinterpret_cast<void**>(&code); local
276 Dispatch(isolate, key, value_out, &GetCodeDispatchCall)
    [all...]

Completed in 101 milliseconds