Home
last modified time | relevance | path

Searched refs:label_index (Results 1 – 16 of 16) sorted by relevance

/external/rust/crates/codespan-reporting/src/term/
Drenderer.rs256 Some((label_index, label_style, label)) if *label_index == label_column => { in render_snippet_source()
366 for (label_index, label) in single_labels.iter().enumerate() { in render_snippet_source()
378 trailing_label = Some((label_index, label)); in render_snippet_source()
388 .filter(|(label_index, _)| *label_index != trailing_label_index) in render_snippet_source()
555 Some((i, (label_index, ls, label))) if *label_index == label_column => { in render_snippet_source()
942 Some((label_index, ls, label)) if *label_index == label_column => match label { in inner_gutter()
Dviews.rs188 let label_index = labeled_file.num_multi_labels; in render() localVariable
201 label_index, in render()
225 .push((label_index, label.style, MultiLabel::Left)); in render()
251 label_index, in render()
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp138 for (uint32_t label_index = 1; label_index < terminator->NumOperands(); in RedirectEdge() local
139 label_index += 2) { in RedirectEdge()
140 operand_indices.push_back(label_index); in RedirectEdge()
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp138 for (uint32_t label_index = 1; label_index < terminator->NumOperands(); in RedirectEdge() local
139 label_index += 2) { in RedirectEdge()
140 operand_indices.push_back(label_index); in RedirectEdge()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/reduce/
Dstructured_loop_to_selection_reduction_opportunity.cpp138 for (uint32_t label_index = 1; label_index < terminator->NumOperands(); in RedirectEdge() local
139 label_index += 2) { in RedirectEdge()
140 operand_indices.push_back(label_index); in RedirectEdge()
/external/tensorflow/tensorflow/examples/speech_commands/
Dlabel_wav.cc170 const int label_index = indices_flat(pos); in main() local
172 LOG(INFO) << labels_list[label_index] << " (" << label_index in main()
Dinput_data.py603 label_index = self.word_to_index[sample['label']]
604 labels[i - offset] = label_index
677 label_index = self.word_to_index[sample['label']]
678 labels.append(words_list[label_index])
/external/toolchain-utils/cros_utils/
Dtabulator.py362 for label_index in range(2, len(row)):
363 row[label_index] = [0] * iterations
368 for label_index in range(2, len(cur_row)):
371 bench_runs = cur_row[label_index][1]
378 and row[label_index][index] is not None
380 row[label_index][index] += bench_runs[index]
382 row[label_index][index] = None
385 for label_index in range(2, len(row)):
386 row[label_index] = [None] * iterations
389 for label_index in range(2, len(row)):
[all …]
/external/tensorflow/tensorflow/examples/multibox_detector/
Dmain.cc303 const int label_index = indices_flat(pos); in PrintTopDetections() local
307 DecodeLocation(&locations_encoded(label_index * 4), in PrintTopDetections()
308 &locations[label_index * 8], decoded_location); in PrintTopDetections()
320 << "(" << label_index << ") score: " << DecodeScore(score); in PrintTopDetections()
/external/tensorflow/tensorflow/examples/label_image/
Dmain.cc250 const int label_index = indices_flat(pos); in PrintTopLabels() local
252 LOG(INFO) << labels[label_index] << " (" << label_index << "): " << score; in PrintTopLabels()
/external/toolchain-utils/crosperf/
Dresults_organizer.py183 label_index = label_indices[benchmark_run.label.name]
184 cur_label_list = result[benchmark.name][label_index]
Dresults_report.py149 label_index = self._label_indices[label]
151 _AppendUntilLengthIs(list, ben_data[event], label_index + 1)
152 data_for_label = ben_data[event][label_index]
/external/blktrace/iowatcher/
Dmain.c141 static int label_index = 0; variable
508 if (cur == label_index) { in set_trace_label()
510 label_index++; in set_trace_label()
517 if (cur == label_index) { in set_trace_label()
519 label_index++; in set_trace_label()
/external/vixl/test/aarch32/
Dtest-assembler-aarch32.cc3564 uint32_t label_index = static_cast<uint32_t>(mrand48()) % label_count; in TEST_T32() local
3568 if (!l[label_index].IsBound()) { in TEST_T32()
3569 __ Bind(&l[label_index]); in TEST_T32()
3578 __ Cbz(r0, &l[label_index]); in TEST_T32()
3583 __ Cbnz(r0, &l[label_index]); in TEST_T32()
3590 __ B(&l[label_index], kNear); in TEST_T32()
3595 __ B(ne, &l[label_index], kNear); in TEST_T32()
3693 uint32_t label_index = static_cast<uint32_t>(mrand48()) % label_count; in NearBranchAndLiteralFuzzHelper() local
3698 if (!labels[label_index].IsBound()) { in NearBranchAndLiteralFuzzHelper()
3699 __ Bind(&labels[label_index]); in NearBranchAndLiteralFuzzHelper()
[all …]
/external/autotest/tko/
Ddb.py633 for label_index in test.labels:
634 data = {'test_id': test_idx, 'testlabel_id': label_index}
/external/perfetto/src/trace_processor/importers/proto/
Dtrack_event_parser.cc1616 int label_index = 0; in ParseProcessDescriptor() local
1620 key.append(std::to_string(label_index++)); in ParseProcessDescriptor()