Searched refs:rh (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/skia/include/gpu/
H A DGrKey.h26 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/
H A DGrKey.h26 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/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
H A Du_half_test.c18 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/
H A Du_half_test.c18 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/
H A Darm-asm-variable.c10 register uint32_t rh asm("r2");
17 : [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpAngle.cpp71 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
[all...]
H A DSkOpAngle.h22 bool operator<(const SkOpAngle& rh) const;
H A DSkOpContour.h33 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/
H A DSkOpAngle.cpp71 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
[all...]
H A DSkOpAngle.h22 bool operator<(const SkOpAngle& rh) const;
H A DSkOpContour.h33 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Darc.h59 VGfloat rh, VGfloat rv,
H A Darc.c128 /* Given: Ellipse parameters rh, rv, rot (in degrees),
134 find_ellipses(double rh, double rv, double rot, argument
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
346 arc_init(struct arc *arc, VGPathSegment type, VGfloat x1, VGfloat y1, VGfloat x2, VGfloat y2, VGfloat rh, VGfloat rv, VGfloat rot) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.h59 VGfloat rh, VGfloat rv,
H A Darc.c128 /* Given: Ellipse parameters rh, rv, rot (in degrees),
134 find_ellipses(double rh, double rv, double rot, argument
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
346 arc_init(struct arc *arc, VGPathSegment type, VGfloat x1, VGfloat y1, VGfloat x2, VGfloat y2, VGfloat rh, VGfloat rv, VGfloat rot) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGrFontScaler.cpp22 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/
H A DSkGrFontScaler.cpp22 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/
H A Dprint-udp.c212 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
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
H A Decp_smpl.c946 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, r
[all...]
/external/openssl/crypto/ec/
H A Decp_smpl.c946 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, r
[all...]
/external/qemu/
H A Dqemu-common.h376 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;
/external/chromium_org/third_party/bintrees/bintrees/
H A Dctrees.c536 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 <
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Dupsampling_neon.c134 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/
H A Dupsampling_neon.c134 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/
H A Dhyphen.c667 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) {

Completed in 694 milliseconds

12