Home
last modified time | relevance | path

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

12

/third_party/skia/src/pathops/
H A DSkOpAngle.cpp60 // return true if lh < this < rh
63 SkOpAngle* rh = lh->fNext; in after() local
64 SkASSERT(lh != rh); in after()
68 rh->fPart.fCurve = rh->fOriginalCurvePart; in after()
69 rh->fPart.fCurve.offset(rh->segment()->verb(), fPart.fCurve[0] - rh->fPart.fCurve[0]); in after()
79 rh->segment()->debugID(), rh in after()
335 checkParallel(SkOpAngle* rh) checkParallel() argument
436 convexHullOverlaps(const SkOpAngle* rh) convexHullOverlaps() argument
503 endsIntersect(SkOpAngle* rh) endsIntersect() argument
637 endToSide(const SkOpAngle* rh, bool* inside) const endToSide() argument
858 midToSide(const SkOpAngle* rh, bool* inside) const midToSide() argument
899 orderable(SkOpAngle* rh) orderable() argument
1114 tangentsDiverge(const SkOpAngle* rh, double s0xt0) tangentsDiverge() argument
[all...]
H A DSkOpAngle.h105 bool endToSide(const SkOpAngle* rh, bool* inside) const;
115 bool midToSide(const SkOpAngle* rh, bool* inside) const;
116 bool oppositePlanes(const SkOpAngle* rh) const;
117 int orderable(SkOpAngle* rh); // false == this < rh ; true == this > rh; -1 == unorderable
120 bool tangentsDiverge(const SkOpAngle* rh, double s0xt0);
H A DSkOpContour.h23 bool operator<(const SkOpContour& rh) const { in operator <()
24 return fBounds.fTop == rh.fBounds.fTop in operator <()
25 ? fBounds.fLeft < rh.fBounds.fLeft in operator <()
26 : fBounds.fTop < rh.fBounds.fTop; in operator <()
H A DSkOpSegment.h26 bool operator<(const SkOpSegment& rh) const { in operator <()
27 return fBounds.fTop < rh.fBounds.fTop; in operator <()
/third_party/NuttX/fs/nfs/
H A Drpc.h420 struct rpc_reply_header rh; member
426 struct rpc_reply_header rh; member
432 struct rpc_reply_header rh; member
437 struct rpc_reply_header rh; member
444 struct rpc_reply_header rh; member
451 struct rpc_reply_header rh; member
458 struct rpc_reply_header rh; member
469 struct rpc_reply_header rh; member
476 struct rpc_reply_header rh; member
483 struct rpc_reply_header rh; member
490 struct rpc_reply_header rh; global() member
497 struct rpc_reply_header rh; global() member
508 struct rpc_reply_header rh; global() member
515 struct rpc_reply_header rh; global() member
522 struct rpc_reply_header rh; global() member
529 struct rpc_reply_header rh; global() member
[all...]
/third_party/mesa3d/src/gallium/tests/unit/
H A Du_half_test.c19 uint16_t rh; in test() local
22 rh = _mesa_float_to_half(f.f); in test()
24 if (h != rh && !(util_is_half_nan(h) && util_is_half_nan(rh))) { in test()
25 printf("Roundtrip failed: %x -> %x = %f -> %x\n", h, f.ui, f.f, rh); in test()
/third_party/ffmpeg/libavcodec/
H A Dmlpenc.c262 RestartHeader *rh = ctx->cur_restart_header; in compare_matrix_params() local
270 for (unsigned int channel = rh->min_channel; channel <= rh->max_channel; channel++) in compare_matrix_params()
295 RestartHeader *rh = ctx->cur_restart_header; in compare_decoding_params() local
307 for (unsigned int ch = 0; ch <= rh->max_matrix_channel; ch++) in compare_decoding_params()
313 for (unsigned int ch = 0; ch <= rh->max_channel; ch++) in compare_decoding_params()
319 for (unsigned int ch = rh->min_channel; ch <= rh->max_channel; ch++) { in compare_decoding_params()
481 RestartHeader *const rh = &ctx->restart_header; in mlp_encode_init() local
670 rh in mlp_encode_init()
761 RestartHeader *rh = ctx->cur_restart_header; write_restart_header() local
854 RestartHeader *rh = ctx->cur_restart_header; write_decoding_params() local
953 RestartHeader *rh = ctx->cur_restart_header; write_block_data() local
1004 RestartHeader *rh = &ctx->restart_header; write_substr() local
1174 RestartHeader *rh = &ctx->restart_header; input_data_internal() local
1250 RestartHeader *rh = ctx->cur_restart_header; determine_quant_step_size() local
1350 RestartHeader *rh = ctx->cur_restart_header; determine_filters() local
1649 RestartHeader *rh = ctx->cur_restart_header; determine_bits() local
1771 RestartHeader *rh = ctx->cur_restart_header; apply_filters() local
1788 RestartHeader *rh = ctx->cur_restart_header; generate_2_noise_channels() local
1876 RestartHeader *rh = ctx->cur_restart_header; set_best_codebook() local
1956 RestartHeader *rh = ctx->cur_restart_header; set_major_params() local
[all...]
/third_party/littlefs/scripts/
H A Dprettyasserts.py118 f.writeln(" const void *rh, size_t rsize) {")
122 f.writeln(" type_print_cb(rh, rsize);")
131 f.writeln("#define __PRETTY_ASSERT_BOOL_%s(lh, rh) do { \\"
134 f.writeln(" bool _rh = !!(rh); \\")
145 f.writeln("#define __PRETTY_ASSERT_INT_%s(lh, rh) do { \\"
148 f.writeln(" __typeof__(lh) _rh = rh; \\")
159 f.writeln("#define __PRETTY_ASSERT_MEM_%s(lh, rh, size) do { \\"
162 f.writeln(" const void *_rh = rh; \\")
173 f.writeln("#define __PRETTY_ASSERT_STR_%s(lh, rh) do { \\"
176 f.writeln(" const char *_rh = rh; \\")
[all...]
H A Dexplode_asserts.py16 {ctype} rh, size_t rsize) {{
20 __{prefix}_assert_print_{type}(rh, rsize);
48 #define __{PREFIX}_ASSERT_{TYPE}_{COMP}(file, line, lh, rh)
51 __typeof__(lh) _rh = (__typeof__(lh))rh;
70 #define __{PREFIX}_ASSERT_{TYPE}_{COMP}(file, line, lh, rh)
73 bool _rh = !!(rh);
103 #define __{PREFIX}_ASSERT_{TYPE}_{COMP}(file, line, lh, rh, size)
106 const void *_rh = rh;
124 #define __{PREFIX}_ASSERT_{TYPE}_{COMP}(file, line, lh, rh)
127 const char *_rh = rh;
[all...]
/third_party/backends/backend/escl/
H A Descl_jpeg.c197 int rh = (int)((double)scanner->caps[scanner->source].height * ratio); in get_JPEG_data() local
207 if (cinfo.output_height < (unsigned int)rh) in get_JPEG_data()
208 rh = cinfo.output_height; in get_JPEG_data()
215 rh); in get_JPEG_data()
224 if(y_off > (unsigned int)rh) { in get_JPEG_data()
225 h = rh; in get_JPEG_data()
229 h = rh - y_off; in get_JPEG_data()
252 while (cinfo.output_scanline < (unsigned int)rh) { in get_JPEG_data()
/third_party/mesa3d/src/panfrost/shared/test/
H A Dtest-tiling.cpp127 unsigned rw, unsigned rh, unsigned linear_stride,
149 panfrost_store_tiled_image(tiled, linear, rx, ry, rw, rh,
156 panfrost_load_tiled_image(linear, tiled, rx, ry, rw, rh,
160 ref_access_tiled(ref, store ? linear : tiled, rx, ry, rw, rh,
175 unsigned rw, unsigned rh, unsigned linear_stride,
178 test(width, height, rx, ry, rw, rh, linear_stride, format, true);
179 test(width, height, rx, ry, rw, rh, linear_stride, format, false);
/third_party/skia/tests/
H A DPathOpsAngleTest.cpp194 static int After(SkOpAngle& lh, SkOpAngle& rh) {
195 return lh.after(&rh);
198 static int AllOnOneSide(SkOpAngle& lh, SkOpAngle& rh) {
199 return lh.lineOnOneSide(&rh, false);
202 static int ConvexHullOverlaps(SkOpAngle& lh, SkOpAngle& rh) {
203 return lh.convexHullOverlaps(&rh);
206 static int Orderable(SkOpAngle& lh, SkOpAngle& rh) {
207 return lh.orderable(&rh);
210 static int EndsIntersect(SkOpAngle& lh, SkOpAngle& rh) {
211 return lh.endsIntersect(&rh);
[all...]
H A DShaperTest.cpp72 RunHandler rh(name, reporter); in shaper_test()
73 shaper->shape((const char*)data->data(), data->size(), font, true, kWidth, &rh); in shaper_test()
81 fontIterator, bidiIterator, scriptIterator, languageIterator, kWidth, &rh); in shaper_test()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_sse.h324 __m128i al, ah, dl, dh, sl, sh, rl, rh; in util_sse2_blend_premul_4() local
345 rh = util_sse2_premul_blend_epi16(ah, dh, sh); in util_sse2_blend_premul_4()
349 return _mm_packus_epi16(rl, rh); in util_sse2_blend_premul_4()
365 __m128i al, ah, dl, dh, sl, sh, rl, rh; in util_sse2_blend_srcalpha_4() local
386 rh = util_sse2_lerp_epi16(ah, dh, sh); in util_sse2_blend_srcalpha_4()
390 return _mm_packus_epi16(rl, rh); in util_sse2_blend_srcalpha_4()
408 __m128i srca, d, s, rl, rh; in util_sse2_blend_premul_src_4() local
436 rh = util_sse2_premul_blend_epi16(srca, d, s); in util_sse2_blend_premul_src_4()
440 return _mm_packus_epi16(rl, rh); in util_sse2_blend_premul_src_4()
/third_party/skia/bench/
H A DShaperBench.cpp32 SkTextBlobBuilderRunHandler rh(text, {0, 0});
33 fShaper->shape(text, len, font, true, FLT_MAX, &rh);
34 (void)rh.makeBlob();
/third_party/skia/modules/skshaper/tests/
H A DShaperTest.cpp127 RunHandler rh(name, reporter, (const char*)data->data(), data->size()); in shaper_test()
128 shaper->shape((const char*)data->data(), data->size(), font, true, kWidth, &rh); in shaper_test()
132 REPORTER_ASSERT(reporter, rh.fBeginLine); in shaper_test()
133 REPORTER_ASSERT(reporter, rh.fCommitRunInfo); in shaper_test()
134 REPORTER_ASSERT(reporter, rh.fCommitLine); in shaper_test()
142 fontIterator, bidiIterator, scriptIterator, languageIterator, kWidth, &rh); in shaper_test()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dscalar_multiplication.hpp38 operator*(T const & s, Vec rh){ \
39 return rh *= static_cast<float>(s); \
/third_party/ffmpeg/libavfilter/
H A Dvf_chromashift.c37 int rh, rv; member
166 const int rh = s->rh; \
194 dr[x] = sr[av_clip(x - rh, 0, w - 1) + ry]; \
233 const int rh = s->rh; \
267 int rx = (x - rh) % w; \
430 { "rh", "shift red horizontally", OFFSET(rh), AV_OPT_TYPE_INT, {.i64=0}, -255, 255, .flags = VFR },
H A Dvf_colorcorrect.c42 float rh, bh; member
337 const float rd = s->rh - rl; in colorcorrect_slice8()
378 const float rd = s->rh - rl; in colorcorrect_slice16()
404 float bl = 0.f, rl = 0.f, bh = 0.f, rh = 0.f; in filter_frame() local
412 rh += s->analyzeret[i][3]; in filter_frame()
418 rh /= nb_athreads; in filter_frame()
423 s->rh = -rh; in filter_frame()
528 { "rh", "set the red highlight spot", OFFSET(rh), AV_OPT_TYPE_FLOA
[all...]
H A Dvf_fftdnoiz.c289 const int rh = FFMIN(block, height - y * size + hoverlap); in import_block() local
296 for (int i = 0; i < rh; i++) { in import_block()
311 for (int i = rh; i < block; i++) { in import_block()
351 const int rh = FFMIN(size, height - y * size + hoverlap); in export_block() local
368 for (int i = 0; i < rh && (y * size + i) < height; i++) { in export_block()
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_smpl.c964 BIGNUM *rh, *tmp, *Z4, *Z6; in ossl_ec_GFp_simple_is_on_curve() local
981 rh = BN_CTX_get(ctx); in ossl_ec_GFp_simple_is_on_curve()
995 * To test this, we add up the right-hand side in 'rh'. in ossl_ec_GFp_simple_is_on_curve()
998 /* rh := X^2 */ in ossl_ec_GFp_simple_is_on_curve()
999 if (!field_sqr(group, rh, point->X, ctx)) in ossl_ec_GFp_simple_is_on_curve()
1010 /* rh := (rh + a*Z^4)*X */ in ossl_ec_GFp_simple_is_on_curve()
1016 if (!BN_mod_sub_quick(rh, rh, tmp, p)) in ossl_ec_GFp_simple_is_on_curve()
1018 if (!field_mul(group, rh, r in ossl_ec_GFp_simple_is_on_curve()
[all...]
/third_party/openssl/crypto/ec/
H A Decp_smpl.c964 BIGNUM *rh, *tmp, *Z4, *Z6; in ossl_ec_GFp_simple_is_on_curve() local
981 rh = BN_CTX_get(ctx); in ossl_ec_GFp_simple_is_on_curve()
995 * To test this, we add up the right-hand side in 'rh'. in ossl_ec_GFp_simple_is_on_curve()
998 /* rh := X^2 */ in ossl_ec_GFp_simple_is_on_curve()
999 if (!field_sqr(group, rh, point->X, ctx)) in ossl_ec_GFp_simple_is_on_curve()
1010 /* rh := (rh + a*Z^4)*X */ in ossl_ec_GFp_simple_is_on_curve()
1016 if (!BN_mod_sub_quick(rh, rh, tmp, p)) in ossl_ec_GFp_simple_is_on_curve()
1018 if (!field_mul(group, rh, r in ossl_ec_GFp_simple_is_on_curve()
[all...]
/third_party/python/Lib/test/
H A Dtest_logging.py5361 rh = logging.handlers.RotatingFileHandler(
5363 self.assertFalse(rh.shouldRollover(None))
5364 rh.close()
5368 rh = logging.handlers.RotatingFileHandler(
5370 self.assertFalse(rh.shouldRollover(self.next_rec()))
5371 rh.close()
5374 rh = logging.handlers.RotatingFileHandler(self.fn, encoding="utf-8", maxBytes=1)
5375 self.assertTrue(rh.shouldRollover(self.next_rec()))
5376 rh.close()
5381 rh
[all...]
/third_party/nghttp2/src/
H A Dshrpx_client_handler.cc815 auto rh = d(worker_->get_randgen()); in get_affinity_cookie() local
816 h = util::hash32(StringRef{reinterpret_cast<uint8_t *>(&rh), in get_affinity_cookie()
817 reinterpret_cast<uint8_t *>(&rh) + sizeof(rh)}); in get_affinity_cookie()
976 auto rh = d(worker_->get_randgen()); in get_downstream_addr_strict_affinity() local
977 h = util::hash32(StringRef{reinterpret_cast<uint8_t *>(&rh), in get_downstream_addr_strict_affinity()
978 reinterpret_cast<uint8_t *>(&rh) + sizeof(rh)}); in get_downstream_addr_strict_affinity()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_etc_decode.c415 nir_ssa_def *rh = nir_ior(&b, nir_iand_imm(&b, color_y, 1), in build_shader() local
426 rh = etc_extend(&b, rh, 6); in build_shader()
434 nir_ssa_def *dx = nir_imul(&b, nir_isub(&b, nir_vec3(&b, rh, gh, bh), rgb), in build_shader()

Completed in 28 milliseconds

12