HomeSort by relevance Sort by last modified time
    Searched defs:start_index (Results 1 - 25 of 37) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/neteq/
dsp_helper_unittest.cc 58 // We want to start ramping at |start_index| and keep ramping for |kLen|
60 int start_index = kLen; local
66 int stop_factor = DspHelper::RampSignal(&input, start_index, kLen,
merge.cc 345 size_t start_index = timestamps_per_call_ + expand_->overlap_length(); local
346 start_index = std::max(start_position, start_index);
347 start_index = (input_length > start_index) ? 0 : (start_index - input_length);
349 size_t start_index_downsamp = start_index / (fs_mult_ * 2);
364 best_correlation_index += start_index;
expand.cc 446 size_t start_index = std::min(distortion_lag, correlation_lag); local
455 &audio_history[signal_length - correlation_length - start_index
457 correlation_length + start_index + correlation_lags - 1);
466 &(audio_history[signal_length - correlation_length - start_index]),
473 best_index = best_index + start_index;
    [all...]
  /system/core/base/
strings.cpp 55 size_t start_index = 0; local
59 while (start_index < s.size()) {
60 if (!isspace(s[start_index])) {
63 start_index++;
67 while (end_index >= start_index) {
75 if (end_index < start_index) {
78 // Start_index is the first non-space, end_index is the last one.
79 return s.substr(start_index, end_index - start_index + 1);
  /system/bt/service/common/bluetooth/
uuid.cpp 103 const int start_index = uuid.size() == 4 ? 2 : 0; local
108 id_[start_index + i] = strtol(octet_text.c_str(), &temp, 16);
  /external/v8/src/interpreter/
constant-array-builder.h 69 ConstantArraySlice(Zone* zone, size_t start_index, size_t capacity,
80 inline size_t start_index() const { return start_index_; } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
  /external/pdfium/fpdfsdk/src/
fpdftext.cpp 190 int start_index) {
197 start_index); local
  /external/squashfs-tools/kernel/fs/squashfs/
file.c 385 int start_index = page->index & ~mask; local
386 int end_index = start_index | mask;
452 for (i = start_index; i <= end_index && bytes > 0; i++,
  /external/aac/libSBRenc/src/
env_est.h 120 int start_index; member in struct:__anon5523
162 int start_index,
  /external/libnfc-nxp/src/
phLlcNfc_Timer.c 377 uint8_t start_index = 0; local
388 while (start_index < (timer_count - no_of_guard_to_del))
391 ps_timer_info->guard_to_value[start_index] = (uint16_t)
393 (no_of_guard_to_del + start_index)]);
395 ps_timer_info->iframe_send_count[start_index] = (uint8_t)
397 (no_of_guard_to_del + start_index)]);
399 PH_LLCNFC_DEBUG("GUARD TIMER NS INDEX DELETED : 0x%02X\n", ps_timer_info->timer_ns_value[start_index]);
401 ps_timer_info->timer_ns_value[start_index] = (uint8_t)
403 (no_of_guard_to_del + start_index)]);
405 ps_timer_info->frame_type[start_index] = (uint8_t
710 uint8_t start_index = 0; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_pack.c 662 unsigned start_index = (i % size_ratio) * new_length; local
664 start_index, new_length);
  /external/v8/src/compiler/
js-call-reducer.cc 140 int start_index = 0; local
149 start_index = shared->internal_formal_parameter_count();
155 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
js-create-lowering.cc 417 int start_index = shared->internal_formal_parameter_count(); local
429 AllocateRestArguments(effect, control, args_state, start_index);
445 int length = std::max(0, argument_count - start_index);
    [all...]
  /external/v8/src/heap/
page-parallel-job.h 85 int start_index = 0; local
87 for (int i = 0; i < num_tasks_; i++, start_index += items_per_task) {
88 if (start_index >= num_items_) {
89 start_index -= num_items_;
91 Task* task = new Task(heap_, items_, num_items_, start_index,
137 Task(Heap* heap, Item* items, int num_items, int start_index,
143 start_index_(start_index),
  /external/v8/src/runtime/
runtime-scopes.cc 548 int start_index = callee->shared()->internal_formal_parameter_count(); local
554 int num_elements = std::max(0, argument_count - start_index);
563 elements->set(i, *arguments[i + start_index], mode);
    [all...]
runtime-strings.cc 17 // Caller must ensure that 0 <= start_index <= sub->length(),
18 // and should check that pat->length() + start_index <= sub->length().
20 int start_index) {
21 DCHECK(0 <= start_index);
22 DCHECK(start_index <= sub->length());
25 if (pattern_length == 0) return start_index;
28 if (start_index + pattern_length > subject_length) return -1;
43 start_index);
46 start_index);
51 start_index);
140 uint32_t start_index = 0; local
191 uint32_t start_index = 0; local
    [all...]
  /external/libchrome/base/json/
json_parser.cc 826 const int start_index = index_; local
827 int end_index = start_index;
885 StringPiece num_string(num_start, end_index - start_index);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_hash_table.h 214 GUINT start_index = (hashkey%m_table_size)*m_node_size; local
215 GUINT end_index = start_index + m_node_size;
217 while(start_index<end_index)
219 GUINT value = m_hash_table[start_index];
222 if(nodesptr[value].m_key == hashkey) return start_index;
224 start_index++;
234 GUINT start_index = (hashkey%m_table_size)*m_node_size; local
235 GUINT end_index = start_index + m_node_size;
237 while(start_index<end_index)
239 GUINT value = m_hash_table[start_index];
    [all...]
  /external/libweave/third_party/chromium/base/json/
json_parser.cc 821 const int start_index = index_; local
822 int end_index = start_index;
880 StringPiece num_string(num_start, end_index - start_index);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 224 attr_accessor :start_index
377 | start = #{ start_index.inspect }
382 freshen( start_index )
475 @start_index = -1
481 @start_index = payload.start_index
525 def start_index method in class:ANTLR3.CommonTree
526 @start_index == -1 and @token and return @token.index
527 return @start_index
535 alias token_start_index= start_index
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 375 int min_x, max_x, start_index, end_index; local
379 start_index = 0;
384 start_index = 1;
396 FX_FLOAT r_unit = (r[end_index] - r[start_index]) / (max_x - min_x);
397 FX_FLOAT g_unit = (g[end_index] - g[start_index]) / (max_x - min_x);
398 FX_FLOAT b_unit = (b[end_index] - b[start_index]) / (max_x - min_x);
399 FX_FLOAT R = r[start_index] + (start_x - min_x) * r_unit;
400 FX_FLOAT G = g[start_index] + (start_x - min_x) * g_unit;
401 FX_FLOAT B = b[start_index] + (start_x - min_x) * b_unit;
    [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
inode.c 1464 int start_index = page->index & ~mask; local
    [all...]
  /art/compiler/optimizing/
instruction_builder.cc 1096 size_t start_index = 0; local
1141 size_t start_index = 1; local
    [all...]
intrinsics_x86.cc 1463 Register start_index = locations->InAt(2).AsRegister<Register>(); local
    [all...]
intrinsics_x86_64.cc 1565 CpuRegister start_index = locations->InAt(2).AsRegister<CpuRegister>(); local
    [all...]

Completed in 2228 milliseconds

1 2