HomeSort by relevance Sort by last modified time
    Searched refs:end_index (Results 1 - 25 of 69) sorted by null

1 2 3

  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 30 int end_index) {
32 int end = end_index;
basic.h 40 int end_index);
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
strip_js_comments.py 32 end_index = m.end()
37 yield rest[min_index:end_index]
38 rest = rest[end_index:]
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
llvm_loop.cc 36 llvm::Value* start_index, llvm::Value* end_index,
42 end_index_(end_index),
50 llvm::Value* end_index, llvm::Value* step, llvm::IRBuilder<>* ir_builder,
53 end_index, step, prevent_unrolling,
180 llvm::Value* end_index,
183 return AddLoop(suffix, start_index, end_index, ir_builder_->getInt64(1),
189 llvm::Value* end_index,
198 /*prefix=*/name_, suffix, start_index, end_index, stride,
216 int64 end_index,
220 CHECK_LE(start_index, end_index);
    [all...]
llvm_loop.h 42 // start_index and end_index are the loop bounds (end_index is not inclusive).
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/autotest/client/cros/audio/
audio_quality_measurement.py 380 sine wave is between [start_index, end_index)
391 @returns: A tuple composed of (start_index, end_index)
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,
418 @param end_index: End index of sine wave.
445 (index < end_index + rate * NEAR_SINE_START_OR_END_SECS)):
481 def delay_detection(start_index, end_index,
    [all...]
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):
  /tools/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/
audio_quality_measurement.py 398 sine wave is between [start_index, end_index)
411 A tuple composed of (start_index, end_index)
417 start_index, end_index = length - 1, 0
424 end_index = max(end_index, right_border + 1)
425 return (start_index, end_index)
428 def noise_detection(start_index, end_index, block_amplitude, average_amplitude,
438 end_index: End index of sine wave.
467 (index < end_index + rate * NEAR_SINE_START_OR_END_SECS)):
504 def delay_detection(start_index, end_index, block_amplitude, average_amplitude
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
disassembler.cc 117 uint64_t end_index; local
121 end_index = std::min(section_size, next_address.get());
123 end_index = section_size;
127 if (start_index == end_index) {
136 code_size_bytes += end_index - start_index;
140 while (index < end_index) {
parallel_loop_emitter.cc 49 llvm::Value* end_index = (*dynamic_loop_bounds_)[bounds_index].second; local
53 start_index, end_index);
59 /*end_index=*/shape_.dimensions(dimension),
  /system/core/base/
strings.cpp 57 size_t end_index = s.size() - 1; local
68 while (end_index >= start_index) {
69 if (!isspace(s[end_index])) {
72 end_index--;
76 if (end_index < start_index) {
79 // Start_index is the first non-space, end_index is the last one.
80 return s.substr(start_index, end_index - start_index + 1);
  /external/v8/src/heap/
marking.h 109 // Sets all bits in the range [start_index, end_index).
110 void SetRange(uint32_t start_index, uint32_t end_index) {
114 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2;
115 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index);
132 // Clears all bits in the range [start_index, end_index).
133 void ClearRange(uint32_t start_index, uint32_t end_index) {
137 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2;
138 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index);
155 // Returns true if all bits in the range [start_index, end_index) are set.
156 bool AllBitsSetInRange(uint32_t start_index, uint32_t end_index) {
    [all...]
  /external/ply/ply/ply/
ygen.py 22 for end_index, line in srclines:
26 return (start_index + 1, end_index)
  /external/opencv/cv/src/
cvapprox.cpp 558 slice.end_index = count - 1;
603 slice.end_index = right_slice.start_index += slice.start_index;
606 right_slice.end_index = slice.start_index;
607 if( right_slice.end_index < right_slice.start_index )
608 right_slice.end_index += count;
622 cvSetSeqReaderPos( &reader, slice.end_index );
628 if( slice.end_index > slice.start_index + 1 )
637 for( i = slice.start_index + 1; i < slice.end_index; i++ )
653 assert( slice.end_index > slice.start_index );
666 right_slice.end_index = slice.end_index
    [all...]
  /external/libchrome/base/strings/
string_split.cc 143 for (size_type begin_index = 0, end_index = 0; end_index != Piece::npos;
144 begin_index = end_index + delimiter.size()) {
145 end_index = input.find(delimiter, begin_index);
146 Piece term = end_index == Piece::npos
148 : input.substr(begin_index, end_index - begin_index);
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.h 210 int32_t end_index,
245 int32_t end_index,
readable_font_data.cc 229 int32_t end_index,
244 int32_t location_end = ReadUShort(end_index + location * end_offset);
284 int32_t end_index,
300 int32_t location_end = ReadULongAsInt(end_index + location * end_offset);
  /tools/test/connectivity/acts/framework/tests/
audio_quality_measurement_unittest.py 103 end_index = int(self.delay_end_time[i] * self.rate)
104 for j in range(start_index, end_index):
110 end_index = int(silence_before_playback_end_time * self.rate)
111 for i in range(0, end_index):
136 end_index = int(self.burst_end_time[i] * self.rate)
137 for j in range(start_index, end_index):
146 end_index = int(end_time[i] * self.rate)
147 for j in range(start_index, end_index):
  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
split_handler_ops.cc 191 int end_index = partition_boundaries[root_idx + 1]; variable
193 for (int64 bucket_idx = start_index; bucket_idx < end_index;
204 for (int64 bucket_idx = start_index; bucket_idx < end_index;
401 const int end_index = variable
405 bucket_ids_and_dimensions(end_index - 1, 1))
409 << bucket_ids_and_dimensions(end_index - 1, 0) << " "
410 << bucket_ids_and_dimensions(end_index - 1, 1);
419 for (int64 bucket_idx = start_index; bucket_idx < end_index;
427 for (int64 element_idx = start_index; element_idx < end_index;
604 int end_index = partition_boundaries[non_empty_partitions[root_idx] + 1] variable
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 176 GLuint end_index; local
241 end_index = prims[prim_num].start + prims[prim_num].count;
249 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
261 if (sub_end_index >= end_index) {
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_table_accessor.cc 27 if (partition.end_index() != -1 &&
28 partition.end_index() < partition.start_index()) {
215 if (partition_.end_index() == -1) {
222 static_cast<int64>(partition_.end_index() -
376 (partition_.end_index() != -1 &&
377 partition_.end_index() <
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
nack.cc 101 size_t end_index = nack_index + num_nack_fields; local
102 for (; nack_index < end_index; ++nack_index) {
transport_feedback.cc 690 const size_t end_index = kHeaderLength + header.payload_size_bytes; local
700 if (index + 2 > end_index) {
722 if (index + 1 > end_index) {
730 if (index + 2 > end_index) {
743 RTC_DCHECK_GE(index, end_index - 3);
744 RTC_DCHECK_LE(index, end_index);
  /test/vts/utils/python/library/
elf_parser.py 175 end_index = buf.find('\0')
176 if end_index < 0:
179 ret += buf[:end_index]
  /art/runtime/gc/accounting/
space_bitmap.cc 136 const uintptr_t end_index = OffsetToIndex(end_offset); local
138 (end_index - start_index) * sizeof(*bitmap_begin_));

Completed in 651 milliseconds

1 2 3