HomeSort by relevance Sort by last modified time
    Searched refs:Square (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/clang/test/PCH/
enum.h 10 Square,
  /development/samples/ApiDemos/src/com/example/android/apis/app/
MaxAspectRatio.java 23 public static class Square extends MaxAspectRatio {
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
DetectLoggerNameMismatchTest.java 115 Square square = new Square(); local
116 assertEquals("org.slf4j.Square", square.logger.getName());
133 class Square extends ShapeBase {
  /external/libchrome/crypto/
p224.cc 186 // Square computes *out = a*a
190 void Square(FieldElement* out, const FieldElement& a) {
248 Square(&f1, in); // 2
250 Square(&f1, f1); // 2**3 - 2
252 Square(&f2, f1); // 2**4 - 2
253 Square(&f2, f2); // 2**5 - 4
254 Square(&f2, f2); // 2**6 - 8
256 Square(&f2, f1); // 2**7 - 2
258 Square(&f2, f2);
261 Square(&f3, f2); // 2**13 -
    [all...]
  /development/samples/OpenGL/HelloOpenGLES10/src/com/example/android/opengl/
MyGLRenderer.java 36 private Square mSquare;
45 mSquare = new Square();
61 // Draw square
Square.java 26 * A two-dimensional square for use as a drawn object in OpenGL ES 1.0/1.1.
28 public class Square {
48 public Square() {
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
square_test.py 33 bijector = bijectors.Square(validate_args=True)
34 self.assertEqual("square", bijector.name)
39 y = np.square(x)
54 bijector = bijectors.Square(validate_args=True)
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
square.py 15 """Square bijector."""
31 "Square",
35 class Square(bijector.Bijector):
44 bijector.Square().forward(x=[[1., 0], [2, 1]])
47 bijector.Square().inverse(y=[[1., 4], [9, 1]])
61 def __init__(self, validate_args=False, name="square"):
62 """Instantiates the `Square` bijector.
70 super(Square, self).__init__(
77 return math_ops.square(x)
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_utils.h 56 const int squared_radius = Square(radius);
60 const int squared_y_dist = Square(d_y);
72 if (squared_y_dist + Square(d_x) >= squared_radius) {
110 G[0] += Square(vals_x[i]);
112 G[3] += Square(vals_y[i]);
124 G[0] += Square(vals_x[i]);
126 G[3] += Square(vals_y[i]);
tracked_object.cc 44 allowable_detection_distance_(Square(kInitialDistance)) {
159 allowable_detection_distance_ = Square(kInitialDistance);
frame_pair.cc 111 Square(initial.x - frame1_keypoints_[i].pos_.x);
113 Square(initial.y - frame1_keypoints_[i].pos_.y);
114 const float squared_half_width = Square(box.GetWidth() / 2.0f);
115 const float squared_half_height = Square(box.GetHeight() / 2.0f);
optical_flow.cc 203 if (Square(n_x) + Square(n_y) < Square(kTrackingAbortThreshold)) {
450 sqrtf(Square(*flow_x + reverse_flow_x) +
451 Square(*flow_y + reverse_flow_y));
453 const float flow_length = sqrtf(Square(*flow_x) + Square(*flow_y));
image_neon.cc 258 G[0] += Square(vals_x[i]);
260 G[3] += Square(vals_y[i]);
geom.h 62 return Square(this->x) + Square(this->y);
70 return Square(this->x - that.x) + Square(this->y - that.y);
266 LOG(WARNING) << "This is not a square: " << box << std::endl;
297 const BoundingSquare& square) {
298 stream << "[" << square.x_ << "," << square.y_ << " " << square.size_ << "]";
  /external/tensorflow/tensorflow/go/op/
gradients_test.go 31 y0 = Square(s.SubScope("y0"), x1)
32 y1 = Square(s.SubScope("y1"), y0)
98 y0 = Square(s.SubScope("y0"), x)
99 y1 = Square(s.SubScope("y1"), y0)
139 y0 = Square(s.SubScope("y0"), x)
140 y1 = Square(s.SubScope("y1"), y0)
192 y0 = Square(s.SubScope("y0"), x)
223 y0 = Square(s.SubScope("y0"), x)
239 y0 = Square(s.SubScope("y0"), x)
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 39 private Square mSquare;
56 mSquare = new Square();
72 // Draw square
Square.java 26 * A two-dimensional square for use as a drawn object in OpenGL ES 2.0.
28 public class Square {
73 public Square() {
142 // Draw the square
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
svd.cc 138 Sqrt(Reduce(Square(v), ScalarLike(v, 0.0),
145 auto mu = Mul(sigma, Sqrt(Square(Div(x_0j, sigma, broadcast_dims)) + one),
153 (Square(Div(sigma, v_0j, broadcast_dims)) + one));
204 Sqrt(Reduce(Square(v), ScalarLike(v, 0.0),
212 auto mu = Mul(sigma, Sqrt(Square(Div(x_0i, sigma, broadcast_dims)) + one),
220 (Square(Div(sigma, v_0i, broadcast_dims)) + one));
374 auto t_pos = one / (tau + Sqrt(one + Square(tau)));
375 auto t_neg = -one / (-tau + Sqrt(one + Square(tau)));
378 auto c_temp = Rsqrt(one + Square(t));
385 auto rnorm = Rsqrt(Square(c) + Square(s))
    [all...]
math.h 40 // Computes the square of 'operand'.
41 XlaOp Square(XlaOp operand);
self_adjoint_eig.cc 92 auto t_pos = one / (tau + Sqrt(one + Square(tau)));
93 auto t_neg = -one / (-tau + Sqrt(one + Square(tau)));
96 auto c_temp = Rsqrt(one + Square(t));
103 auto rnorm = Rsqrt(Square(c) + Square(s));
175 Rsqrt(Reduce(Square(slice_p_new), pq_zero,
182 Rsqrt(Reduce(Square(slice_q_new), pq_zero,
200 Sqrt(Reduce(Square(w), ScalarLike(w, 0.0),
205 Reduce(Square(diag), ScalarLike(w, 0.0),
212 Sqrt(Max(Square(frobenius_norm) - diag_square, ScalarLike(w, 0.0)))
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
gradient_checker_test.cc 36 using ops::Square;
45 auto y = Square(scope, x);
56 auto y = Square(scope, x);
67 auto y = Square(scope, x);
78 auto y = Square(scope, x);
gradients_test.cc 37 using ops::Square;
469 auto y0 = Square(scope_test_, x);
470 auto y1 = Square(scope_test_, y0);
471 auto y2 = Square(scope_test_, y1);
486 auto y0 = Square(scope_test_, x);
489 auto y1 = Square(scope_test_, y0);
490 auto y2 = Square(scope_test_, y0);
491 auto y3 = Square(scope_test_, y2);
  /external/pdfium/xfa/fxfa/parser/
cxfa_checkbutton.cpp 25 (void*)XFA_AttributeEnum::Square},
cxfa_corner.cpp 28 (void*)XFA_AttributeEnum::Square},
cxfa_edge.cpp 20 (void*)XFA_AttributeEnum::Square},

Completed in 380 milliseconds

1 2 3 4