/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/third_party/webrtc/base/ |
atomicops.h | 95 bool PeekFront(T* value_out) { 104 *value_out = data_[popped_count_ % capacity_]; 111 bool PopFront(T* value_out) { 112 if (PeekFront(value_out)) {
|
/external/chromium_org/chrome_elf/ |
chrome_elf_util.cc | 36 base::string16* value_out) { 38 value_out->clear(); 72 *value_out = raw_value; 81 DWORD* value_out) { 83 *value_out = 0; 96 DWORD size = sizeof(*value_out); 99 reinterpret_cast<BYTE*>(value_out), &size); 103 return result == ERROR_SUCCESS && size == sizeof(*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...] |
code-stubs.h | 264 typedef void (*DispatchedCall)(CodeStub* stub, void** value_out); 265 static void Dispatch(Isolate* isolate, uint32_t key, void** value_out, 268 static void GetCodeDispatchCall(CodeStub* stub, void** value_out); [all...] |
/external/chromium_org/chrome/browser/sync_file_system/ |
sync_file_system_service_unittest.cc | 63 SyncStatusCode* status_out, R* value_out, 67 DCHECK(value_out); 70 *value_out = value;
|
/external/chromium_org/sync/syncable/ |
directory.h | 198 sync_pb::DataTypeProgressMarker* value_out) const; 201 std::string* value_out) const;
|
directory.cc | 901 sync_pb::DataTypeProgressMarker* value_out) const { 903 return value_out->CopyFrom( 909 std::string* value_out) const { 912 value_out); [all...] |