/third_party/skia/src/pathops/ |
H A D | SkPathOpsConic.cpp | 143 double cx, cy, cz; in subDivide() local 147 cz = 1; in subDivide() 151 cz = conic_eval_denominator(fWeight, t2); in subDivide() 155 cz = 1; in subDivide() 159 double bz = 2 * dz - (az + cz) / 2; in subDivide() 163 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}} in subDivide() 165 SkDoubleToScalar(bz / sqrt(az * cz)) }; in subDivide()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | time_zone_test.cc | 49 const cctz::time_zone cz = cctz::utc_time_zone(); in TEST() local 50 const absl::TimeZone tz(cz); in TEST() 51 EXPECT_EQ(cz, cctz::time_zone(tz)); in TEST() 62 const cctz::time_zone cz = cctz::fixed_time_zone(cctz::seconds(123)); in TEST() local 63 EXPECT_EQ(tz, absl::TimeZone(cz)); in TEST()
|
H A D | time.h | 1078 time_internal::cctz::time_zone cz; in LoadTimeZone() local 1079 const bool b = time_internal::cctz::load_time_zone(std::string(name), &cz); in LoadTimeZone() 1080 *tz = TimeZone(cz); in LoadTimeZone()
|
/third_party/mesa3d/src/mesa/math/ |
H A D | m_debug_clip.c | 84 const GLfloat cz = from[2]; in ref_cliptest_points4() local 92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT; in ref_cliptest_points4() 93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT; in ref_cliptest_points4() 108 vProj[i][2] = cz * oow; in ref_cliptest_points4() 139 const GLfloat cx = from[0], cy = from[1], cz = from[2]; in ref_cliptest_points3() local 146 if ( cz > 1.0 ) mask |= CLIP_FAR_BIT; in ref_cliptest_points3() 147 else if ( cz < -1.0 ) mask |= CLIP_NEAR_BIT; in ref_cliptest_points3()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_ciescope.c | 1132 float cx, cy, cz, jr, jg, jb, jmax; in fill_in_tongue() local 1140 cz = 1.0 - (cx + cy); in fill_in_tongue() 1146 cz = 1.0 - (cx + cy); in fill_in_tongue() 1150 cz = 1.0 - (cx + cy); in fill_in_tongue() 1155 xyz_to_rgb(m, cx, cy, cz, &jr, &jg, &jb); in fill_in_tongue() 1261 float cz; in filter_rgb48() local 1263 rgb_to_xy(r, g, b, cx, cy, &cz, (const float (*)[3])s->m); in filter_rgb48() 1276 float cz; in filter_rgba64() local 1278 rgb_to_xy(r, g, b, cx, cy, &cz, (const float (*)[3])s->m); in filter_rgba64() 1291 float cz; in filter_rgb24() local 1306 float cz; filter_rgba() local [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Matrix.cpp | 339 float cz = cos(v.z); in eulerRotate() local 349 return Matrix(cy * cz - sxsy * sz, -cy * sz - sxsy * cz, -sy * cx, in eulerRotate() 350 cx * sz, cx * cz, -sx, in eulerRotate() 351 sy * cz + sxcy * sz, -sy * sz + sxcy * cz, cy * cx); in eulerRotate()
|
/third_party/mksh/ |
H A D | lex.c | 203 size_t cz; in yylex() local 409 cz = strlen(sp) + 1; in yylex() 410 XcheckN(ws, wp, cz); in yylex() 412 memcpy(wp, sp, cz); in yylex() 413 wp += cz; in yylex() 605 cz = utf_wctomb(ts, c2 - 0x100); in yylex() 606 ts[cz] = 0; in yylex() 607 cz = 0; in yylex() 610 *wp++ = ts[cz]; in yylex() 611 } while (ts[++cz]); in yylex() [all...] |
/third_party/skia/src/utils/ |
H A D | SkCamera.cpp | 47 SkScalar cz = fU.x * fV.y - fU.y * fV.x; in dotWith() local 49 return cx * dx + cy * dy + cz * dz; in dotWith()
|
/third_party/mesa3d/src/amd/addrlib/src/gfx9/ |
H A D | gfx9addrlib.cpp | 1514 Coordinate cz(DIM_Z, 0); in GetDataEquation() 1556 (*pDataEq)[i].add(cz); in GetDataEquation() 1557 cz++; in GetDataEquation() 1562 (*pDataEq)[8].add(cz); in GetDataEquation() 1564 cz++; in GetDataEquation() 1593 (*pDataEq)[i].add(cz); in GetDataEquation() 1594 cz++; in GetDataEquation() 1600 (*pDataEq)[7].add(cz); in GetDataEquation() 1602 cz++; in GetDataEquation() 1608 (*pDataEq)[7].add(cz); in GetDataEquation() [all...] |
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_rt_common.c | 319 nir_ssa_def *cz = nir_fmul(b, sz, nir_vector_extract(b, v_c, kz)); in intersect_ray_amd_software_tri() local 322 nir_fadd(b, nir_fadd(b, nir_fmul(b, u, az), nir_fmul(b, v, bz)), nir_fmul(b, w, cz)); in intersect_ray_amd_software_tri()
|
/third_party/skia/tests/ |
H A D | UtilsTest.cpp | 461 SkZip<const uint16_t, const float, const int, int, int> cz = z; in DEF_TEST() local 463 for (auto [a, b, c, d, s] : cz) { in DEF_TEST()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_kopper.c | 895 struct zink_ctx_surface *cz = (struct zink_ctx_surface*)psurf; in zink_kopper_fixup_depth_buffer() local 898 zink_surface_reference(screen, &csurf->surf, cz->surf); in zink_kopper_fixup_depth_buffer()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hpeldsp.asm | 6 ;* Copyright (c) 2002 Zdenek Kabelac <kabi@informatics.muni.cz>
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bifrost_compile.c | 3265 cz = bi_extract(b, coord, 2); in bi_emit_cube_coord() local 3269 bi_cubeface_to(b, maxxyz, *face, cx, cy, cz); in bi_emit_cube_coord() 3271 bi_cubeface1_to(b, maxxyz, cx, cy, cz); in bi_emit_cube_coord() 3272 bi_cubeface2_v9_to(b, *face, cx, cy, cz); in bi_emit_cube_coord()
|
/third_party/python/Lib/test/test_email/ |
H A D | test_email.py | 910 cz = Charset("iso-8859-2") 927 h.append(cz_head, cz) 4782 cz = Charset("iso-8859-2") 4799 h.append(cz_head, cz)
|