HomeSort by relevance Sort by last modified time
    Searched refs:end_index (Results 1 - 25 of 56) 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);
  /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/autotest/client/cros/audio/
audio_quality_measurement.py 373 sine wave is between [start_index, end_index)
384 @returns: A tuple composed of (start_index, end_index)
390 start_index, end_index = length - 1 , 0
397 end_index = max(end_index, right_border + 1)
398 return (start_index, end_index)
401 def noise_detection(start_index, end_index,
411 @param end_index: End index of sine wave.
438 (index < end_index + rate * NEAR_SINE_START_OR_END_SECS)):
474 def delay_detection(start_index, end_index,
    [all...]
audio_quality_measurement_unittest.py 92 end_index = int(self.delay_end_time[i] * self.rate)
93 for j in xrange(start_index,end_index):
100 end_index = int(silence_before_playback_end_time * self.rate)
101 for i in xrange(0, end_index):
128 end_index = int(self.burst_end_time[i] * self.rate)
129 for j in xrange(start_index, end_index):
139 end_index = int(end_time[i] * self.rate)
140 for j in xrange(start_index,end_index):
  /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/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 172 GLuint end_index; local
203 end_index = prims[prim_num].start + prims[prim_num].count;
211 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
223 if (sub_end_index >= 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);
  /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-testcase/vndk/dependency/
elf_parser.py 174 end_index = buf.find('\0')
175 if end_index < 0:
178 ret += buf[:end_index]
  /external/libchrome/base/json/
json_parser.cc 833 int end_index = start_index; local
842 end_index = index_;
855 end_index = index_;
867 end_index = index_;
891 StringPiece num_string(num_start, end_index - start_index);
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_index;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_index;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 244 int end_index = 0; local
246 end_index++;
247 return end_index;
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/v8/testing/gtest/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_index;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;

Completed in 1597 milliseconds

1 2 3