Searched defs:start_index (Results 1 - 25 of 49) sorted by relevance

12

/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddsp_helper_unittest.cc58 // 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,
H A Ddsp_helper.cc84 size_t start_index,
88 assert(start_index + length <= signal->Size());
89 if (start_index + length > signal->Size()) {
97 RampSignal(&(*signal)[channel][start_index], length, factor, increment);
83 RampSignal(AudioMultiVector* signal, size_t start_index, size_t length, int factor, int increment) argument
H A Dmerge.cc345 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;
/external/v8/src/interpreter/
H A Dbytecode-register-allocator.h28 explicit BytecodeRegisterAllocator(int start_index) argument
29 : next_register_index_(start_index),
30 max_register_count_(start_index),
H A Dconstant-array-builder.h78 ConstantArraySlice(Zone* zone, size_t start_index, size_t capacity,
91 inline size_t start_index() const { return start_index_; } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
H A Dconstant-array-builder.cc18 Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size)
19 : start_index_(start_index),
42 return index + start_index();
47 DCHECK_GE(index, start_index());
48 DCHECK_LT(index, start_index() + size());
49 return constants_[index - start_index()];
54 DCHECK_GE(index, start_index());
55 DCHECK_LT(index, start_index() + size());
56 constants_[index - start_index()] = object;
95 return slice->start_index()
17 ConstantArraySlice( Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size) argument
[all...]
H A Dbytecode-register-optimizer.cc384 int start_index = reg_list.first_register().index(); local
386 Register current(start_index + i);
409 int start_index = reg_list.first_register().index(); local
411 Register current(start_index + i);
/external/aac/libSBRenc/src/
H A Denv_est.h120 int start_index; member in struct:__anon410
162 int start_index,
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_query.c389 static unsigned r600_query_read_result(char *map, unsigned start_index, unsigned end_index, argument
395 start = (uint64_t)current_result[start_index] |
396 (uint64_t)current_result[start_index+1] << 32;
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_hw_context.c261 static unsigned r600_query_read_result(char *map, unsigned start_index, unsigned end_index, argument
267 start = (uint64_t)current_result[start_index] |
268 (uint64_t)current_result[start_index+1] << 32;
/external/pdfium/core/fxcrt/
H A Dfx_basic_buffer.cpp26 void CFX_BinaryBuf::Delete(int start_index, int count) { argument
27 if (!m_pBuffer || start_index < 0 || count < 0 || count > m_DataSize ||
28 start_index > m_DataSize - count) {
31 FXSYS_memmove(m_pBuffer.get() + start_index,
32 m_pBuffer.get() + start_index + count,
33 m_DataSize - start_index - count);
/external/pdfium/fpdfsdk/
H A Dfpdftext.cpp226 int start_index) {
234 start_index); local
223 FPDFText_FindStart(FPDF_TEXTPAGE text_page, FPDF_WIDESTRING findwhat, unsigned long flags, int start_index) argument
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc227 int32_t ReadableFontData::SearchUShort(int32_t start_index, argument
238 int32_t location_start = ReadUShort(start_index + location * start_offset);
258 int32_t ReadableFontData::SearchUShort(int32_t start_index, argument
267 int32_t location_start = ReadUShort(start_index + location * start_offset);
282 int32_t ReadableFontData::SearchULong(int32_t start_index, argument
293 int32_t location_start = ReadULongAsInt(start_index
/external/squashfs-tools/kernel/fs/squashfs/
H A Dfile.c385 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/v8/src/compiler/
H A Djs-call-reducer.cc117 int start_index = 0; local
126 start_index = shared->internal_formal_parameter_count();
132 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
/external/v8/src/heap/
H A Dpage-parallel-job.h85 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,
138 Task(Heap* heap, Item* items, int num_items, int start_index, argument
144 start_index_(start_index),
H A Dmarking.h109 // Sets all bits in the range [start_index, end_index).
110 void SetRange(uint32_t start_index, uint32_t end_index) { argument
111 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2;
112 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index);
132 // Clears all bits in the range [start_index, end_index).
133 void ClearRange(uint32_t start_index, uint32_t end_index) { argument
134 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2;
135 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index);
155 // Returns true if all bits in the range [start_index, end_index) are set.
156 bool AllBitsSetInRange(uint32_t start_index, uint32_ argument
181 AllBitsClearInRange(uint32_t start_index, uint32_t end_index) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_pack.c662 unsigned start_index = (i % size_ratio) * new_length; local
664 start_index, new_length);
/external/v8/src/regexp/
H A Dregexp-macro-assembler.cc130 int start_index) {
134 start_index += SlicedString::cast(subject)->offset();
137 DCHECK(start_index >= 0);
138 DCHECK(start_index <= subject->length());
141 SeqOneByteString::cast(subject)->GetChars() + start_index);
144 SeqTwoByteString::cast(subject)->GetChars() + start_index);
147 ExternalOneByteString::cast(subject)->GetChars() + start_index);
150 ExternalTwoByteString::cast(subject)->GetChars() + start_index);
156 Isolate* isolate, int start_index, bool is_direct_call,
202 *input_start = StringCharacterPosition(*subject, start_index);
128 StringCharacterPosition( String* subject, int start_index) argument
155 CheckStackGuardState( Isolate* isolate, int start_index, bool is_direct_call, Address* return_address, Code* re_code, String** subject, const byte** input_start, const byte** input_end) argument
[all...]
/external/v8/src/runtime/
H A Druntime-scopes.cc561 int start_index = callee->shared()->internal_formal_parameter_count(); local
567 int num_elements = std::max(0, argument_count - start_index);
576 elements->set(i, *arguments[i + start_index], mode);
/external/v8/src/
H A Dstring-search.h110 int start_index);
114 int start_index);
118 int start_index);
123 int start_index);
127 int start_index);
308 int start_index) {
319 int index = start_index;
431 int start_index) {
443 int index = start_index; // No matches found prior to this index.
561 int start_index) {
305 BoyerMooreSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
428 BoyerMooreHorspoolSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
558 SearchString(Isolate* isolate, Vector<const SubjectChar> subject, Vector<const PatternChar> pattern, int start_index) argument
[all...]
H A Duri.cc334 int start_index) {
342 for (int i = start_index; i < length; unescaped_length++) {
352 DCHECK(start_index < length);
354 isolate->factory()->NewProperSubString(string, 0, start_index);
365 for (int i = start_index; i < length; dest_position++) {
378 for (int i = start_index; i < length; dest_position++) {
333 UnescapeSlow(Isolate* isolate, Handle<String> string, int start_index) argument
H A Dcode-stub-assembler.h1048 compiler::Node* start_index, compiler::Node* end_index,
1054 MachineRepresentation index_rep, compiler::Node* start_index,
1059 BuildFastLoop(VariableList(0, zone()), index_rep, start_index, end_index,
1053 BuildFastLoop( MachineRepresentation index_rep, compiler::Node* start_index, compiler::Node* end_index, std::function<void(CodeStubAssembler* assembler, compiler::Node* index)> body, int increment, IndexAdvanceMode mode = IndexAdvanceMode::kPre) argument
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_h264_unittest.cc104 size_t start_index,
108 for (size_t i = start_index; i < nalu_index; ++i) {
103 GetExpectedNaluOffset(const RTPFragmentationHeader& fragmentation, size_t start_index, size_t nalu_index) argument
/external/libchrome/base/json/
H A Djson_parser.cc832 const int start_index = index_; local
833 int end_index = start_index;
891 StringPiece num_string(num_start, end_index - start_index);

Completed in 520 milliseconds

12