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

1 2 3 4 5 6 78 91011>>

  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.c 37 // - new_value : New additional value.
43 static void MeanEstimatorFloat(float new_value,
47 *mean_value += (new_value - *mean_value) * scale;
delay_estimator.h 241 // - new_value : The new value the mean should be updated with.
247 void WebRtc_MeanEstimatorFix(int32_t new_value,
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
metric_recorder.cc 206 void MetricRecorder::UpdateEstimateError(int64_t new_value) {
207 int64_t lp_value = pow(static_cast<double>(std::abs(new_value)), kP);
208 if (new_value < 0) {
  /system/update_engine/
omaha_request_action.h 216 // preference file. If the |new_value| is empty, the currently stored value
217 // will be deleted. Don't call this function with an empty |new_value| if the
220 const std::string& new_value);
  /art/runtime/
leb128_test.cc 260 uint32_t new_value = uleb128_tests[j].decoded; local
262 if (new_value <= old_value) {
265 UpdateUnsignedLeb128(encoded_data, new_value);
267 EXPECT_EQ(DecodeUnsignedLeb128(&new_end), new_value); local
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_window.py 164 new_value = min(value + self.SCROLL_STEP, adj.upper - adj.page_size)
165 return new_value
170 new_value = max(value - self.SCROLL_STEP, adj.lower)
171 return new_value
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.replace/
replace_copy.pass.cpp 18 // const T& new_value);
replace_copy_if.pass.cpp 18 // replace_copy_if(InIter first, InIter last, OutIter result, Pred pred, const T& new_value);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.replace/
replace_copy.pass.cpp 18 // const T& new_value);
replace_copy_if.pass.cpp 18 // replace_copy_if(InIter first, InIter last, OutIter result, Pred pred, const T& new_value);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
syncstr.h 172 CARD64 /* new_value */
  /system/connectivity/shill/
fake_store.h 96 const std::string& group, const std::string& key, const T& new_value);
  /art/runtime/base/
stl_util.h 136 void ReplaceElement(Container& container, const T& old_value, const T& new_value) {
139 *it = new_value;
  /bionic/linker/
dlfcn.cpp 35 static const char* __bionic_set_dlerror(char* new_value) {
39 *dlerror_slot = new_value;
  /external/ceres-solver/internal/ceres/
c_api_test.cc 168 ScopedSetValue(T* variable, T new_value)
170 *variable = new_value;
  /external/skia/src/utils/
SkRTConf.cpp 274 T new_value = doParse<T>(str, &success); local
276 *value = new_value;
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 308 /// objc_storeStrong(i8** %old_ptr, i8* new_value)
316 /// ; in order in case old_value releases new_value in its destructor causing
318 /// tail call i8* @objc_retain(i8* %new_value) (2)
321 /// ; Store the new_value into old_ptr
322 /// store i8* %new_value, i8** %old_ptr (4)
352 // Then find what new_value's RCIdentity Root is.
  /external/vixl/src/vixl/a64/
simulator-a64.h 276 void Set(T new_value) {
277 VIXL_STATIC_ASSERT(sizeof(new_value) <= kSizeInBytes);
278 if (sizeof(new_value) < kSizeInBytes) {
280 memset(value_ + sizeof(new_value), 0, kSizeInBytes - sizeof(new_value));
282 memcpy(value_, &new_value, sizeof(new_value));
291 void Insert(int lane, T new_value) {
293 VIXL_ASSERT((sizeof(new_value) +
294 (lane * sizeof(new_value))) <= kSizeInBytes)
    [all...]
  /external/webp/src/enc/
delta_palettization.c 367 uint32_t new_value, uint32_t palette_value,
370 AddPixelsEq(&new_value, palette_value);
373 new_value, src[x]);
378 new_value, src[x]);
380 new_image[x] = new_value;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/
xmlmanager.py 78 new_value = []
83 new_value.append(self.encode(item_type, v))
84 return new_value
  /device/google/dragon/audio/hal/
cras_expr.c 239 struct cras_expr_value *new_value)
242 copy_value(value, new_value);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
route53 136 for new_value in newvalues.split(','):
137 change2.add_value(new_value)
  /external/libunwind_llvm/include/
unwind.h 211 uintptr_t new_value);
213 extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
unwind.h 209 uintptr_t new_value);
211 extern void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t new_value);
  /art/runtime/gc/accounting/
card_table_test.cc 102 void operator()(uint8_t* /*card*/, uint8_t /*expected_value*/, uint8_t /*new_value*/) const {

Completed in 516 milliseconds

1 2 3 4 5 6 78 91011>>