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

1 2 3

  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
results_holder.c 58 static struct results_t rh; variable in typeref:struct:results_t
67 rh.status |= INV_6_AXIS_QUAT_SET;
68 memcpy(&rh.gam_quat, quat, sizeof(rh.gam_quat));
69 rh.gam_timestamp = timestamp;
79 // rh.status |= INV_6_AXIS_QUAT_SET;
80 memcpy(&rh.accel_quat, quat, sizeof(rh.accel_quat));
81 rh.geomag_timestamp = timestamp;
90 rh.status |= INV_COMPASS_CORRECTION_SET
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrKey.h 26 bool operator<(const GrKey& rh) const {
27 return fHash < rh.fHash || (fHash == rh.fHash && this->lt(rh));
29 bool operator==(const GrKey& rh) const {
30 return fHash == rh.fHash && this->eq(rh);
34 virtual bool lt(const GrKey& rh) const = 0;
35 virtual bool eq(const GrKey& rh) const = 0;
  /external/skia/include/gpu/
GrKey.h 26 bool operator<(const GrKey& rh) const {
27 return fHash < rh.fHash || (fHash == rh.fHash && this->lt(rh));
29 bool operator==(const GrKey& rh) const {
30 return fHash == rh.fHash && this->eq(rh);
34 virtual bool lt(const GrKey& rh) const = 0;
35 virtual bool eq(const GrKey& rh) const = 0;
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
results_holder.c 52 static struct results_t rh; variable in typeref:struct:results_t
61 rh.status |= INV_6_AXIS_QUAT_SET;
62 memcpy(&rh.gam_quat, quat, sizeof(rh.gam_quat));
63 rh.gam_timestamp = timestamp;
73 rh.status |= INV_COMPASS_CORRECTION_SET;
74 memcpy(rh.compass_correction, data, sizeof(rh.compass_correction));
75 rh.nav_timestamp = timestamp;
85 memcpy(data, rh.compass_correction, sizeof(rh.compass_correction))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
u_half_test.c 18 uint16_t rh; local
21 rh = util_float_to_half(f.f);
23 if (h != rh && !(util_is_half_nan(h) && util_is_half_nan(rh))) {
24 printf("Roundtrip failed: %x -> %x = %f -> %x\n", h, f.ui, f.f, rh);
  /external/mesa3d/src/gallium/tests/unit/
u_half_test.c 18 uint16_t rh; local
21 rh = util_float_to_half(f.f);
23 if (h != rh && !(util_is_half_nan(h) && util_is_half_nan(rh))) {
24 printf("Roundtrip failed: %x -> %x = %f -> %x\n", h, f.ui, f.f, rh);
  /external/clang/test/CodeGen/
arm-asm-variable.c 10 register uint32_t rh asm("r2");
17 : [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
clnt.h 161 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
162 * CLIENT *rh;
170 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
171 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
172 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
173 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
177 * CLNT_ABORT(rh);
178 * CLIENT *rh;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 161 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
162 * CLIENT *rh;
170 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
171 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
172 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
173 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
177 * CLNT_ABORT(rh);
178 * CLIENT *rh;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 161 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
162 * CLIENT *rh;
170 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
171 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
172 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
173 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, argsp, xres, resp, secs))
177 * CLNT_ABORT(rh);
178 * CLIENT *rh;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 393 HoldCounter rh = cachedHoldCounter; local
394 if (rh == null || rh.tid != current.getId())
395 rh = readHolds.get();
396 int count = rh.count;
402 --rh.count;
451 HoldCounter rh = cachedHoldCounter; local
452 if (rh == null || rh.tid != current.getId())
453 cachedHoldCounter = rh = readHolds.get()
474 HoldCounter rh = null; local
565 HoldCounter rh = cachedHoldCounter; local
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpAngle.cpp 71 bool SkOpAngle::operator<(const SkOpAngle& rh) const { // this/lh: left-hand; rh: right-hand
73 double ry = rh.dy();
79 rh.fID, rh.fSegment->debugID(), rh.fSegment->t(rh.fStart), rh.fSegment->t(rh.fEnd));
87 double rx = rh.dx()
    [all...]
SkOpAngle.h 22 bool operator<(const SkOpAngle& rh) const;
  /external/skia/src/pathops/
SkOpAngle.cpp 71 bool SkOpAngle::operator<(const SkOpAngle& rh) const { // this/lh: left-hand; rh: right-hand
73 double ry = rh.dy();
79 rh.fID, rh.fSegment->debugID(), rh.fSegment->t(rh.fStart), rh.fSegment->t(rh.fEnd));
87 double rx = rh.dx()
    [all...]
SkOpAngle.h 22 bool operator<(const SkOpAngle& rh) const;
  /packages/apps/Gallery2/jni/filters/
hsv.c 44 short rv,rs,rh; local
66 rh = 0;
69 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
70 if (rh >= k2) rh -= k2;
72 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
74 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
78 hsv[hsvOff+2] = rh;
  /frameworks/base/core/java/android/os/
RegistrantList.java 114 Handler rh; local
116 rh = r.getHandler();
121 if (rh == null || rh == h) {
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
shadows.rs 58 short rv,rs,rh;
80 rh = 0;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
94 out.z = rh;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
shadows.rs 58 short rv,rs,rh;
80 rh = 0;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
94 out.z = rh;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
shadows.rs 58 short rv,rs,rh;
80 rh = 0;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
94 out.z = rh;
  /packages/apps/Camera2/src/com/android/camera/ui/
FaceView.java 187 int rw, rh; local
189 rh = mUncroppedHeight;
191 if (((rh > rw) && ((mDisplayOrientation == 0) || (mDisplayOrientation == 180)))
192 || ((rw > rh) && ((mDisplayOrientation == 90) || (mDisplayOrientation == 270)))) {
194 rw = rh;
195 rh = temp;
197 CameraUtil.prepareMatrix(mMatrix, mMirror, mDisplayOrientation, rw, rh);
199 int dy = (getHeight() - rh) / 2;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
saturation.rs 111 short rv,rs,rh;
134 rh = (short) ((k2 * (6 * chroma + gi - bi))/(6 * chroma));
135 if (rh >= k2) {
136 rh -= k2;
138 return rh;
  /packages/apps/Camera/src/com/android/camera/ui/
FaceView.java 183 int rh = sn.getUncroppedRenderHeight(); local
185 if (((rh > rw) && ((mDisplayOrientation == 0) || (mDisplayOrientation == 180)))
186 || ((rw > rh) && ((mDisplayOrientation == 90) || (mDisplayOrientation == 270)))) {
188 rw = rh;
189 rh = temp;
191 Util.prepareMatrix(mMatrix, mMirror, mDisplayOrientation, rw, rh);
193 int dy = (getHeight() - rh) / 2;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 59 VGfloat rh, VGfloat rv,
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 59 VGfloat rh, VGfloat rv,

Completed in 1373 milliseconds

1 2 3