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

12 3

  /external/chromium_org/third_party/skia/src/gpu/
SkGrFontScaler.cpp 22 virtual bool lt(const GrKey& rh) const;
23 virtual bool eq(const GrKey& rh) const;
51 bool SkGrDescKey::lt(const GrKey& rh) const {
52 const SkDescriptor* srcDesc = ((const SkGrDescKey*)&rh)->fDesc;
63 bool SkGrDescKey::eq(const GrKey& rh) const {
64 const SkDescriptor* srcDesc = ((const SkGrDescKey*)&rh)->fDesc;
  /external/skia/src/gpu/
SkGrFontScaler.cpp 22 virtual bool lt(const GrKey& rh) const;
23 virtual bool eq(const GrKey& rh) const;
51 bool SkGrDescKey::lt(const GrKey& rh) const {
52 const SkDescriptor* srcDesc = ((const SkGrDescKey*)&rh)->fDesc;
63 bool SkGrDescKey::eq(const GrKey& rh) const {
64 const SkDescriptor* srcDesc = ((const SkGrDescKey*)&rh)->fDesc;
  /external/tcpdump/
print-udp.c 212 struct rtcphdr *rh = (struct rtcphdr *)hdr; local
217 if ((u_char *)(rh + 1) > ep) {
221 len = (EXTRACT_16BITS(&rh->rh_len) + 1) * 4;
222 flags = EXTRACT_16BITS(&rh->rh_flags);
226 sr = (struct rtcp_sr *)(rh + 1);
228 if (len != cnt * sizeof(*rr) + sizeof(*sr) + sizeof(*rh))
231 printf(" %u", EXTRACT_32BITS(&rh->rh_ssrc));
245 if (len != cnt * sizeof(*rr) + sizeof(*rh))
247 rr = (struct rtcp_rr *)(rh + 1);
249 printf(" %u", EXTRACT_32BITS(&rh->rh_ssrc))
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 194 double rh = outRect.height(); local
195 double h1 = rh * rh / (rw * sina + rh * cosa);
196 double h2 = rh * rw / (rw * cosa + rh * sina);
198 double ww = hh * rw / rh;
200 float top = (float) ((rh - hh) * 0.5f);
  /external/chromium_org/third_party/skia/src/pathops/
SkOpContour.h 33 bool operator<(const SkOpContour& rh) const {
34 return fBounds.fTop == rh.fBounds.fTop
35 ? fBounds.fLeft < rh.fBounds.fLeft
36 : fBounds.fTop < rh.fBounds.fTop;
  /external/skia/src/pathops/
SkOpContour.h 33 bool operator<(const SkOpContour& rh) const {
34 return fBounds.fTop == rh.fBounds.fTop
35 ? fBounds.fLeft < rh.fBounds.fLeft
36 : fBounds.fTop < rh.fBounds.fTop;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 166 rh = reduce_handle(conn.fileno())
167 return rebuild_connection, (rh, conn.readable, conn.writable)
206 rh = reduce_handle(conn.fileno())
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 166 rh = reduce_handle(conn.fileno())
167 return rebuild_connection, (rh, conn.readable, conn.writable)
206 rh = reduce_handle(conn.fileno())
207 return rebuild_pipe_connection, (rh, conn.readable, conn.writable)
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ecp_smpl.c 946 BIGNUM *rh, *tmp, *Z4, *Z6; local
964 rh = BN_CTX_get(ctx);
976 * To test this, we add up the right-hand side in 'rh'.
979 /* rh := X^2 */
980 if (!field_sqr(group, rh, &point->X, ctx)) goto err;
988 /* rh := (rh + a*Z^4)*X */
993 if (!BN_mod_sub_quick(rh, rh, tmp, p)) goto err;
994 if (!field_mul(group, rh, rh, &point->X, ctx)) goto err
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 946 BIGNUM *rh, *tmp, *Z4, *Z6; local
964 rh = BN_CTX_get(ctx);
976 * To test this, we add up the right-hand side in 'rh'.
979 /* rh := X^2 */
980 if (!field_sqr(group, rh, &point->X, ctx)) goto err;
988 /* rh := (rh + a*Z^4)*X */
993 if (!BN_mod_sub_quick(rh, rh, tmp, p)) goto err;
994 if (!field_mul(group, rh, rh, &point->X, ctx)) goto err
    [all...]
  /external/qemu/
qemu-common.h 376 uint64_t rl, rh; local
380 rh = (uint64_t)u.l.high * (uint64_t)b;
381 rh += (rl >> 32);
382 res.l.high = rh / c;
383 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 269 int32x4_t rh = vaddl_s16(vget_high_s16(yy), vget_high_s16(vr)); local
275 rh = vmulq_lane_s32(rh, cf32, 0);
280 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), vrshrn_n_s32(rh, 16)));
317 int32x4_t rh = vaddl_s16(vget_high_s16(yy), vget_high_s16(vr)); local
323 rh = vmulq_lane_s32(rh, cf32, 0);
328 y = vqmovun_s16(vcombine_s16(vrshrn_n_s32(rl, 16), vrshrn_n_s32(rh, 16)));
  /system/core/include/pixelflinger/
format.h 111 uint8_t rh; // red high bit position + 1 member in struct:__anon62619::__anon62621::__anon62622
  /external/chromium_org/third_party/bintrees/bintrees/
ctrees.c 536 int lh, rh, max; local
541 rh = height(up[top]->link[!upd[top]]);
544 if (lh - rh == 0)
546 if (lh - rh >= 2) {
564 rh = height(up[top]->link[!upd[top]]);
565 max = avl_max(lh, rh);
635 int rh = height(up[top]->link[!upd[top]]); local
636 int max = avl_max(lh, rh);
642 if (lh - rh == -1)
644 if (lh - rh <= -2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.c 128 /* Given: Ellipse parameters rh, rv, rot (in degrees),
134 find_ellipses(double rh, double rv, double rot,
145 x0p = (x0*COS + y0*SIN)/rh;
147 x1p = (x1*COS + y1*SIN)/rh;
155 pcx0 *= rh; pcy0 *= rv;
156 pcx1 *= rh; pcy1 *= rv;
350 VGfloat rh, VGfloat rv,
362 arc->a = rh;
370 arc->is_valid = find_ellipses(rh, rv, rot, x1, y1, x2, y2,
374 rh = arc->a
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.c 128 /* Given: Ellipse parameters rh, rv, rot (in degrees),
134 find_ellipses(double rh, double rv, double rot,
145 x0p = (x0*COS + y0*SIN)/rh;
147 x1p = (x1*COS + y1*SIN)/rh;
155 pcx0 *= rh; pcy0 *= rv;
156 pcx1 *= rh; pcy1 *= rv;
350 VGfloat rh, VGfloat rv,
362 arc->a = rh;
370 arc->is_valid = find_ellipses(rh, rv, rot, x1, y1, x2, y2,
374 rh = arc->a
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
upsampling_neon.c 134 int32x4_t rh = vaddl_s16(vget_high_s16(yy), vget_high_s16(vr)); \
141 rh = vmulq_lane_s32(rh, cf32, 0); \
148 vrshrn_n_s32(rh, 16))); \
  /external/webp/src/dsp/
upsampling_neon.c 134 int32x4_t rh = vaddl_s16(vget_high_s16(yy), vget_high_s16(vr)); \
141 rh = vmulq_lane_s32(rh, cf32, 0); \
148 vrshrn_n_s32(rh, 16))); \
  /external/hyphenation/
hyphen.c 667 char * rh = strchr((*rep)[j], '='); local
668 if (rh && (hnj_hyphen_strnlen(word, j - (*pos)[j] + 1, utf8) +
669 hnj_hyphen_strnlen((*rep)[j], rh - (*rep)[j], utf8)) < lhmin) {
690 char * rh = strchr((*rep)[j], '='); local
691 if (rh && (hnj_hyphen_strnlen(word + j - (*pos)[j] + (*cut)[j] + 1, 100, utf8) +
692 hnj_hyphen_strnlen(rh + 1, strlen(rh + 1), utf8)) < rhmin) {
    [all...]
  /external/speex/libspeex/
sb_celp.c 556 spx_word32_t rl, rh; /*Q13*/ local
581 rh = LPC_SCALING;
584 rh += st->interp_qlpc[i+1] - st->interp_qlpc[i];
590 filter_ratio=EXTRACT16(SATURATE(PDIV32(SHL32(ADD32(rl,82),7),ADD32(82,rh)),32767));
592 filter_ratio=(rl+.01)/(rh+.01);
987 spx_word32_t rl=0,rh=0; local
1011 rh = LPC_SCALING;
1014 rh += ak[i+1] - ak[i];
1020 filter_ratio=EXTRACT16(SATURATE(PDIV32(SHL32(ADD32(rl,82),7),ADD32(82,rh)),32767));
1022 filter_ratio=(rl+.01)/(rh+.01)
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
MjpegFileWriter.java 46 RIFFHeader rh = new RIFFHeader(); local
47 aviOutput.write(rh.toBytes());
  /external/openssh/
Android.mk 109 sshd.c auth-rhosts.c auth-rsa.c auth-rh-rsa.c \
  /external/chromium_org/third_party/skia/src/core/
SkStroke.cpp 688 SkScalar rh = origRect.height(); local
689 if ((rw < 0) ^ (rh < 0)) {
696 rh = rect.height();
720 if (fWidth < SkMinScalar(rw, rh) && !fDoFill) {
  /external/skia/src/core/
SkStroke.cpp 688 SkScalar rh = origRect.height(); local
689 if ((rw < 0) ^ (rh < 0)) {
696 rh = rect.height();
720 if (fWidth < SkMinScalar(rw, rh) && !fDoFill) {
  /external/ppp/pppd/
sys-solaris.c 2643 struct opthdr *rh; local
    [all...]

Completed in 653 milliseconds

12 3