/external/autotest/client/cros/audio/ |
D | audio_quality_measurement.py | 397 start_index, end_index = length - 1 , 0 404 end_index = max(end_index, right_border + 1) 405 return (start_index, end_index) 408 def noise_detection(start_index, end_index, argument 445 (index < end_index + rate * NEAR_SINE_START_OR_END_SECS)): 481 def delay_detection(start_index, end_index, argument 529 end_time = float(end_index) / rate - APPEND_ZEROS_SECS 530 for index in xrange(start_index, end_index): 572 def burst_detection(start_index, end_index, argument 615 for index in xrange(start_index, end_index): [all …]
|
D | audio_quality_measurement_unittest.py | 93 end_index = int(self.delay_end_time[i] * self.rate) 94 for j in xrange(start_index,end_index): 101 end_index = int(silence_before_playback_end_time * self.rate) 102 for i in xrange(0, end_index): 129 end_index = int(self.burst_end_time[i] * self.rate) 130 for j in xrange(start_index, end_index): 140 end_index = int(end_time[i] * self.rate) 141 for j in xrange(start_index,end_index):
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | llvm_loop.cc | 36 llvm::Value* start_index, llvm::Value* end_index, in ForLoop() argument 42 end_index_(end_index), in ForLoop() 50 llvm::Value* end_index, llvm::Value* step, llvm::IRBuilder<>* ir_builder, in EmitForLoop() argument 53 end_index, step, prevent_unrolling, in EmitForLoop() 180 llvm::Value* end_index, in AddLoop() argument 183 return AddLoop(suffix, start_index, end_index, ir_builder_->getInt64(1), in AddLoop() 189 llvm::Value* end_index, in AddLoop() argument 198 /*prefix=*/name_, suffix, start_index, end_index, stride, in AddLoop() 216 int64 end_index, in AddLoop() argument 220 CHECK_LE(start_index, end_index); in AddLoop() [all …]
|
D | llvm_loop.h | 76 llvm::Value* end_index, llvm::Value* step, llvm::IRBuilder<>* ir_builder, 130 llvm::Value* start_index, llvm::Value* end_index, llvm::Value* step, 190 llvm::Value* end_index, llvm::Value* stride, 197 llvm::Value* end_index, 203 std::unique_ptr<ForLoop> AddLoop(int64 start_index, int64 end_index, 209 std::unique_ptr<ForLoop> AddLoop(int64 start_index, int64 end_index,
|
/external/v8/src/heap/ |
D | marking.h | 110 void SetRange(uint32_t start_index, uint32_t end_index) { in SetRange() argument 114 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in SetRange() 115 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in SetRange() 133 void ClearRange(uint32_t start_index, uint32_t end_index) { in ClearRange() argument 137 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in ClearRange() 138 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in ClearRange() 156 bool AllBitsSetInRange(uint32_t start_index, uint32_t end_index) { in AllBitsSetInRange() argument 160 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange() 161 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in AllBitsSetInRange() 181 bool AllBitsClearInRange(uint32_t start_index, uint32_t end_index) { in AllBitsClearInRange() argument [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | disassembler.cc | 117 uint64_t end_index; in DisassembleObjectFile() local 121 end_index = std::min(section_size, next_address.get()); in DisassembleObjectFile() 123 end_index = section_size; in DisassembleObjectFile() 127 if (start_index == end_index) { in DisassembleObjectFile() 136 code_size_bytes += end_index - start_index; in DisassembleObjectFile() 140 while (index < end_index) { in DisassembleObjectFile()
|
D | parallel_loop_emitter.cc | 49 llvm::Value* end_index = (*dynamic_loop_bounds_)[bounds_index].second; in EmitIndexAndSetExitBasicBlock() local 53 start_index, end_index); in EmitIndexAndSetExitBasicBlock()
|
/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 11 int64 end_index = 2; field
|
D | bigquery_table_accessor.cc | 27 if (partition.end_index() != -1 && in IsPartitionEmpty() 28 partition.end_index() < partition.start_index()) { in IsPartitionEmpty() 215 if (partition_.end_index() == -1) { in ComputeMaxResultsArg() 222 static_cast<int64>(partition_.end_index() - in ComputeMaxResultsArg() 376 (partition_.end_index() != -1 && in Done() 377 partition_.end_index() < in Done()
|
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/ |
D | strip_js_comments.py | 32 end_index = m.end() 37 yield rest[min_index:end_index] 38 rest = rest[end_index:]
|
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/ |
D | split_handler_ops.cc | 191 int end_index = partition_boundaries[root_idx + 1]; in Compute() local 193 for (int64 bucket_idx = start_index; bucket_idx < end_index; in Compute() 204 for (int64 bucket_idx = start_index; bucket_idx < end_index; in Compute() 401 const int end_index = in Compute() local 405 bucket_ids_and_dimensions(end_index - 1, 1)) in Compute() 409 << bucket_ids_and_dimensions(end_index - 1, 0) << " " in Compute() 410 << bucket_ids_and_dimensions(end_index - 1, 1); in Compute() 419 for (int64 bucket_idx = start_index; bucket_idx < end_index; in Compute() 427 for (int64 element_idx = start_index; element_idx < end_index; in Compute() 604 int end_index = partition_boundaries[non_empty_partitions[root_idx] + 1]; in Compute() local [all …]
|
/external/libchrome/base/strings/ |
D | string_split.cc | 143 for (size_type begin_index = 0, end_index = 0; end_index != Piece::npos; in SplitStringUsingSubstrT() local 144 begin_index = end_index + delimiter.size()) { in SplitStringUsingSubstrT() 145 end_index = input.find(delimiter, begin_index); in SplitStringUsingSubstrT() 146 Piece term = end_index == Piece::npos in SplitStringUsingSubstrT() 148 : input.substr(begin_index, end_index - begin_index); in SplitStringUsingSubstrT()
|
/external/mesa3d/src/mesa/vbo/ |
D | vbo_primitive_restart.c | 176 GLuint end_index; in vbo_sw_primitive_restart() local 241 end_index = prims[prim_num].start + prims[prim_num].count; in vbo_sw_primitive_restart() 249 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start; in vbo_sw_primitive_restart() 261 if (sub_end_index >= end_index) { in vbo_sw_primitive_restart()
|
/external/ply/ply/ply/ |
D | ygen.py | 22 for end_index, line in srclines: 26 return (start_index + 1, end_index)
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
D | transport_feedback.cc | 690 const size_t end_index = kHeaderLength + header.payload_size_bytes; in ParseFrom() local 700 if (index + 2 > end_index) { in ParseFrom() 722 if (index + 1 > end_index) { in ParseFrom() 730 if (index + 2 > end_index) { in ParseFrom() 743 RTC_DCHECK_GE(index, end_index - 3); in ParseFrom() 744 RTC_DCHECK_LE(index, end_index); in ParseFrom()
|
D | nack.cc | 101 size_t end_index = nack_index + num_nack_fields; in Create() local 102 for (; nack_index < end_index; ++nack_index) { in Create()
|
/external/sfntly/cpp/src/sfntly/data/ |
D | readable_font_data.cc | 229 int32_t end_index, in SearchUShort() argument 244 int32_t location_end = ReadUShort(end_index + location * end_offset); in SearchUShort() 284 int32_t end_index, in SearchULong() argument 300 int32_t location_end = ReadULongAsInt(end_index + location * end_offset); in SearchULong()
|
D | readable_font_data.h | 210 int32_t end_index, 245 int32_t end_index,
|
/external/libchrome/base/json/ |
D | json_parser.cc | 676 int end_index = start_index; in ConsumeNumber() local 685 end_index = index_; in ConsumeNumber() 694 end_index = index_; in ConsumeNumber() 711 end_index = index_; in ConsumeNumber() 735 StringPiece num_string(num_start, end_index - start_index); in ConsumeNumber()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 199 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local 202 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing() 203 if (end_index == string::npos) { in SplitStringToIteratorUsing() 207 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing() 208 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing() 236 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local 240 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorAllowEmpty() 241 if (end_index == string::npos) { in SplitStringToIteratorAllowEmpty() 245 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty() 246 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 1828 int end_index, in EmitUseLookupTable() argument 1840 for (int i = start_index; i <= end_index; i++) { in EmitUseLookupTable() 1863 for (int i = start_index; i < end_index; i++) { in EmitUseLookupTable() 1886 int end_index, in CutOutRange() argument 1906 for (int j = cut_index + 1; j < end_index; j++) { in CutOutRange() 1916 int end_index, in SplitSearchSpace() argument 1924 int last = ranges->at(end_index) - 1; in SplitSearchSpace() 1928 while (*new_start_index < end_index) { in SplitSearchSpace() 1943 int binary_chop_index = (end_index + start_index) / 2; in SplitSearchSpace() 1949 end_index - start_index > (*new_start_index - start_index) * 2 && in SplitSearchSpace() [all …]
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-param-util.h | 245 int end_index = 0; in CalculateEndIndex() local 247 end_index++; in CalculateEndIndex() 248 return end_index; in CalculateEndIndex()
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-param-util.h | 245 int end_index = 0; in CalculateEndIndex() local 247 end_index++; in CalculateEndIndex() 248 return end_index; in CalculateEndIndex()
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-param-util.h | 244 int end_index = 0; in CalculateEndIndex() local 246 end_index++; in CalculateEndIndex() 247 return end_index; in CalculateEndIndex()
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-param-util.h | 245 int end_index = 0; in CalculateEndIndex() local 247 end_index++; in CalculateEndIndex() 248 return end_index; in CalculateEndIndex()
|