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

123

/external/pdfium/core/fxcrt/
H A Dcfx_widetextbuf.h31 void Delete(int start_index, int count) { argument
32 CFX_BinaryBuf::Delete(start_index * sizeof(wchar_t),
H A Dcfx_binarybuf.cpp17 void CFX_BinaryBuf::Delete(size_t start_index, size_t count) { argument
18 if (!m_pBuffer || count > m_DataSize || start_index > m_DataSize - count)
21 memmove(m_pBuffer.get() + start_index, m_pBuffer.get() + start_index + count,
22 m_DataSize - start_index - count);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dparallel_loop_emitter.cc48 llvm::Value* start_index = (*dynamic_loop_bounds_)[bounds_index].first; local
53 start_index, end_index);
58 /*start_index=*/0,
H A Ddisassembler.cc113 uint64_t start_index = address.get() - section_address; local
127 if (start_index == end_index) {
136 code_size_bytes += end_index - start_index;
139 uint64_t index = start_index;
/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,
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
H A Dscatter_add_ndim_op.cc94 int32 start_index = 0; variable
96 start_index += indices(i, j) * multipliers[j];
99 const int32 input_index = start_index + offset;
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dllvm_loop.cc36 llvm::Value* start_index, llvm::Value* end_index,
41 start_index_(start_index),
49 tensorflow::StringPiece prefix, llvm::Value* start_index,
52 std::unique_ptr<ForLoop> loop(new ForLoop(prefix, /*suffix=*/"", start_index,
179 llvm::Value* start_index,
183 return AddLoop(suffix, start_index, end_index, ir_builder_->getInt64(1),
188 llvm::Value* start_index,
198 /*prefix=*/name_, suffix, start_index, end_index, stride,
215 std::unique_ptr<ForLoop> ForLoopNest::AddLoop(int64 start_index, argument
220 CHECK_LE(start_index, end_inde
35 ForLoop(tensorflow::StringPiece prefix, tensorflow::StringPiece suffix, llvm::Value* start_index, llvm::Value* end_index, llvm::Value* step, bool prevent_unrolling, bool prevent_vectorization) argument
48 EmitForLoop( tensorflow::StringPiece prefix, llvm::Value* start_index, llvm::Value* end_index, llvm::Value* step, llvm::IRBuilder<>* ir_builder, bool prevent_unrolling, bool prevent_vectorization) argument
178 AddLoop(tensorflow::StringPiece suffix, llvm::Value* start_index, llvm::Value* end_index, bool prevent_unrolling, bool prevent_vectorization) argument
187 AddLoop(tensorflow::StringPiece suffix, llvm::Value* start_index, llvm::Value* end_index, llvm::Value* stride, bool prevent_unrolling, bool prevent_vectorization) argument
226 AddLoop(int64 start_index, int64 end_index, int64 stride, tensorflow::StringPiece suffix, bool prevent_unrolling, bool prevent_vectorization) argument
[all...]
/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.cc22 Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size)
23 : start_index_(start_index),
46 return index + start_index();
51 DCHECK_GE(index, start_index());
52 DCHECK_LT(index, start_index() + size());
53 return constants_[index - start_index()];
58 DCHECK_GE(index, start_index());
59 DCHECK_LT(index, start_index() + size());
60 return constants_[index - start_index()];
73 size_t i = start_index();
21 ConstantArraySlice( Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size) argument
[all...]
H A Dconstant-array-builder.h148 ConstantArraySlice(Zone* zone, size_t start_index, size_t capacity,
164 inline size_t start_index() const { return start_index_; } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
/external/aac/libSBRenc/src/
H A Denv_est.h137 int start_index; member in struct:__anon668
168 int no_cols, int no_rows, int start_index,
/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/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/libxcam/modules/ocl/
H A Dcl_newtonemapping_handler.cpp315 int start_index = block_row * height_per_block * stats_ptr->info.width + block_col * width_per_block; local
332 int y = stats_ptr->stats[start_index + i * stats_ptr->info.width + j].avg_y;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_pack.c904 unsigned start_index = (i % size_ratio) * new_length; local
906 start_index, new_length);
/external/pdfium/fpdfsdk/
H A Dfpdftext.cpp263 int start_index) {
272 start_index >= 0 ? Optional<size_t>(start_index) : Optional<size_t>());
260 FPDFText_FindStart(FPDF_TEXTPAGE text_page, FPDF_WIDESTRING findwhat, unsigned long flags, int start_index) argument
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
H A Dsplit_handler_ops.cc190 int start_index = partition_boundaries[root_idx]; variable
193 for (int64 bucket_idx = start_index; bucket_idx < end_index;
204 for (int64 bucket_idx = start_index; bucket_idx < end_index;
235 output_partition_ids(root_idx) = partition_ids(start_index);
371 int32 bias_start_index = dimension_boundaries[0].start_index;
398 int start_index = dimension_and_start.start_index; variable
403 .start_index;
404 CHECK(bucket_ids_and_dimensions(start_index, 1) ==
406 << "For bucket " << bucket_ids_and_dimensions(start_index,
603 int start_index = partition_boundaries[non_empty_partitions[root_idx]]; variable
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dsparse_cross_op.cc486 int64 start_index = current_row[i]; local
494 (*feature_start_indices)[i].push_back(start_index);
/external/v8/src/compiler/
H A Djs-call-reducer.cc117 // have aliased sloppy arguments), and compute the {start_index} for
123 int start_index = 0; local
133 start_index = formal_parameter_count;
158 start_index, p.tail_call_mode()));
172 // starting from {start_index}.
174 for (int i = start_index + 1; i < parameters->InputCount(); ++i) {
451 int start_index = 0; local
460 start_index = shared->internal_formal_parameter_count();
475 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
H A Djs-operator.h119 CallForwardVarargsParameters(uint32_t start_index, argument
121 : bit_field_(StartIndexField::encode(start_index) |
124 uint32_t start_index() const { return StartIndexField::decode(bit_field_); } function in class:v8::internal::compiler::final
635 const Operator* CallForwardVarargs(uint32_t start_index,
/external/v8/src/regexp/
H A Dregexp-macro-assembler.cc130 int start_index) {
134 start_index += SlicedString::cast(subject)->offset();
140 DCHECK(start_index >= 0);
141 DCHECK(start_index <= subject->length());
144 SeqOneByteString::cast(subject)->GetChars() + start_index);
147 SeqTwoByteString::cast(subject)->GetChars() + start_index);
150 ExternalOneByteString::cast(subject)->GetChars() + start_index);
154 ExternalTwoByteString::cast(subject)->GetChars() + start_index);
160 Isolate* isolate, int start_index, bool is_direct_call,
206 *input_start = StringCharacterPosition(*subject, start_index);
128 StringCharacterPosition( String* subject, int start_index) argument
159 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/
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

Completed in 8944 milliseconds

123