HomeSort by relevance Sort by last modified time
    Searched defs:lower_bound (Results 51 - 58 of 58) sorted by null

1 23

  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.c 881 // Allow for a slack in the actual delay, defined by a |lower_bound| and an
885 const int lower_bound = 0; local
887 const int do_correction = delay <= lower_bound || delay > upper_bound;
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ir.h 130 iterator lower_bound(const V& v) { function in class:r600_sb::sb_set
131 return std::lower_bound(vec.begin(), vec.end(), v, Comp());
135 iterator P = lower_bound(v);
142 iterator P = lower_bound(v);
158 iterator P = lower_bound(v);
  /external/v8/src/wasm/
wasm-interpreter.cc 458 float lower_bound = static_cast<float>(INT32_MIN); local
459 if (a < upper_bound && a >= lower_bound) {
472 double lower_bound = -2147483649.0; local
473 if (a < upper_bound && a > lower_bound) {
485 double lower_bound = -1.0f; local
486 if (a < upper_bound && a > lower_bound) {
498 double lower_bound = -1.0; local
499 if (a < upper_bound && a > lower_bound) {
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
regex.c 3833 int lower_bound = -1, upper_bound = -1; local
    [all...]
  /art/compiler/optimizing/
code_generator_mips.cc 9421 int32_t lower_bound = switch_instr->GetStartValue(); local
9463 int32_t lower_bound = switch_instr->GetStartValue(); local
    [all...]
code_generator_x86.cc 7452 int32_t lower_bound = switch_instr->GetStartValue(); local
7477 int32_t lower_bound = switch_instr->GetStartValue(); local
    [all...]
code_generator_x86_64.cc 6790 int32_t lower_bound = switch_instr->GetStartValue(); local
    [all...]
  /external/valgrind/drd/tests/
tsan_unittest.cpp 7468 int lower_bound = ARRAY_SIZE * (myId-1) \/ N_THREADS, local
7513 int lower_bound = ARRAY_SIZE * (myId-1) \/ N_THREADS, local
    [all...]

Completed in 297 milliseconds

1 23