Home
last modified time | relevance | path

Searched refs:b03 (Results 1 – 22 of 22) sorted by relevance

/external/skia/tests/sksl/intrinsics/
DInverse.metal21 float b03 = a01*a12 - a02*a11;
30 float det = b00*b11 - b01*b10 + b02*b09 + b03*b08 - b04*b07 + b05*b06;
33 a31*b05 - a32*b04 + a33*b03,
34 a22*b04 - a21*b05 - a23*b03,
45 a31*b01 - a30*b03 - a32*b00,
46 a20*b03 - a21*b01 + a22*b00) * (1/det);
DDeterminant.glsl2b03 = a01 * a12 - a02 * a11; float b04 = a01 * a13 - a03 * a11; float b05 = a02 * a13 - a03 …
/external/skia/src/core/
DSkMatrix44.cpp467 double b03 = a01 * a12 - a02 * a11; in determinant() local
478 return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in determinant()
581 double b03 = a01 * a12 - a02 * a11; in invert() local
590 double det = b00 * b11 - b01 * b10 + b03 * b08; in invert()
602 b03 *= invdet; in invert()
612 inverse->fMat[0][2] = SkDoubleToScalar(b03); in invert()
624 inverse->fMat[3][2] = SkDoubleToScalar(a31 * b01 - a30 * b03 - a32 * b00); in invert()
640 double b03 = a01 * a12 - a02 * a11; in invert() local
651 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
664 b03 *= invdet; in invert()
[all …]
DSkM44.cpp268 double b03 = a01 * a12 - a02 * a11; in invert() local
279 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
289 b03 *= invdet; in invert()
302 SkDoubleToScalar(a31 * b05 - a32 * b04 + a33 * b03), in invert()
303 SkDoubleToScalar(a22 * b04 - a21 * b05 - a23 * b03), in invert()
314 SkDoubleToScalar(a31 * b01 - a30 * b03 - a32 * b00), in invert()
315 SkDoubleToScalar(a20 * b03 - a21 * b01 + a22 * b00), in invert()
/external/skqp/src/core/
DSkMatrix44.cpp458 double b03 = a01 * a12 - a02 * a11; in determinant() local
469 return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in determinant()
572 double b03 = a01 * a12 - a02 * a11; in invert() local
581 double det = b00 * b11 - b01 * b10 + b03 * b08; in invert()
593 b03 *= invdet; in invert()
603 inverse->fMat[0][2] = SkDoubleToMScalar(b03); in invert()
615 inverse->fMat[3][2] = SkDoubleToMScalar(a31 * b01 - a30 * b03 - a32 * b00); in invert()
631 double b03 = a01 * a12 - a02 * a11; in invert() local
642 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
655 b03 *= invdet; in invert()
[all …]
/external/skia/modules/canvaskit/
Dmatrix.js341 var b03 = a01 * a12 - a02 * a11;
352 var det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;
364 b03 *= invdet;
386 a31 * b05 - a32 * b04 + a33 * b03,
389 a31 * b01 - a30 * b03 - a32 * b00,
391 a22 * b04 - a21 * b05 - a23 * b03,
394 a20 * b03 - a21 * b01 + a22 * b00,
/external/llvm-project/clang/test/OpenMP/
Ddeclare_simd_aarch64.c101 double *b03(double *);
179 D = b03(D); in do_something()
/external/dng_sdk/source/
Ddng_bad_pixels.cpp839 int32 b03 = p0 [3]; in FixIsolatedPixel() local
868 Abs_int32 (b03 - b23) + in FixIsolatedPixel()
897 Abs_int32 (b03 - b21) + in FixIsolatedPixel()
1179 int32 b03 = p0 [3 * cs]; in FixSingleColumn() local
1250 Abs_int32 (b03 - b65) + in FixSingleColumn()
/external/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp248 B<&c03> b03; in test3() local
/external/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp888 b03 = a01**a12 - a02**a11, in writeMatrixInverse4x4() local
898 skvm::F32 idet = 1.0f / (b00**b11 - b01**b10 + b02**b09 + b03**b08 - b04**b07 + b05**b06); in writeMatrixInverse4x4()
903 b03 *= idet; in writeMatrixInverse4x4()
916 result[ 2] = (a31*b05 - a32*b04 + a33*b03); in writeMatrixInverse4x4()
917 result[ 3] = (a22*b04 - a21*b05 - a23*b03); in writeMatrixInverse4x4()
928 result[14] = (a31*b01 - a30*b03 - a32*b00); in writeMatrixInverse4x4()
929 result[15] = (a20*b03 - a21*b01 + a22*b00); in writeMatrixInverse4x4()
/external/llvm-project/clang/test/SemaTemplate/
Dtemp_arg_nontype.cpp252 B<&c03> b03; in test3() local
/external/pffft/
Dsse2neon.h1307 float32x2_t b03 = vget_low_f32( in _mm_shuffle_ps_0321() local
1309 return vreinterpretq_m128_f32(vcombine_f32(a21, b03)); in _mm_shuffle_ps_0321()
/external/google-breakpad/src/tools/windows/dump_syms/testdata/
Ddump_syms_regtest64.sym1016 2b03 2 165 6
2262 5b03 9 251 3520
Ddump_syms_regtest.sym1607 3b03 7 516 3326
Domap_reorder_bbs.sym1413 3b03 6 242 3583
1865 4b03 c 58 2079
/external/elfutils/tests/
Dtestfile45.expect.bz21testfile45.o: elf64-elf_x86_64 2 3Disassembly of section .text: 4 5 0 ...
/external/google-breakpad/src/processor/testdata/symbols/overflow/B0E1FC01EF48E39CAF5C881D2DF0C3840/
Doverflow.sym2542 8b03 5 162 12
/external/mesa3d/src/freedreno/.gitlab-ci/reference/
Dfd-clouds.log696 t4 write PC_PRIMITIVE_CNTL_3 (9b03)
2011 t4 write PC_PRIMITIVE_CNTL_3 (9b03)
/external/google-breakpad/src/client/mac/handler/testcases/testdata/
Ddump_syms_i386_breakpad.sym3773 14b03 5 676 60
/external/google-breakpad/src/processor/testdata/
Dmodule0.out9568 7b03 5 59 5043
10463 9b03 1 69 5665
16473 16b03 6 1148 5771
19848 22b03 21 224 3904
/external/google-breakpad/src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/
Dtest_app.sym9568 7b03 5 59 5043
10463 9b03 1 69 5665
16473 16b03 6 1148 5771
19848 22b03 21 224 3904
/external/google-breakpad/src/processor/testdata/symbols/libc-2.13.so/F4F8DFCD5A5FB5A7CE64717E9E6AE3890/
Dlibc-2.13.so.sym3774 STACK CFI 68b03 .cfa: $rsp 0 +
5894 STACK CFI INIT 11b640 b03 .cfa: $rsp 8 + .ra: .cfa -8 + ^