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

  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/v8/src/
code-stubs.cc 212 void CodeStub::Dispatch(Isolate* isolate, uint32_t key, void** value_out,
219 call(pstub, value_out); \
227 *value_out = NULL;
234 void** value_out) {
236 reinterpret_cast<CodeStubDescriptor*>(value_out);
244 void** value_out = reinterpret_cast<void**>(desc); local
245 Dispatch(isolate, key, value_out, &InitializeDescriptorDispatchedCall);
249 void CodeStub::GetCodeDispatchCall(CodeStub* stub, void** value_out) {
250 Handle<Code>* code_out = reinterpret_cast<Handle<Code>*>(value_out);
259 void** value_out = reinterpret_cast<void**>(&code) local
    [all...]

Completed in 284 milliseconds