HomeSort by relevance Sort by last modified time
    Searched refs:value_out (Results 1 - 8 of 8) 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/third_party/libjingle/source/talk/base/
atomicops.h 112 bool PeekFront(T* value_out) {
121 *value_out = data_[popped_count_ % capacity_];
128 bool PopFront(T* value_out) {
129 if (PeekFront(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/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc 61 SyncStatusCode* status_out, R* value_out,
65 DCHECK(value_out);
68 *value_out = value;
  /external/chromium_org/sync/syncable/
directory.h 194 sync_pb::DataTypeProgressMarker* value_out) const;
197 std::string* value_out) const;
directory.cc 882 sync_pb::DataTypeProgressMarker* value_out) const {
884 return value_out->CopyFrom(
890 std::string* value_out) const {
893 value_out);
    [all...]

Completed in 773 milliseconds