HomeSort by relevance Sort by last modified time
    Searched refs:roll (Results 76 - 100 of 156) sorted by null

1 2 34 5 6 7

  /hardware/libhardware/include/hardware/
sensors.h 302 * roll: Rotation around Y axis (-90<=roll<=90), with positive values when
305 * Note: For historical reasons the roll angle is positive in the clockwise
311 * (+roll) .--> |
313 * | | roll: rotation around Y axis
316 * note that +Y == -roll
320 * Note: This definition is different from yaw, pitch and roll used in aviation
338 * with the definition of roll given earlier.
560 * with the definition of roll given earlier.
774 float roll; member in struct:__anon32963::__anon32964::__anon32966
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
gregocal.cpp 28 * Fixed bug in roll()
34 * 12/09/99 aliu Fixed j81, calculation errors and roll bugs
812 * Roll a field by a signed amount.
817 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:GregorianCalendar
818 roll((UCalendarDateFields) field, amount, status);
822 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) function in class:GregorianCalendar
    [all...]
  /external/icu4c/i18n/
gregocal.cpp 28 * Fixed bug in roll()
34 * 12/09/99 aliu Fixed j81, calculation errors and roll bugs
812 * Roll a field by a signed amount.
817 GregorianCalendar::roll(EDateFields field, int32_t amount, UErrorCode& status) { function in class:GregorianCalendar
818 roll((UCalendarDateFields) field, amount, status);
822 GregorianCalendar::roll(UCalendarDateFields field, int32_t amount, UErrorCode& status) function in class:GregorianCalendar
    [all...]
  /external/ceres-solver/include/ceres/
rotation.h 119 // The {pitch,roll,yaw} Euler angles are rotations around the {x,y,z}
449 const T roll(euler[1] * degrees_to_radians);
454 const T c2 = cos(roll);
455 const T s2 = sin(roll);
  /external/chromium_org/third_party/icu/source/test/intltest/
caltest.cpp 316 logln("cal->roll(UCAL_SECOND)");
317 cal->roll(UCAL_SECOND, (UBool) TRUE, status);
319 cal->roll(UCAL_SECOND, (int32_t)0, status);
321 if (failure(status, "Calendar::roll")) return;
327 errln("FAIL: equals[%c]/before[%c]/after[%c] failed after roll 1 second [should be T/F/F]",
335 // Roll back to January
336 cal->roll(UCAL_MONTH, (int32_t)(1 + UCAL_DECEMBER - cal->get(UCAL_MONTH, status)), status);
337 if (failure(status, "Calendar::roll")) return;
419 cal3->roll(Calendar::SECOND, (int32_t)0, status);
420 if (failure(status, "Calendar::roll(EDateFields, int32_t, UErrorCode)")) return
    [all...]
calregts.cpp     [all...]
dadrcal.cpp 84 const UnicodeString kROLL("roll", "");
241 toCalendar->roll((UCalendarDateFields)q,
  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 316 mPendingEvents[Orientation].orientation.roll = value * CONVERT_O;
  /libcore/luni/src/main/java/libcore/icu/
DateIntervalFormat.java 96 endCalendar.roll(Calendar.DAY_OF_MONTH, false);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 692 * @tests java.util.Calendar#roll(int, int)
698 // roll up
699 calendar.roll(Calendar.DATE, 5);
702 // roll down
703 calendar.roll(Calendar.DATE, -5);
706 // roll 0
707 calendar.roll(Calendar.DATE, 0);
710 // roll overweight
712 calendar.roll(Calendar.MONTH, 1);
786 public void roll(int field, boolean increment) method in class:CalendarTest.MockCalendar
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 692 * java.util.Calendar#roll(int, int)
698 // roll up
699 calendar.roll(Calendar.DATE, 5);
702 // roll down
703 calendar.roll(Calendar.DATE, -5);
706 // roll 0
707 calendar.roll(Calendar.DATE, 0);
710 // roll overweight
712 calendar.roll(Calendar.MONTH, 1);
786 public void roll(int field, boolean increment) method in class:CalendarTest.MockCalendar
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/des/asm/
crypt586.S 842 roll $23,%eax
849 roll $10,%esi
856 roll $18,%edi
863 roll $12,%esi
  /external/chromium_org/v8/tools/
push-to-trunk.sh 53 V8 roll.
337 to automate creation of the roll CL? If yes, enter the path to (and including) \
365 git checkout -b "v8-roll-$TRUNK_REVISION" \
376 echo -n "Please enter the email address of a reviewer for the roll CL: "
405 $MAJOR.$MINOR.$BUILD. Please don't forget to roll this new version into \
  /external/openssl/crypto/des/asm/
crypt586.S 842 roll $23,%eax
849 roll $10,%esi
856 roll $18,%edi
863 roll $12,%esi
  /external/v8/tools/
push-to-trunk.sh 53 V8 roll.
346 git checkout -b "v8-roll-$TRUNK_REVISION" \
357 echo -n "Please enter the email address of a reviewer for the roll CL: "
386 $MAJOR.$MINOR.$BUILD. Please don't forget to roll this new version into \
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 1110 public void roll(int field, int value) { method in class:GregorianCalendar
1226 public void roll(int field, boolean increment) { method in class:GregorianCalendar
1227 roll(field, increment ? 1 : -1); method
    [all...]
  /external/icu4c/test/intltest/
caltest.cpp 366 logln("cal->roll(UCAL_SECOND)");
367 cal->roll(UCAL_SECOND, (UBool) TRUE, status);
369 cal->roll(UCAL_SECOND, (int32_t)0, status);
371 if (failure(status, "Calendar::roll")) return;
377 errln("FAIL: equals[%c]/before[%c]/after[%c] failed after roll 1 second [should be T/F/F]",
385 // Roll back to January
386 cal->roll(UCAL_MONTH, (int32_t)(1 + UCAL_DECEMBER - cal->get(UCAL_MONTH, status)), status);
387 if (failure(status, "Calendar::roll")) return;
469 cal3->roll(Calendar::SECOND, (int32_t)0, status);
470 if (failure(status, "Calendar::roll(EDateFields, int32_t, UErrorCode)")) return
    [all...]
calregts.cpp     [all...]
dadrcal.cpp 84 const UnicodeString kROLL("roll", "");
241 toCalendar->roll((UCalendarDateFields)q,
  /device/generic/goldfish/sensors/
sensors_qemu.c 331 /* "orientation:<azimuth>:<pitch>:<roll>" is sent when orientation changes */
336 data->sensors[ID_ORIENTATION].orientation.roll = params[2];
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 236 * angles (y,r,p). Note that we are applying in order: roll, pitch, yaw but
243 * @param roll
244 * the Euler roll of rotation (in radians). (aka Heading, often
250 public Quaternion fromAngles(float yaw, float roll, float pitch) {
256 angle = roll * 0.5f;
280 * rotation angles (yaw,roll,pitch).<br/>
311 angles[1] = FastMath.atan2(2 * y * w - 2 * x * z, sqx - sqy - sqz + sqw); // roll or heading
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 986 * Rotates the spatial by the yaw, roll and pitch angles (in radians),
991 public Spatial rotate(float yaw, float roll, float pitch) {
994 q.fromAngles(yaw, roll, pitch);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 417 static char roll[TZ_MAX_LEAPS]; variable
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 417 static char roll[TZ_MAX_LEAPS]; variable
    [all...]
  /external/llvm/test/MC/X86/
x86-32-coverage.s 201 // CHECK: roll $0, 3735928559(%ebx,%ecx,8)
202 roll $0,0xdeadbeef(%ebx,%ecx,8)
207 // CHECK: roll 3735928559(%ebx,%ecx,8)
208 roll 0xdeadbeef(%ebx,%ecx,8)
    [all...]

Completed in 1142 milliseconds

1 2 34 5 6 7