HomeSort by relevance Sort by last modified time
    Searched refs:compare_value (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
atomic32_win.cc 51 bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) {
55 compare_value);
58 return (old_value == compare_value);
atomic32_mac.cc 45 bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) {
46 return OSAtomicCompareAndSwap32Barrier(compare_value, new_value, &value_);
atomic32_posix.cc 49 bool Atomic32::CompareExchange(int32_t new_value, int32_t compare_value) {
50 return __sync_bool_compare_and_swap(&value_, compare_value, new_value);
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
atomic32.h 43 bool CompareExchange(int32_t new_value, int32_t compare_value);
  /external/lldb/examples/scripting/
dictionary.c 57 int compare_value = strcmp (word, root->word); local
59 if (compare_value == 0)
62 if (compare_value < 0)
129 int compare_value = strcmp (word, dictionary->word); local
131 if (compare_value == 0)
133 else if (compare_value < 0)
  /external/chromium_org/v8/test/cctest/
test-declarative-accessors.cc 195 T compare_value,
209 static_cast<uint8_t>(compare_value));
215 static_cast<uint16_t>(compare_value));
221 static_cast<uint32_t>(compare_value));
230 array->As<T*>()[index] = compare_value;
232 helper->array_->As<T*>()[index] = compare_value & bitmask;
  /external/chromium_org/v8/src/
small-pointer-list.h 51 list()->Sort(compare_value);
145 static int compare_value(T* const* a, T* const* b) { function in class:v8::internal::SmallPointerList
api.cc     [all...]
objects.cc 239 uint32_t compare_value = descriptor.compare_value; local
244 compare_value &= 0xff;
249 compare_value &= 0xffff;
260 (bitmask & value) == (bitmask & compare_value));
267 uintptr_t compare_value = local
268 reinterpret_cast<uintptr_t>(descriptor.compare_value);
270 return isolate->factory()->ToBoolean(compare_value == value);
    [all...]
objects.h 10599 uint32_t compare_value; member in struct:v8::internal::ConstantPoolArray::String::FlatContent::BitmaskCompareDescriptor
10605 void* compare_value; member in struct:v8::internal::ConstantPoolArray::String::FlatContent::PointerCompareDescriptor
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 176 milliseconds