| /art/runtime/gc/accounting/ |
| card_table-inl.h | 30 static inline bool byte_cas(byte old_value, byte new_value, byte* address) { 33 return byte_atomic->CompareExchangeWeakRelaxed(old_value, new_value); 46 const uintptr_t new_word = cur_word | (static_cast<uintptr_t>(new_value) << shift_in_bits); 137 byte expected, new_value; local 140 new_value = visitor(expected); 141 } while (expected != new_value && UNLIKELY(!byte_cas(expected, new_value, card_cur))); 142 if (expected != new_value) { 143 modified(card_cur, expected, new_value); 151 byte expected, new_value; local [all...] |
| /art/runtime/mirror/ |
| object.cc | 140 int32_t expected_value, new_value; local 143 new_value = expected_value * 1103515245 + 12345; 145 !seed.CompareExchangeWeakRelaxed(expected_value, new_value)); 194 void Object::CheckFieldAssignmentImpl(MemberOffset field_offset, Object* new_value) { 210 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass())); 229 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass()));
|
| art_field-inl.h | 75 inline void ArtField::Set32(Object* object, uint32_t new_value) { 79 object->SetField32Volatile<kTransactionActive>(GetOffset(), new_value); local 81 object->SetField32<kTransactionActive>(GetOffset(), new_value); local 95 inline void ArtField::Set64(Object* object, uint64_t new_value) { 99 object->SetField64Volatile<kTransactionActive>(GetOffset(), new_value); local 101 object->SetField64<kTransactionActive>(GetOffset(), new_value); local 115 inline void ArtField::SetObj(Object* object, Object* new_value) { 119 object->SetFieldObjectVolatile<kTransactionActive>(GetOffset(), new_value); local 121 object->SetFieldObject<kTransactionActive>(GetOffset(), new_value); local
|
| /bionic/libc/bionic/ |
| pthread_cond.cpp | 131 int new_value = ((old_value - COND_COUNTER_STEP) & COND_COUNTER_MASK) | flags; local 132 if (__bionic_cmpxchg(old_value, new_value, &cond->value) == 0) {
|
| /external/chromium_org/chrome/browser/sync/test/integration/ |
| preferences_helper.cc | 29 bool new_value = !GetPrefs(index)->GetBoolean(pref_name); local 30 GetPrefs(index)->SetBoolean(pref_name, new_value); 32 GetVerifierPrefs()->SetBoolean(pref_name, new_value); 35 void ChangeIntegerPref(int index, const char* pref_name, int new_value) { 36 GetPrefs(index)->SetInteger(pref_name, new_value); 38 GetVerifierPrefs()->SetInteger(pref_name, new_value); 41 void ChangeInt64Pref(int index, const char* pref_name, int64 new_value) { 42 GetPrefs(index)->SetInt64(pref_name, new_value); 44 GetVerifierPrefs()->SetInt64(pref_name, new_value); 47 void ChangeDoublePref(int index, const char* pref_name, double new_value) { [all...] |
| /external/chromium_org/third_party/mesa/src/src/glsl/ |
| ir_clone.cpp | 100 ir_rvalue *new_value = NULL; local 103 new_value = this->value->clone(mem_ctx, ht); 105 return new(mem_ctx) ir_return(new_value);
|
| /external/chromium_org/third_party/skia/src/utils/ |
| SkRTConf.cpp | 272 T new_value = doParse<T>(str, &success); local 274 *value = new_value;
|
| /external/mesa3d/src/glsl/ |
| ir_clone.cpp | 100 ir_rvalue *new_value = NULL; local 103 new_value = this->value->clone(mem_ctx, ht); 105 return new(mem_ctx) ir_return(new_value);
|
| /external/skia/src/utils/ |
| SkRTConf.cpp | 272 T new_value = doParse<T>(str, &success); local 274 *value = new_value;
|
| /external/chromium_org/base/allocator/ |
| allocator_unittest.cc | 183 AtomicType new_value = base::subtle::NoBarrier_AtomicExchange(&value, 1); local 185 EXPECT_EQ(0, new_value); 192 new_value = base::subtle::NoBarrier_AtomicExchange(&value, k_test_val); 194 EXPECT_EQ(k_test_val, new_value); 197 new_value = base::subtle::NoBarrier_AtomicExchange(&value, 5); 199 EXPECT_EQ(k_test_val, new_value); 209 AtomicType new_value = base::subtle::NoBarrier_AtomicIncrement(&value, 1); local 211 EXPECT_EQ(value, new_value);
|
| /external/chromium_org/chrome/browser/prefs/ |
| leveldb_pref_store.cc | 292 scoped_ptr<base::Value> new_value(value); 297 prefs_.SetValue(key, new_value.release()); 378 base::Value* new_value = NULL; local 379 bool contains_value = prefs_.GetValue(key, &new_value); 381 std::string value_string = Serialize(new_value);
|
| /external/chromium_org/content/renderer/browser_plugin/ |
| browser_plugin_bindings.cc | 279 std::string new_value) { 280 bindings->instance()->UpdateDOMAttribute(name(), new_value); local 397 int new_value = IntFromNPVariant(*variant); variable 398 if (bindings->instance()->GetMaxHeightAttribute() != new_value) { 399 UpdateDOMAttribute(bindings, base::IntToString(new_value)); 428 int new_value = IntFromNPVariant(*variant); variable 429 if (bindings->instance()->GetMaxWidthAttribute() != new_value) { 430 UpdateDOMAttribute(bindings, base::IntToString(new_value)); 459 int new_value = IntFromNPVariant(*variant); variable 460 if (bindings->instance()->GetMinHeightAttribute() != new_value) { 490 int new_value = IntFromNPVariant(*variant); variable [all...] |
| /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
| vp9_aq_cyclicrefresh.c | 300 const int new_value = (sum_map >= xmis * ymis / 2); local 303 seg_map[bl_index + y * cm->mi_cols + x] = new_value;
|
| /external/chromium_org/third_party/webrtc/system_wrappers/source/ |
| clock.cc | 53 const LONG new_value = 1; local 56 LONG compare_flag = new_value; 58 const LONG new_value = 1; local 60 &help_timer->_sync_flag, new_value, start_value);
|
| /external/chromium_org/tools/gn/ |
| scope.cc | 235 const Value& new_value = i->second.value; local 238 if (existing_value && new_value != *existing_value) {
|
| /external/libvpx/libvpx/vp9/encoder/ |
| vp9_aq_cyclicrefresh.c | 300 const int new_value = (sum_map >= xmis * ymis / 2); local 303 seg_map[bl_index + y * cm->mi_cols + x] = new_value;
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
| vp9_aq_cyclicrefresh.c | 300 const int new_value = (sum_map >= xmis * ymis / 2); local 303 seg_map[bl_index + y * cm->mi_cols + x] = new_value;
|
| /external/bluetooth/bluedroid/gki/ulinux/ |
| gki_ulinux.c | 141 struct itimerspec new_value; local 142 memset(&new_value, 0, sizeof(new_value)); 143 new_value.it_value.tv_sec = (delay_micros / USEC_PER_SEC); 144 new_value.it_value.tv_nsec = (delay_micros % USEC_PER_SEC) * NSEC_PER_USEC; 145 if (timer_settime(posix_timer, 0, &new_value, NULL) == -1) [all...] |
| /external/chromium_org/chrome/browser/chromeos/display/ |
| display_preferences_unittest.cc | 479 const base::DictionaryValue* new_value = NULL; local 481 EXPECT_TRUE(displays->GetDictionary(key, &new_value)); 484 EXPECT_TRUE(ash::DisplayLayout::ConvertFromValue(*new_value, &stored_layout)); 490 EXPECT_TRUE(displays->GetDictionary(key, &new_value)); 491 EXPECT_TRUE(ash::DisplayLayout::ConvertFromValue(*new_value, &stored_layout));
|
| /external/chromium_org/chrome/browser/extensions/ |
| chrome_app_sorting.cc | 315 base::Value* new_value = new_app_launch_ordinal.IsValid() ? local 322 new_value); 394 base::Value* new_value = new_page_ordinal.IsValid() ? local 401 new_value);
|
| /external/chromium_org/chrome/browser/ui/webui/options/ |
| autofill_options_handler.cc | 241 base::string16 new_value; local 242 if (!list->GetString(index, &new_value)) { 259 new_value, existing_value, country_code, app_locale);
|
| /external/chromium_org/components/autofill/content/renderer/ |
| autofill_agent.cc | 420 base::string16 new_value = suggested_value; local 442 new_value = JoinString(parts, ','); 444 FillFieldWithValue(new_value, input_element);
|
| /external/chromium_org/net/disk_cache/blockfile/ |
| block_files.cc | 133 uint8 new_value = map_block & ~(((1 << size) - 1) << (index % 4)); local 134 int new_type = GetMapBlockType(new_value);
|
| /external/chromium_org/third_party/libwebp/utils/ |
| quant_levels_dec.c | 89 uint16_t new_value; local 91 new_value = top[x] + sum; 92 out[x] = new_value - cur[x]; // vertical sum of 'r' pixels. 93 cur[x] = new_value;
|
| /external/lldb/source/Expression/ |
| DWARFExpression.cpp | 1353 StreamString new_value; local 2681 StreamString new_value; variable [all...] |