/external/v4l2_codec2/tests/c2_e2e_test/jni/ |
D | encoded_data_helper.cpp | 53 std::string GetBytesForNextAU(const std::string& data, size_t* next_pos) { in GetBytesForNextAU() argument 56 size_t start_pos = *next_pos; in GetBytesForNextAU() 60 *next_pos = data.size(); in GetBytesForNextAU() 74 *next_pos = pos; in GetBytesForNextAU() 80 std::string GetBytesForNextFrame(const std::string& data, size_t* next_pos) { in GetBytesForNextFrame() argument 82 size_t pos = *next_pos; in GetBytesForNextFrame() 90 *next_pos = pos + frame_size; in GetBytesForNextFrame() 141 size_t next_pos = 0; in SliceToFragments() local 143 while (next_pos < data.size()) { in SliceToFragments() 148 fragment->data = GetBytesForNextAU(data, &next_pos); in SliceToFragments() [all …]
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/tensorflow/third_party/absl/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/webrtc/third_party/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/cronet/third_party/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 75 size_t next_pos = static_cast<size_t>(-1); in SetUpStrings() local 80 if (needlepos != std::string::npos && needlepos < next_pos) { in SetUpStrings() 81 next_pos = needlepos; in SetUpStrings() 86 if (next_pos > after_replacing_many->size()) break; in SetUpStrings() 87 after_replacing_many->replace(next_pos, strlen(needle_string), in SetUpStrings() 89 next_pos += strlen(replacement_string); in SetUpStrings() 90 pos = next_pos; in SetUpStrings()
|
/external/google-breakpad/src/common/linux/ |
D | symbol_upload.cc | 52 string::size_type cur_pos = 0, next_pos = 0; in TokenizeByChar() local 53 while ((next_pos = source_string.find(c, cur_pos)) != string::npos) { in TokenizeByChar() 54 if (next_pos != cur_pos) in TokenizeByChar() 55 results->push_back(source_string.substr(cur_pos, next_pos - cur_pos)); in TokenizeByChar() 56 cur_pos = next_pos + 1; in TokenizeByChar() 58 if (cur_pos < source_string.size() && next_pos != cur_pos) in TokenizeByChar()
|
/external/cronet/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_generator.cc | 129 std::size_t next_pos = options[i].second.find_first_of("+", pos); in Generate() local 130 if (next_pos == std::string::npos) { in Generate() 131 next_pos = options[i].second.size(); in Generate() 133 if (next_pos > pos) in Generate() 135 .insert(options[i].second.substr(pos, next_pos - pos)); in Generate() 136 pos = next_pos + 1; in Generate()
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | generator.cc | 129 std::size_t next_pos = options[i].second.find_first_of("+", pos); in Generate() local 130 if (next_pos == std::string::npos) { in Generate() 131 next_pos = options[i].second.size(); in Generate() 133 if (next_pos > pos) in Generate() 135 .insert(options[i].second.substr(pos, next_pos - pos)); in Generate() 136 pos = next_pos + 1; in Generate()
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | match_tpl.h | 215 Pos pos, next_pos; in LONGEST_MATCH() local 222 next_pos = cur_match; in LONGEST_MATCH() 225 if (pos < next_pos) { in LONGEST_MATCH() 229 next_pos = pos; in LONGEST_MATCH() 234 cur_match = next_pos; in LONGEST_MATCH()
|
/external/libxaac/decoder/ |
D | ixheaacd_env_calc.h | 65 WORD32 start_pos, WORD32 next_pos, 93 WORD next_pos, WORD shift, FLAG low_pow_flag); 97 WORD next_pos, WORD shift, FLAG low_pow_flag); 111 VOID ixheaacd_enery_calc_per_subband_dec(WORD32 start_pos, WORD32 next_pos, 120 WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start,
|
D | ixheaacd_env_calc.c | 1094 WORD32 next_pos, WORD32 shift, in ixheaacd_adjust_scale_dec() argument 1106 for (l = start_pos; l < next_pos; l++) { in ixheaacd_adjust_scale_dec() 1115 for (l = start_pos; l < next_pos; l++) { in ixheaacd_adjust_scale_dec() 1125 for (l = start_pos; l < next_pos; l++) { in ixheaacd_adjust_scale_dec() 1137 for (l = start_pos; l < next_pos; l++) { in ixheaacd_adjust_scale_dec() 1155 WORD32 next_pos, FLAG low_pow_flag) { in ixheaacd_expsubbandsamples_dec() argument 1170 for (l = start_pos; l < next_pos; l++) { in ixheaacd_expsubbandsamples_dec() 1182 for (l = start_pos; l < next_pos; l++) { in ixheaacd_expsubbandsamples_dec() 1204 VOID ixheaacd_enery_calc_per_subband_dec(WORD32 start_pos, WORD32 next_pos, in ixheaacd_enery_calc_per_subband_dec() argument 1220 WORD32 num_cols = next_pos - start_pos; in ixheaacd_enery_calc_per_subband_dec() [all …]
|
/external/rust/crates/regex/src/ |
D | backtrack.rs | 156 at = self.input.at(at.next_pos()); in exec_() 237 at = self.input.at(at.next_pos()); in step() 245 at = self.input.at(at.next_pos()); in step() 254 at = self.input.at(at.next_pos()); in step()
|
/external/jsoncpp/devtools/ |
D | antglob.py | 70 next_pos = 0 76 if match.start(0) != next_pos: 90 next_pos = match.end()
|
/external/deqp-deps/amber/src/ |
D | type_parser.cc | 41 size_t next_pos = data.rfind('_', cur_pos); in Parse() local 42 if (next_pos == std::string::npos) { in Parse() 50 if (!ProcessChunk(data.substr(next_pos + 1, cur_pos - next_pos))) in Parse() 53 cur_pos = next_pos - 1; in Parse()
|
/external/libxaac/decoder/armv7/ |
D | ixheaacd_function_selector_arm_non_neon.c | 115 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 120 WORD32 start_pos, WORD32 next_pos, 124 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|
D | ixheaacd_function_selector_armv7.c | 126 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 131 WORD32 start_pos, WORD32 next_pos, 135 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|
/external/aac/libSBRdec/src/ |
D | env_calc.cpp | 179 int highSubband, int start_pos, int next_pos, 185 UCHAR *freqBandTable, int start_pos, int next_pos, 1870 int next_pos, /*!< End of time rage (QMF-timeslot) */ in rescaleSubbandSamples() argument 1877 for (int l = start_pos; l < next_pos; l++) { in rescaleSubbandSamples() 1882 for (int l = start_pos; l < next_pos; l++) { in rescaleSubbandSamples() 1915 int next_pos /*!< End of time rage (QMF-timeslot) */ in maxSubbandSample() argument 1924 for (int l = start_pos; l < next_pos; l++) { in maxSubbandSample() 1938 for (int l = start_pos; l < next_pos; l++) { in maxSubbandSample() 1990 int next_pos, /*!< Last QMF-slot of current envelope + 1 */ in calcNrgPerSubband() argument 2002 invWidth = FX_DBL2FX_SGL(GetInvInt(next_pos - start_pos)); in calcNrgPerSubband() [all …]
|
/external/libxaac/decoder/generic/ |
D | ixheaacd_function_selector_generic.c | 128 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 133 WORD32 start_pos, WORD32 next_pos, 137 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|
/external/libxaac/decoder/x86_64/ |
D | ixheaacd_function_selector_x86_64.c | 124 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 129 WORD32 start_pos, WORD32 next_pos, 133 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|
/external/libxaac/decoder/armv8/ |
D | ixheaacd_function_selector_armv8.c | 124 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 129 WORD32 start_pos, WORD32 next_pos, 133 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|
/external/libxaac/decoder/x86/ |
D | ixheaacd_function_selector_x86.c | 124 WORD32 start_pos, WORD32 next_pos, WORD32 shift, 129 WORD32 start_pos, WORD32 next_pos, 133 (WORD32 start_pos, WORD32 next_pos, WORD32 sub_band_start, WORD32 sub_band_end,
|