Searched defs:label_count (Results 1 - 9 of 9) sorted by relevance

/external/compiler-rt/test/dfsan/
H A Dlabel_count.c37 size_t label_count; local
40 label_count = dfsan_get_label_count();
41 assert(0 == label_count);
48 label_count = dfsan_get_label_count();
49 assert(1u == label_count);
56 label_count = dfsan_get_label_count();
57 assert(2u == label_count);
63 label_count = dfsan_get_label_count();
64 assert(3u == label_count);
69 label_count
[all...]
/external/tensorflow/tensorflow/contrib/lite/examples/label_image/
H A Dlabel_image.cc206 size_t label_count; local
208 if (ReadLabelsFile(s->labels_file_name, &labels, &label_count) != kTfLiteOk)
/external/tensorflow/tensorflow/examples/label_image/
H A Dmain.cc234 size_t label_count; local
236 ReadLabelsFile(labels_file_name, &labels, &label_count);
241 const int how_many_labels = std::min(5, static_cast<int>(label_count));
/external/tensorflow/tensorflow/contrib/pi_examples/label_image/
H A Dlabel_image.cc260 size_t label_count; local
262 ReadLabelsFile(labels_file_name, &labels, &label_count);
267 const int how_many_labels = std::min(5, static_cast<int>(label_count));
/external/tensorflow/tensorflow/examples/multibox_detector/
H A Dmain.cc264 size_t label_count; local
266 ReadLocationsFile(labels_file_name, &locations, &label_count);
271 CHECK_EQ(label_count, num_boxes * 8);
274 std::min(num_detections, static_cast<int>(label_count));
/external/tensorflow/tensorflow/contrib/pi_examples/camera/
H A Dcamera.cc309 const std::vector<string>& labels, int label_count,
311 const int how_many_labels = std::min(5, static_cast<int>(label_count));
448 size_t label_count; local
450 ReadLabelsFile(labels_file_name, &labels, &label_count);
517 PrintTopLabels(outputs, labels, label_count, print_threshold * 0.01f);
308 PrintTopLabels(const std::vector<Tensor>& outputs, const std::vector<string>& labels, int label_count, float print_threshold) argument
/external/vixl/test/aarch32/
H A Dtest-assembler-aarch32.cc2641 for (int label_count = 128; label_count < 2048; label_count *= 2) {
2642 Label* l = new Label[label_count];
2644 for (int i = 0; i < label_count; i++) {
2648 for (int i = 0; i < label_count; i++) {
2656 for (int i = label_count - 1; i >= 0; i--) {
3536 const int label_count = 31; local
3557 l = new Label[label_count];
3565 uint32_t label_index = static_cast<uint32_t>(mrand48()) % label_count;
3633 const int label_count = 15; local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c952 int label_count; local
976 label_count = vp8_mbsplit_count[segmentation];
982 label_mv_thresh = 1 * bsi->mvthresh / label_count;
991 for (i = 0; i < label_count; ++i) {
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rdopt.c1880 const int label_count = 4; local
1911 label_mv_thresh = 1 * bsi->mvthresh / label_count;

Completed in 1209 milliseconds