/third_party/boost/libs/move/test/ |
D | bench_merge.cpp | 113 bool measure_algo(T *elements, std::size_t element_count, std::size_t split_pos, std::size_t alg, n… in measure_algo() argument 124 … std::inplace_merge(elements, elements+split_pos, elements+element_count, order_type_less()); in measure_algo() 127 …boost::movelib::adaptive_merge(elements, elements+split_pos, elements+element_count, order_type_le… in measure_algo() 130 … adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type_less() in measure_algo() 134 … adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type_less() in measure_algo() 138 … adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type_less() in measure_algo() 142 … adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type_less() in measure_algo() 146 …boost::movelib::merge_bufferless_ONlogN(elements, elements+split_pos, elements+element_count, orde… in measure_algo() 149 …std_like_adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type… in measure_algo() 153 …std_like_adaptive_merge_buffered( elements, elements+split_pos, elements+element_count, order_type… in measure_algo() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | rtpdec_mpa_robust.c | 33 int split_pos, split_buf_size, split_pkts; member 75 buf = &data->split_buf[data->split_pos]; in mpa_robust_parse_packet() 76 len = data->split_buf_size - data->split_pos; in mpa_robust_parse_packet() 101 data->split_pos += header_size + adu_size; in mpa_robust_parse_packet() 103 if (data->split_pos == data->split_buf_size) { in mpa_robust_parse_packet() 136 data->split_pos = 0; in mpa_robust_parse_packet()
|
D | rtpdec_xiph.c | 49 int split_pos, split_buf_len, split_buf_size; member 69 if (!data->split_buf || data->split_pos + 2 > data->split_buf_len || in xiph_handle_packet() 74 pkt_len = AV_RB16(data->split_buf + data->split_pos); in xiph_handle_packet() 75 data->split_pos += 2; in xiph_handle_packet() 76 if (pkt_len > data->split_buf_len - data->split_pos) { in xiph_handle_packet() 85 memcpy(pkt->data, data->split_buf + data->split_pos, pkt_len); in xiph_handle_packet() 86 data->split_pos += pkt_len; in xiph_handle_packet() 149 data->split_pos = 0; in xiph_handle_packet()
|
/third_party/mindspore/mindspore/ccsrc/cxx_api/ |
D | akg_kernel_register.cc | 38 auto split_pos = dir.find_last_of('/'); in RegAllOpFromFile() local 39 if (dir.empty() || split_pos == std::string::npos) { in RegAllOpFromFile() 44 dir = dir.substr(0, split_pos) + "/../config/op_info.config"; in RegAllOpFromFile()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/source/ |
D | usps_op.cc | 249 size_t split_pos = item.find(":"); in ParseLine() local 251 …CHECK_FAIL_RETURN_UNEXPECTED(split_pos != std::string::npos, "Invalid data, USPS data file is corr… in ParseLine() 253 CHECK_FAIL_RETURN_UNEXPECTED(std::stoi(item.substr(0, split_pos)) == (split_num - 1), in ParseLine() 256 std::string pixel_str = item.substr(split_pos + 1, item.length() - split_pos); in ParseLine()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | merge_return_pass.cpp | 825 auto split_pos = start_block->begin(); in CreateSingleCaseSwitch() local 826 while (split_pos->opcode() == SpvOpVariable) { in CreateSingleCaseSwitch() 827 ++split_pos; in CreateSingleCaseSwitch() 831 start_block->SplitBasicBlock(context(), TakeNextId(), split_pos); in CreateSingleCaseSwitch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 825 auto split_pos = start_block->begin(); in CreateSingleCaseSwitch() local 826 while (split_pos->opcode() == SpvOpVariable) { in CreateSingleCaseSwitch() 827 ++split_pos; in CreateSingleCaseSwitch() 831 start_block->SplitBasicBlock(context(), TakeNextId(), split_pos); in CreateSingleCaseSwitch()
|
/third_party/spirv-tools/source/opt/ |
D | merge_return_pass.cpp | 820 auto split_pos = start_block->begin(); in CreateSingleCaseSwitch() local 821 while (split_pos->opcode() == SpvOpVariable) { in CreateSingleCaseSwitch() 822 ++split_pos; in CreateSingleCaseSwitch() 826 start_block->SplitBasicBlock(context(), TakeNextId(), split_pos); in CreateSingleCaseSwitch()
|