/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)
|
/art/runtime/ |
atomic.h | 134 // Atomically compare the value at "addr" to "old_value", if equal replace it with "new_value" 141 static bool Cas64(int64_t old_value, int64_t new_value, volatile int64_t* addr) { 143 return __sync_bool_compare_and_swap(addr, old_value, new_value); 145 return SwapMutexCas64(old_value, new_value, addr); 178 static bool SwapMutexCas64(int64_t old_value, int64_t new_value, volatile int64_t* addr);
|
signal_catcher.cc | 92 void SignalCatcher::SetHaltFlag(bool new_value) { 94 halt_ = new_value;
|
/external/gemmlowp/internal/ |
multi_thread_gemm.h | 96 T new_value = *var; local 97 if (new_value != initial_value) { 98 return new_value; 103 new_value = *var; 104 if (new_value != initial_value) { 105 return new_value; 110 new_value = *var; 111 if (new_value == initial_value) { 113 new_value = *var; 114 assert(new_value != initial_value) [all...] |
/system/connectivity/shill/net/ |
netlink_attribute.h | 78 virtual bool SetU8Value(uint8_t new_value); 154 virtual bool SetU8Value(uint8_t new_value); 172 virtual bool SetU16Value(uint16_t new_value); 191 virtual bool SetU32Value(uint32_t new_value); 209 virtual bool SetU64Value(uint64_t new_value); 227 virtual bool SetFlagValue(bool new_value); 246 virtual bool SetStringValue(const std::string new_value);
|
/external/libunwind_llvm/src/ |
Unwind-sjlj.c | 370 uintptr_t new_value) { 372 , context, index, new_value); 374 ufc->resumeParameters[index] = new_value; 402 uintptr_t new_value) { 404 context, new_value); 406 ufc->resumeLocation = new_value - 1;
|
/external/regex-re2/util/ |
sparse_array.h | 163 pair<iterator, bool> insert(const value_type& new_value); 322 const value_type& new_value) { 325 if (has_index(new_value.index_)) { 326 p = make_pair(dense_.begin() + sparse_to_dense_[new_value.index_], false); 328 p = make_pair(set_new(new_value.index_, new_value.second), true);
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
Unwind-sjlj.c | 370 uintptr_t new_value) { 372 , context, index, new_value); 374 ufc->resumeParameters[index] = new_value; 402 uintptr_t new_value) { 404 context, new_value); 406 ufc->resumeLocation = new_value - 1;
|
/art/runtime/mirror/ |
string.cc | 91 uint16_t* new_value = new_string->GetValue(); local 92 memcpy(new_value, string->GetValue(), length * sizeof(uint16_t)); 93 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t));
|
/external/autotest/client/virt/ |
virt_test_setup.py | 164 new_value = random.random() 165 action_list.append((str(int(value * new_value)),0)) 166 action_list.append((str(int(value * ( new_value + 1))),0))
|
/external/libbrillo/brillo/dbus/ |
exported_property_set.h | 173 void SetValue(const T& new_value) { 174 if (value_ != new_value) { 175 value_ = new_value;
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/ |
nada.cc | 144 int64_t NadaBweReceiver::ExponentialSmoothingFilter(int64_t new_value, 148 return new_value; // Handling initial case. 150 return static_cast<int64_t>(alpha * new_value +
|
nada.h | 44 static int64_t ExponentialSmoothingFilter(int64_t new_value,
|
/system/update_engine/update_manager/ |
generic_variables.h | 181 void SetValue(const T& new_value) { 182 bool should_notify = !(has_value_ && new_value == value_); 183 value_ = new_value;
|
real_updater_provider.cc | 402 UpdateRequestStatus new_value = UpdateRequestStatus::kNone; local 404 new_value = (is_interactive ? UpdateRequestStatus::kInteractive : 406 if (update_request_status_ != new_value) { 407 update_request_status_ = new_value;
|
/bionic/libc/bionic/ |
semaphore.cpp | 191 unsigned int new_value; local 205 new_value = SEMCOUNT_ONE | shared; 207 new_value = SEMCOUNT_INCREMENT(old_value) | shared; 210 new_value));
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
acceptparse.py | 104 new_value = my_value 106 new_value = other 108 new_value = my_value + ', ' + other 109 return self.__class__(new_value)
|
/external/libchrome/base/ |
environment.h | 43 const std::string& new_value) = 0;
|
/external/llvm/unittests/IR/ |
ValueHandleTest.cpp | 278 void allUsesReplacedWith(Value *new_value) override { 280 AURWArgument = new_value; 311 void allUsesReplacedWith(Value *new_value) override { 315 AURWArgument = 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;
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
ls.py | 292 new_value = previous_value.replace('\n', '\n\t ') 294 if not new_value.startswith('\n'): 295 new_value = '\n\t ' + new_value 296 fields[key] = new_value
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/ |
zone.py | 122 def update_record(self, old_record, new_value, new_ttl=None, 137 new_value, new_ttl, new_identifier, comment) 323 new_value=value, 340 new_value=value, 358 new_value=value,
|
/art/runtime/lambda/ |
box_table.cc | 235 mirror::Object* new_value = visitor->IsMarked(old_value_raw); local 237 if (new_value == nullptr) { 250 key_value_pair.second = ValueType(new_value);
|
/external/autotest/client/common_lib/ |
global_config.py | 216 def override_config_value(self, section, key, new_value): 221 @param new_value: new value. 224 self.config.set(section, key, 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);
|