/external/autotest/client/cros/audio/ |
D | audio_quality_measurement.py | 397 start_index, end_index = length - 1 , 0 403 start_index = min(start_index, left_border) 405 return (start_index, end_index) 408 def noise_detection(start_index, end_index, argument 444 if ((start_index - rate * NEAR_SINE_START_OR_END_SECS) <= index and 473 if noise_time_point[i] < float(start_index) / rate - APPEND_ZEROS_SECS: 481 def delay_detection(start_index, end_index, argument 528 start_time = float(start_index) / rate - APPEND_ZEROS_SECS 530 for index in xrange(start_index, end_index): 572 def burst_detection(start_index, end_index, argument [all …]
|
D | audio_quality_measurement_unittest.py | 92 start_index = int(self.delay_start_time[i] * self.rate) 94 for j in xrange(start_index,end_index): 128 start_index = int(self.burst_start_time[i] * self.rate) 130 for j in xrange(start_index, end_index): 139 start_index = int(start_time[i] * self.rate) 141 for j in xrange(start_index,end_index):
|
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/ |
D | split_handler_ops.cc | 254 int start_index = partition_boundaries[root_idx]; in ComputeNormalDecisionTree() local 257 for (int64 bucket_idx = start_index; bucket_idx < end_index; in ComputeNormalDecisionTree() 268 for (int64 bucket_idx = start_index; bucket_idx < end_index; in ComputeNormalDecisionTree() 299 (*output_partition_ids)(root_idx) = partition_ids(start_index); in ComputeNormalDecisionTree() 316 const int start_index = partition_boundaries[root_idx]; in ComputeObliviousDecisionTree() local 319 for (int64 bucket_idx = start_index; bucket_idx < end_index; in ComputeObliviousDecisionTree() 339 const int start_index = partition_boundaries[root_idx]; in ComputeObliviousDecisionTree() local 340 if (bucket_ids(start_index, 0) < current_bucket_id) { in ComputeObliviousDecisionTree() 341 current_bucket_id = bucket_ids(start_index, 0); in ComputeObliviousDecisionTree() 410 const int start_index = partition_boundaries[root_idx]; in ComputeObliviousDecisionTree() local [all …]
|
/external/v8/src/heap/ |
D | marking.cc | 30 void Bitmap::SetRange(uint32_t start_index, uint32_t end_index) { in SetRange() argument 31 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in SetRange() 32 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in SetRange() 56 void Bitmap::ClearRange(uint32_t start_index, uint32_t end_index) { in ClearRange() argument 57 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in ClearRange() 58 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in ClearRange() 84 bool Bitmap::AllBitsSetInRange(uint32_t start_index, uint32_t end_index) { in AllBitsSetInRange() argument 85 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange() 86 MarkBit::CellType start_index_mask = 1u << Bitmap::IndexInCell(start_index); in AllBitsSetInRange() 114 bool Bitmap::AllBitsClearInRange(uint32_t start_index, uint32_t end_index) { in AllBitsClearInRange() argument [all …]
|
D | item-parallel-job.cc | 23 base::Semaphore* on_finish, std::vector<Item*>* items, size_t start_index, in SetupInternal() argument 28 if (start_index < items->size()) { in SetupInternal() 29 cur_index_ = start_index; in SetupInternal() 94 for (size_t i = 0, start_index = 0; i < num_tasks; in Run() local 95 i++, start_index += items_per_task + (i < items_remainder ? 1 : 0)) { in Run() 102 DCHECK_IMPLIES(start_index >= num_items, i >= num_tasks_processing_items); in Run() 104 task->SetupInternal(pending_tasks_, &items_, start_index, in Run()
|
/external/python/google-api-python-client/samples/adexchangeseller/ |
D | generate_report_with_paging.py | 57 start_index = 0 68 startIndex=start_index, 72 if start_index == 0: 83 start_index += len(result['rows']) 87 if start_index + MAX_PAGE_SIZE > ROW_LIMIT: 88 rows_to_obtain = ROW_LIMIT - start_index 92 if (start_index >= int(result['totalMatchedRows'])):
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | llvm_loop.cc | 34 llvm::Value* start_index, llvm::Value* end_index, in ForLoop() argument 39 start_index_(start_index), in ForLoop() 47 absl::string_view prefix, llvm::Value* start_index, llvm::Value* end_index, in EmitForLoop() argument 50 std::unique_ptr<ForLoop> loop(new ForLoop(prefix, /*suffix=*/"", start_index, in EmitForLoop() 177 llvm::Value* start_index, in AddLoop() argument 181 return AddLoop(suffix, start_index, end_index, GetConstantWithIndexType(1), in AddLoop() 186 absl::string_view suffix, llvm::Value* start_index, llvm::Value* end_index, in AddLoop() argument 193 /*prefix=*/name_, suffix, start_index, end_index, stride, unroll_mode, in AddLoop() 210 std::unique_ptr<ForLoop> ForLoopNest::AddLoop(int64 start_index, in AddLoop() argument 215 CHECK_LE(start_index, end_index); in AddLoop() [all …]
|
D | llvm_loop.h | 84 absl::string_view prefix, llvm::Value* start_index, 140 llvm::Value* start_index, llvm::Value* end_index, llvm::Value* step, 197 absl::string_view suffix, llvm::Value* start_index, 204 absl::string_view suffix, llvm::Value* start_index, 212 int64 start_index, int64 end_index, int64 stride, 219 int64 start_index, int64 end_index, absl::string_view suffix,
|
/external/pdfium/core/fxcrt/ |
D | cfx_binarybuf.cpp | 17 void CFX_BinaryBuf::Delete(size_t start_index, size_t count) { in Delete() argument 18 if (!m_pBuffer || count > m_DataSize || start_index > m_DataSize - count) in Delete() 21 memmove(m_pBuffer.get() + start_index, m_pBuffer.get() + start_index + count, in Delete() 22 m_DataSize - start_index - count); in Delete()
|
/external/v8/src/interpreter/ |
D | constant-array-builder.cc | 23 Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size) in ConstantArraySlice() argument 24 : start_index_(start_index), in ConstantArraySlice() 49 return index + start_index(); in Allocate() 54 DCHECK_GE(index, start_index()); in At() 55 DCHECK_LT(index, start_index() + size()); in At() 56 return constants_[index - start_index()]; in At() 61 DCHECK_GE(index, start_index()); in At() 62 DCHECK_LT(index, start_index() + size()); in At() 63 return constants_[index - start_index()]; in At() 114 size_t i = start_index(); in CheckAllElementsAreUnique() [all …]
|
D | bytecode-register-allocator.h | 28 explicit BytecodeRegisterAllocator(int start_index) in BytecodeRegisterAllocator() argument 29 : next_register_index_(start_index), in BytecodeRegisterAllocator() 30 max_register_count_(start_index), in BytecodeRegisterAllocator()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | audio_multi_vector.cc | 130 size_t AudioMultiVector::ReadInterleavedFromIndex(size_t start_index, in ReadInterleavedFromIndex() argument 137 assert(start_index <= Size()); in ReadInterleavedFromIndex() 138 start_index = std::min(start_index, Size()); in ReadInterleavedFromIndex() 139 if (length + start_index > Size()) { in ReadInterleavedFromIndex() 140 length = Size() - start_index; in ReadInterleavedFromIndex() 144 memcpy(destination, &(*this)[0][start_index], length * sizeof(int16_t)); in ReadInterleavedFromIndex() 149 destination[index] = (*this)[channel][i + start_index]; in ReadInterleavedFromIndex()
|
D | merge.cc | 345 size_t start_index = timestamps_per_call_ + expand_->overlap_length(); in CorrelateAndPeakSearch() local 346 start_index = std::max(start_position, start_index); in CorrelateAndPeakSearch() 347 start_index = (input_length > start_index) ? 0 : (start_index - input_length); in CorrelateAndPeakSearch() 349 size_t start_index_downsamp = start_index / (fs_mult_ * 2); in CorrelateAndPeakSearch() 364 best_correlation_index += start_index; in CorrelateAndPeakSearch()
|
/external/v8/src/ |
D | string-search.h | 110 int start_index); 114 int start_index); 118 int start_index); 123 int start_index); 127 int start_index); 308 int start_index) { in BoyerMooreSearch() argument 319 int index = start_index; in BoyerMooreSearch() 431 int start_index) { in BoyerMooreHorspoolSearch() argument 443 int index = start_index; // No matches found prior to this index. in BoyerMooreHorspoolSearch() 561 int start_index) { in SearchString() argument [all …]
|
/external/v8/src/regexp/ |
D | regexp-macro-assembler.cc | 131 int start_index) { in StringCharacterPosition() argument 135 start_index += SlicedString::cast(subject)->offset(); in StringCharacterPosition() 141 DCHECK_LE(0, start_index); in StringCharacterPosition() 142 DCHECK_LE(start_index, subject->length()); in StringCharacterPosition() 145 SeqOneByteString::cast(subject)->GetChars() + start_index); in StringCharacterPosition() 148 SeqTwoByteString::cast(subject)->GetChars() + start_index); in StringCharacterPosition() 151 ExternalOneByteString::cast(subject)->GetChars() + start_index); in StringCharacterPosition() 155 ExternalTwoByteString::cast(subject)->GetChars() + start_index); in StringCharacterPosition() 161 Isolate* isolate, int start_index, bool is_direct_call, in CheckStackGuardState() argument 210 *input_start = StringCharacterPosition(*subject, start_index); in CheckStackGuardState()
|
/external/tensorflow/tensorflow/contrib/opt/python/training/ |
D | ggt.py | 186 start_index = self.index_dict[var.name] 187 end_index = start_index + dim 193 flat_grad, math_ops.range(start_index, end_index), new_flat_grad) 200 start_index = self.index_dict[var.name] 201 end_index = start_index + dim 207 flat_grad, math_ops.range(start_index, end_index), new_flat_grad) 307 start_index = self.index_dict[var.name] 308 end_index = start_index + dim 310 update_new_step[start_index:end_index], var.get_shape())
|
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | bigquery_table_partition.proto | 7 // [start_index, end_index] specify the boundaries of a partition. 8 // If end_index is -1, every row starting from start_index is part of the 10 int64 start_index = 1; field
|
/external/libtextclassifier/annotator/duration/ |
D | duration.cc | 133 CodepointIndex start_index = kInvalidIndex; in FindDurationStartingAt() local 151 if (start_index == kInvalidIndex) { in FindDurationStartingAt() 152 start_index = token.start; in FindDurationStartingAt() 156 if (start_index == kInvalidIndex) { in FindDurationStartingAt() 157 start_index = token.start; in FindDurationStartingAt() 192 context, {start_index, end_index}); in FindDurationStartingAt()
|
/external/libxcam/cl_kernel/ |
D | kernel_newtonemapping.cl | 63 int start_index = mad24(i, BLOCK_FACTOR, j) * 4096; 79 haleq.x = hist_leq[start_index + (int)src_y.x]; 80 haleq.y = hist_leq[start_index + (int)src_y.y]; 81 haleq.z = hist_leq[start_index + (int)src_y.z]; 82 haleq.w = hist_leq[start_index + (int)src_y.w];
|
/external/v8/src/builtins/ |
D | builtins-regexp.cc | 129 const int start_index = match_info->Capture(0); in BUILTIN() local 131 return *isolate->factory()->NewSubString(last_subject, 0, start_index); in BUILTIN() 137 const int start_index = match_info->Capture(1); in BUILTIN() local 140 return *isolate->factory()->NewSubString(last_subject, start_index, len); in BUILTIN()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | disassembler.cc | 112 uint64_t start_index = address.get() - section_address; in DisassembleObjectFile() local 126 if (start_index == end_index) { in DisassembleObjectFile() 135 code_size_bytes += end_index - start_index; in DisassembleObjectFile() 138 uint64_t index = start_index; in DisassembleObjectFile()
|
/external/python/cpython2/Lib/ |
D | argparse.py | 1814 def consume_optional(start_index): argument 1817 option_tuple = option_string_indices[start_index] 1828 extras.append(arg_strings[start_index]) 1829 return start_index + 1 1856 stop = start_index + 1 1871 start = start_index + 1 1891 def consume_positionals(start_index): argument 1894 selected_pattern = arg_strings_pattern[start_index:] 1900 args = arg_strings[start_index: start_index + arg_count] 1901 start_index += arg_count [all …]
|
/external/pdfium/public/ |
D | fpdf_text.h | 182 int start_index, 205 int start_index, 293 int start_index);
|
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/ |
D | scatter_add_ndim_op.cc | 94 int32 start_index = 0; in Compute() local 96 start_index += indices(i, j) * multipliers[j]; in Compute() 99 const int32 input_index = start_index + offset; in Compute()
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | tree.rb | 382 freshen( start_index ) 481 @start_index = payload.start_index 525 def start_index method in ANTLR3.CommonTree 535 alias token_start_index= start_index= 537 alias token_start_index start_index 567 @start_index = first.start_index 784 tree.start_index = start 1207 start_index = @adaptor.token_start_index( start ) 1208 return @token_stream.extract_text( start_index, stop_index ) 1210 start_index = @nodes.index( start ) || @nodes.length [all …]
|