Searched defs:end_index (Results 1 - 25 of 28) sorted by relevance

12

/external/ceres-solver/internal/ceres/
H A Dsplit.cc96 string::size_type begin_index, end_index; local
99 end_index = full.find_first_of(delim, begin_index);
100 if (end_index == string::npos) {
104 *result++ = full.substr(begin_index, (end_index - begin_index));
105 begin_index = full.find_first_not_of(delim, end_index);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_primitive_restart.c172 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/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dnack.cc101 size_t end_index = nack_index + num_nack_fields; local
102 for (; nack_index < end_index; ++nack_index) {
H A Dtransport_feedback.cc690 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);
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_query.c389 static unsigned r600_query_read_result(char *map, unsigned start_index, unsigned end_index, argument
397 end = (uint64_t)current_result[end_index] |
398 (uint64_t)current_result[end_index+1] << 32;
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_hw_context.c261 static unsigned r600_query_read_result(char *map, unsigned start_index, unsigned end_index, argument
269 end = (uint64_t)current_result[end_index] |
270 (uint64_t)current_result[end_index+1] << 32;
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc171 int32_t end_index,
186 int32_t location_end = ReadUShort(end_index + location * end_offset);
226 int32_t end_index,
242 int32_t location_end = ReadULongAsInt(end_index + location * end_offset);
169 SearchUShort(int32_t start_index, int32_t start_offset, int32_t end_index, int32_t end_offset, int32_t length, int32_t key) argument
224 SearchULong(int32_t start_index, int32_t start_offset, int32_t end_index, int32_t end_offset, int32_t length, int32_t key) argument
/external/squashfs-tools/kernel/fs/squashfs/
H A Dfile.c386 int end_index = start_index | mask; local
452 for (i = start_index; i <= end_index && bytes > 0; i++,
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/libchrome/base/json/
H A Djson_parser.cc827 int end_index = start_index; local
836 end_index = index_;
849 end_index = index_;
861 end_index = index_;
885 StringPiece num_string(num_start, end_index - start_index);
/external/libweave/third_party/chromium/base/json/
H A Djson_parser.cc822 int end_index = start_index; local
831 end_index = index_;
844 end_index = index_;
856 end_index = index_;
880 StringPiece num_string(num_start, end_index - start_index);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h244 int end_index = 0; local
246 end_index++;
247 return end_index;
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc172 string::size_type begin_index, end_index; local
175 end_index = full.find_first_of(delim, begin_index);
176 if (end_index == string::npos) {
180 *result++ = full.substr(begin_index, (end_index - begin_index));
181 begin_index = full.find_first_not_of(delim, end_index);
209 string::size_type begin_index, end_index; local
213 end_index = full.find_first_of(delim, begin_index);
214 if (end_index == string::npos) {
218 *result++ = full.substr(begin_index, (end_index - begin_index));
219 begin_index = end_index
[all...]
/external/squashfs-tools/kernel-2.4/fs/squashfs/
H A Dinode.c1465 int end_index = start_index | mask; local
1511 for (i = start_index; i <= end_index && byte_offset < bytes;
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp375 int min_x, max_x, start_index, end_index; local
380 end_index = 1;
385 end_index = 0;
396 FX_FLOAT r_unit = (r[end_index] - r[start_index]) / (max_x - min_x);
397 FX_FLOAT g_unit = (g[end_index] - g[start_index]) / (max_x - min_x);
398 FX_FLOAT b_unit = (b[end_index] - b[start_index]) / (max_x - min_x);
/external/v8/src/interpreter/
H A Dbytecode-array-builder.cc1137 int end_index) {
1141 // greater than end_index.
1142 index = free_temporaries_.upper_bound(end_index);
1136 BorrowTemporaryRegisterNotInRange(int start_index, int end_index) argument
/external/opencv/cxcore/include/
H A Dcxtypes.h1092 int start_index, end_index; member in struct:CvSlice
1100 slice.end_index = end;
/external/opencv3/modules/core/include/opencv2/core/
H A Dtypes_c.h1100 int start_index, end_index; member in struct:CvSlice
1103 CvSlice(int start = 0, int end = 0) : start_index(start), end_index(end) {}
1105 operator cv::Range() const { return (start_index == 0 && end_index == CV_WHOLE_SEQ_END_INDEX ) ? cv::Range::all() : cv::Range(start_index, end_index); }
1114 slice.end_index = end;
/external/v8/src/regexp/
H A Djsregexp.cc1788 int end_index,
1800 for (int i = start_index; i <= end_index; i++) {
1823 for (int i = start_index; i < end_index; i++) {
1846 int end_index,
1866 for (int j = cut_index + 1; j < end_index; j++) {
1876 int end_index,
1884 int last = ranges->at(end_index) - 1;
1888 while (*new_start_index < end_index) {
1903 int binary_chop_index = (end_index + start_index) / 2;
1909 end_index
1784 EmitUseLookupTable( RegExpMacroAssembler* masm, ZoneList<int>* ranges, int start_index, int end_index, int min_char, Label* fall_through, Label* even_label, Label* odd_label) argument
1843 CutOutRange(RegExpMacroAssembler* masm, ZoneList<int>* ranges, int start_index, int end_index, int cut_index, Label* even_label, Label* odd_label) argument
1874 SplitSearchSpace(ZoneList<int>* ranges, int start_index, int end_index, int* new_start_index, int* new_end_index, int* border) argument
1944 GenerateBranches(RegExpMacroAssembler* masm, ZoneList<int>* ranges, int start_index, int end_index, uc16 min_char, uc16 max_char, Label* fall_through, Label* even_label, Label* odd_label) argument
2187 int end_index = range_boundaries->length() - 1; local
[all...]
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h8741 int end_index = 0; local
8743 end_index++;
8744 return end_index;
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h10244 int end_index = 0; local
10246 end_index++;
10247 return end_index;

Completed in 1333 milliseconds

12