HomeSort by relevance Sort by last modified time
    Searched refs:squares (Results 1 - 17 of 17) sorted by null

  /external/skia/gm/
thinrects.cpp 100 constexpr SkRect squares[] = { local
110 for (size_t j = 0; j < SK_ARRAY_COUNT(squares); ++j) {
111 canvas->drawRect(squares[j], p);
  /external/skqp/gm/
thinrects.cpp 100 constexpr SkRect squares[] = { local
110 for (size_t j = 0; j < SK_ARRAY_COUNT(squares); ++j) {
111 canvas->drawRect(squares[j], p);
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
object_detector.h 49 // in the position given and of square_size, and the remaining squares are added
52 // Squares that do not fall completely within image_bounds will not be added.
59 std::vector<BoundingSquare>* const squares) {
68 squares->push_back(descriptor_area);
72 LOGV("Created %zu squares starting from size %.2f to min size %.2f "
74 squares->size(), starting_square_size, smallest_square_size,
object_tracker.h 232 mutable std::vector<BoundingSquare> squares; member in class:tf_tracking::ObjectTracker
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_generators.py 1126 squares = [" " for j in range(n)]
1127 squares[row2col[i]] = "Q"
1128 print "|" + "|".join(squares) + "|"
    [all...]
  /external/python/cpython2/Lib/test/
test_generators.py 1127 squares = [" " for j in range(n)]
1128 squares[row2col[i]] = "Q"
1129 print "|" + "|".join(squares) + "|"
    [all...]
  /external/fec/
sumsq_mmx_assist.s 7 # Evaluate sum of squares of signed 16-bit input samples
49 # Evaluate sum of squares of signed 16-bit input samples
sumsq_sse2_assist.s 6 # Evaluate sum of squares of signed 16-bit input samples
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
tree_utils_test.cc 44 Tensor squares = test::AsTensor<float>({29, 12}, {2}); local
47 squares.unaligned_flat<float>(), 3),
152 // lower the variance by lowering one of the squares just a little.
tree_utils.h 98 float WeightedVariance(const T1& sums, const T2& squares, float count) {
100 const auto e_x2 = squares / count;
  /external/tensorflow/tensorflow/core/graph/
graph_partition_test.cc 575 std::vector<ops::Square> squares; local
577 squares.emplace_back(root.WithOpName(strings::StrCat("s", i)),
579 squares.back().node()->AddAttr("_start_time", 50 - (i + 1));
582 // Create addn to sum all squares.
584 for (const auto& s : squares) inputs.push_back(s);
598 ASSERT_EQ(1 + squares.size() + placeholders.size(), nodes.size());
605 for (int i = 0; i < squares.size(); ++i) {
670 std::vector<Square> squares; local
671 squares.reserve(indexes.size());
673 squares.emplace_back(root.WithOpName(strings::StrCat("s", i))
    [all...]
  /external/ImageMagick/MagickCore/
segment.c 288 *squares;
515 squares=(double *) AcquireQuantumMemory(513UL,sizeof(*squares));
516 if (squares == (double *) NULL)
519 squares+=255;
521 squares[i]=(double) i*(double) i;
615 distance_squared=squares[(ssize_t) ScaleQuantumToChar(
617 ScaleQuantumToChar(ClampToQuantum(p->red))]+squares[(ssize_t)
619 ScaleQuantumToChar(ClampToQuantum(p->green))]+squares[(ssize_t)
626 distance_squared=squares[(ssize_t) ScaleQuantumToChar
282 *squares; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_error_sse2.asm 36 ; individual errors are max. 15bit+sign, so squares are 30bit, and
92 ; individual errors are max. 15bit+sign, so squares are 30bit, and
  /external/libaom/libaom/av1/encoder/x86/
error_sse2.asm 38 ; individual errors are max. 15bit+sign, so squares are 30bit, and
  /external/python/cpython3/Lib/test/
test_generators.py     [all...]
  /external/mesa3d/docs/specs/OLD/
MESA_sprite_point.spec 73 squares. One could define rotated texture images if desired. A 3D
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
grow_stats.cc 794 // --------------------- Least Squares Regression --------------------------- //
819 const auto& squares = cand.left_stats().regression().mean_output_squares(); local
822 left_square(split_num, i) = squares.value(i).float_value();
851 auto* squares = cand->mutable_left_stats() local
856 squares->add_value()->set_float_value(left_square(split_num, i));
    [all...]

Completed in 1332 milliseconds