HomeSort by relevance Sort by last modified time
    Searched full:rotations (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/test/
rotate0.go 7 // Generate test of bit rotations.
rotate1.go 7 // Generate test of bit rotations.
rotate2.go 7 // Generate test of bit rotations.
rotate3.go 7 // Generate test of bit rotations.
  /prebuilts/go/linux-x86/test/
rotate0.go 7 // Generate test of bit rotations.
rotate1.go 7 // Generate test of bit rotations.
rotate2.go 7 // Generate test of bit rotations.
rotate3.go 7 // Generate test of bit rotations.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
RotationOrder.java 35 * this ordered set of rotations is around X, then around Y, then
42 * this ordered set of rotations is around X, then around Z, then
49 * this ordered set of rotations is around Y, then around X, then
56 * this ordered set of rotations is around Y, then around Z, then
63 * this ordered set of rotations is around Z, then around X, then
70 * this ordered set of rotations is around Z, then around Y, then
77 * this ordered set of rotations is around X, then around Y, then
84 * this ordered set of rotations is around X, then around Z, then
91 * this ordered set of rotations is around Y, then around X, then
98 * this ordered set of rotations is around Y, then around Z, the
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
stateless_random_ops.cc 58 constexpr std::array<int, 8> rotations = {13, 15, 26, 6, 17, 29, 16, 24}; local
84 x = round(x, rotations[0]);
85 x = round(x, rotations[1]);
86 x = round(x, rotations[2]);
87 x = round(x, rotations[3]);
91 x = round(x, rotations[4]);
92 x = round(x, rotations[5]);
93 x = round(x, rotations[6]);
94 x = round(x, rotations[7]);
98 x = round(x, rotations[0])
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
r1mpyq.h 12 /* apply the first set of givens rotations to a. */
19 /* apply the second set of givens rotations to a. */
  /external/eigen/Eigen/
Jacobi 16 * This module provides Jacobi and Givens rotations.
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_rotator.h 40 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8998/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8x09/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8x26/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8x27/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_rotator.h 31 unsigned char rotations; member in struct:msm_rotator_img_info
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
RobustnessTest.java 131 * Test to check whether the rotation test has passed based on the percent of failed rotations.
157 * Formats the failed rotations into a string to add it to the test report.
159 * @param percentFailed Percentage of failed rotations
160 * @param failedRotations number of failed rotations
161 * @param totalRotations number of rotations made
167 " Failed rotation: " + failedRotations + " Total rotations:" + totalRotations + "\n";
190 String testDetails = "Test terminated as it its impossible to pass the remaining rotations";
  /external/toolchain-utils/deprecated/
sheriff_rotation.py 24 """Main class for handling sheriff rotations."""
96 help='Print sheriffs after n rotations.')
119 print('Rotated sheriffs (after %s rotations)' % options.rotate)
  /frameworks/layoutlib/bridge/src/android/view/
RectShadowPainter.java 161 RectF edgeShadowRect, float dx, float dy, int rotations) {
167 canvas.rotate(rotations * PERPENDICULAR_ANGLE);
179 * @param rotations number of quarter rotations before starting to paint the arc.
182 float radius, int rotations) {
186 path.arcTo(-radius, -radius, radius, radius, rotations * PERPENDICULAR_ANGLE,
  /external/python/cpython2/Lib/test/
test_turtle.py 347 rotations = [10, 20, 170, 300]
348 result = sum(rotations) % 360
349 for num in rotations:
354 result = (360-sum(rotations)) % 360
355 for num in rotations:
360 rotations = [10, 20, -170, 300, -210, 34.3, -50.2, -10, -29.98, 500]
362 for num in rotations:
  /cts/tests/pdf/src/android/graphics/pdf/cts/
PdfRendererTransformTest.java 71 int[] rotations = new int[] { 0, 15, 90, 180 }; local
77 for (int rotation : rotations) {

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011