Home
last modified time | relevance | path

Searched refs:end_index (Results 1 – 25 of 70) sorted by relevance

123

/external/autotest/client/cros/audio/
Daudio_quality_measurement.py397 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 …]
Daudio_quality_measurement_unittest.py93 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/v8/src/heap/
Dmarking.cc30 void Bitmap::SetRange(uint32_t start_index, uint32_t end_index) { in SetRange() argument
33 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in SetRange()
34 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in SetRange()
56 void Bitmap::ClearRange(uint32_t start_index, uint32_t end_index) { in ClearRange() argument
60 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in ClearRange()
61 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in ClearRange()
84 bool Bitmap::AllBitsSetInRange(uint32_t start_index, uint32_t end_index) { in AllBitsSetInRange() argument
88 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange()
89 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index); in AllBitsSetInRange()
114 bool Bitmap::AllBitsClearInRange(uint32_t start_index, uint32_t end_index) { in AllBitsClearInRange() argument
[all …]
Dmarking.h160 void SetRange(uint32_t start_index, uint32_t end_index);
165 void ClearRange(uint32_t start_index, uint32_t end_index);
168 bool AllBitsSetInRange(uint32_t start_index, uint32_t end_index);
171 bool AllBitsClearInRange(uint32_t start_index, uint32_t end_index);
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dllvm_loop.cc34 llvm::Value* start_index, llvm::Value* end_index, in ForLoop() argument
40 end_index_(end_index), in ForLoop()
47 absl::string_view prefix, llvm::Value* start_index, llvm::Value* end_index, in EmitForLoop() argument
51 end_index, step, unroll_mode, in EmitForLoop()
178 llvm::Value* end_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()
211 int64 end_index, in AddLoop() argument
215 CHECK_LE(start_index, end_index); in AddLoop()
[all …]
Dllvm_loop.h85 llvm::Value* end_index, llvm::Value* step, llvm::IRBuilder<>* b,
140 llvm::Value* start_index, llvm::Value* end_index, llvm::Value* step,
198 llvm::Value* end_index, llvm::Value* stride,
205 llvm::Value* end_index,
212 int64 start_index, int64 end_index, int64 stride,
219 int64 start_index, int64 end_index, absl::string_view suffix,
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Ddisassembler.cc116 uint64_t end_index; in DisassembleObjectFile() local
120 end_index = std::min(section_size, next_address.get()); in DisassembleObjectFile()
122 end_index = section_size; in DisassembleObjectFile()
126 if (start_index == end_index) { in DisassembleObjectFile()
135 code_size_bytes += end_index - start_index; in DisassembleObjectFile()
139 while (index < end_index) { in DisassembleObjectFile()
Dparallel_loop_emitter.cc52 llvm::Value* end_index = (*dynamic_loop_bounds_)[bounds_index].second; in EmitIndexAndSetExitBasicBlock() local
56 end_index); in EmitIndexAndSetExitBasicBlock()
/external/tensorflow/tensorflow/contrib/cloud/kernels/
Dbigquery_table_partition.proto7 // [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
Dbigquery_table_accessor.cc27 if (partition.end_index() != -1 && in IsPartitionEmpty()
28 partition.end_index() < partition.start_index()) { in IsPartitionEmpty()
205 if (partition_.end_index() == -1) { in ComputeMaxResultsArg()
212 static_cast<int64>(partition_.end_index() - in ComputeMaxResultsArg()
366 (partition_.end_index() != -1 && in Done()
367 partition_.end_index() < in Done()
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
Dstrip_js_comments.py32 end_index = m.end()
37 yield rest[min_index:end_index]
38 rest = rest[end_index:]
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
Dsplit_handler_ops.cc255 int end_index = partition_boundaries[root_idx + 1]; 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()
317 const int end_index = partition_boundaries[root_idx + 1]; in ComputeObliviousDecisionTree() local
319 for (int64 bucket_idx = start_index; bucket_idx < end_index; in ComputeObliviousDecisionTree()
357 const int end_index = partition_boundaries[root_idx + 1]; in ComputeObliviousDecisionTree() local
358 if (idx < end_index && bucket_ids(idx, 0) == current_bucket_id) { in ComputeObliviousDecisionTree()
365 if (idx < end_index && in ComputeObliviousDecisionTree()
577 const int end_index = in Compute() local
588 for (int64 bucket_idx = start_index; bucket_idx < end_index; in Compute()
[all …]
/external/tensorflow/tensorflow/contrib/opt/python/training/
Dggt.py187 end_index = start_index + dim
193 flat_grad, math_ops.range(start_index, end_index), new_flat_grad)
201 end_index = start_index + dim
207 flat_grad, math_ops.range(start_index, end_index), new_flat_grad)
308 end_index = start_index + dim
310 update_new_step[start_index:end_index], var.get_shape())
/external/libchrome/base/strings/
Dstring_split.cc143 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/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
Dfilterbank_util.cc105 state->end_index = 0; // Initialized to zero here, but actually set below. in FilterbankPopulateState()
202 if (frequency > state->end_index) { in FilterbankPopulateState()
203 state->end_index = frequency; in FilterbankPopulateState()
207 if (state->end_index >= spectrum_size) { in FilterbankPopulateState()
Dfilterbank.cc24 const int end_index = state->end_index; in FilterbankConvertFftComplexToEnergy() local
28 for (i = state->start_index; i < end_index; ++i) { in FilterbankConvertFftComplexToEnergy()
Dfilterbank_test.cc71 TF_LITE_MICRO_EXPECT_EQ(state.end_index, kEndIndex); in TF_LITE_MICRO_TEST()
173 state.end_index = kEndIndex; in TF_LITE_MICRO_TEST()
183 for (i = state.start_index; i < state.end_index; ++i) { in TF_LITE_MICRO_TEST()
/external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
Dfilterbank_util.c102 state->end_index = 0; // Initialized to zero here, but actually set below. in FilterbankPopulateState()
201 if (frequency > state->end_index) { in FilterbankPopulateState()
202 state->end_index = frequency; in FilterbankPopulateState()
209 if (state->end_index >= spectrum_size) { in FilterbankPopulateState()
Dfilterbank.c24 const int end_index = state->end_index; in FilterbankConvertFftComplexToEnergy() local
28 for (i = state->start_index; i < end_index; ++i) { in FilterbankConvertFftComplexToEnergy()
Dfilterbank_test.cc67 TF_LITE_MICRO_EXPECT_EQ(state.end_index, kEndIndex); in TF_LITE_MICRO_TEST()
166 state.end_index = kEndIndex; in TF_LITE_MICRO_TEST()
176 for (i = state.start_index; i < state.end_index; ++i) { in TF_LITE_MICRO_TEST()
/external/mesa3d/src/mesa/vbo/
Dvbo_primitive_restart.c176 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/libtextclassifier/annotator/duration/
Dduration.cc134 CodepointIndex end_index = kInvalidIndex; in FindDurationStartingAt() local
154 end_index = token.end; in FindDurationStartingAt()
159 end_index = token.end; in FindDurationStartingAt()
192 context, {start_index, end_index}); in FindDurationStartingAt()
/external/ply/ply/ply/
Dygen.py22 for end_index, line in srclines:
26 return (start_index + 1, end_index)
/external/libchrome/base/json/
Djson_parser.cc623 int end_index = start_index; in ConsumeNumber() local
632 end_index = index_; in ConsumeNumber()
641 end_index = index_; in ConsumeNumber()
655 end_index = index_; in ConsumeNumber()
677 StringPiece num_string(num_start, end_index - start_index); in ConsumeNumber()
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dtransport_feedback.cc690 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()

123