HomeSort by relevance Sort by last modified time
    Searched refs:new_value (Results 176 - 200 of 350) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/ceres-solver/internal/ceres/
c_api_test.cc 168 ScopedSetValue(T* variable, T new_value)
170 *variable = 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/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.h 169 const std::string& new_value,
174 const ::google::protobuf::RepeatedPtrField<std::string>& new_value,
  /external/chromium_org/content/browser/dom_storage/
dom_storage_context_impl.h 73 const base::string16& new_value,
143 const base::string16& new_value,
  /external/chromium_org/tools/deep_memory_profiler/tests/
range_dict_tests.py 32 def set(self, new_value):
33 self._value = new_value
  /external/chromium_org/base/nix/
xdg_util_unittest.cc 24 MOCK_METHOD2(SetVar, bool(const char*, const std::string& 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/include/lldb/Target/
ThreadPlanCallFunction.h 71 SetStopOthers (bool new_value);
  /external/lldb/source/Plugins/ABI/MacOSX-arm/
ABIMacOSX_arm.h 45 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
  /external/lldb/source/Plugins/ABI/MacOSX-i386/
ABIMacOSX_i386.h 55 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
  /external/lldb/source/Plugins/ABI/SysV-x86_64/
ABISysV_x86_64.h 49 SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value);
  /external/lldb/tools/driver/
IOChannel.h 126 SetGettingCommand (bool new_value);
  /external/webp/src/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;
  /art/runtime/mirror/
art_field.h 129 void Set32(Object* object, uint32_t new_value) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
132 void Set64(Object* object, uint64_t new_value) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
135 void SetObj(Object* object, Object* new_value) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /art/runtime/
stack.cc 246 bool StackVisitor::SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
272 uint64_t new_vreg_portion = static_cast<uint64_t>(new_value);
280 new_value = static_cast<uintptr_t>((old_reg_val_as_wide & mask) | new_vreg_portion);
284 return SetFPR(reg, new_value);
286 return SetGPR(reg, new_value);
294 *addr = new_value;
298 cur_shadow_frame_->SetVReg(vreg, new_value);
303 bool StackVisitor::SetVRegPair(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
327 uintptr_t new_value_lo = static_cast<uintptr_t>(new_value & 0xFFFFFFFF);
328 uintptr_t new_value_hi = static_cast<uintptr_t>(new_value >> 32)
    [all...]
  /external/chromium_org/content/renderer/dom_storage/
dom_storage_cached_area.cc 110 const base::NullableString16& new_value) {
138 if (new_value.is_null()) {
150 map_->SetItem(key.string(), new_value.string(), &unused);
dom_storage_dispatcher.cc 329 cached_area->ApplyMutation(params.key, params.new_value);
336 params.new_value,
347 params.new_value,
  /external/chromium_org/v8/test/mjsunit/
debug-set-variable-value.js 38 new_value, expected_new_result, fun) {
48 scope.setVariableValue(variable_name, new_value);
84 new_value, expected_new_result, fun) {
91 scope.setVariableValue(variable_name, new_value);
99 function ClosureTestCase(scope_index, old_result, variable_name, new_value,
104 this.new_value_ = new_value;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importlib.py 51 new_value = kwargs[attr]
54 new_value = default
55 setattr(sys, attr, new_value)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importlib.py 51 new_value = kwargs[attr]
54 new_value = default
55 setattr(sys, attr, 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);
  /art/compiler/llvm/
gbc_expander.cc 258 void Expand_ArrayPut(llvm::Value* new_value,
273 llvm::Value* new_value,
284 llvm::Value* new_value,
492 if (llvm::Value* new_value = ExpandIntrinsic(intr_id, *call_inst)) {
493 inst_iter->replaceAllUsesWith(new_value);
1567 llvm::Value* new_value = call_inst.getArgOperand(1); local
1661 llvm::Value* new_value = call_inst.getArgOperand(1); local
1962 llvm::Value* new_value = call_inst.getArgOperand(1); local
    [all...]
  /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/content/browser/indexed_db/leveldb/
leveldb_unittest.cc 108 const std::string new_value("new value");
109 put_value = new_value;
123 EXPECT_EQ(comparator.Compare(got_value, new_value), 0);

Completed in 1654 milliseconds

1 2 3 4 5 6 78 91011>>