Home
last modified time | relevance | path

Searched refs:b02 (Results 1 – 24 of 24) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DmappedTypeModifiers.js57 var b02: BP; variable
58 var b02: { [P in keyof B]?: B[P] }; variable
59 var b02: Partial<B>; variable
60 var b02: { [P in keyof BP]: BP[P] } variable
61 var b02: Pick<BP, keyof BP>; variable
138 var b02; variable
139 var b02; variable
140 var b02; variable
141 var b02; variable
142 var b02; variable
DmappedTypeModifiers.types162 var b02: BP;
163 >b02 : BP
165 var b02: { [P in keyof B]?: B[P] };
166 >b02 : BP
168 var b02: Partial<B>;
169 >b02 : BP
171 var b02: { [P in keyof BP]: BP[P] }
172 >b02 : BP
174 var b02: Pick<BP, keyof BP>;
175 >b02 : BP
DmappedTypeModifiers.symbols251 var b02: BP;
252 >b02 : Symbol(b02, Decl(mappedTypeModifiers.ts, 55, 3), Decl(mappedTypeModifiers.ts, 56, 3), Decl(m…
255 var b02: { [P in keyof B]?: B[P] };
256 >b02 : Symbol(b02, Decl(mappedTypeModifiers.ts, 55, 3), Decl(mappedTypeModifiers.ts, 56, 3), Decl(m…
262 var b02: Partial<B>;
263 >b02 : Symbol(b02, Decl(mappedTypeModifiers.ts, 55, 3), Decl(mappedTypeModifiers.ts, 56, 3), Decl(m…
267 var b02: { [P in keyof BP]: BP[P] }
268 >b02 : Symbol(b02, Decl(mappedTypeModifiers.ts, 55, 3), Decl(mappedTypeModifiers.ts, 56, 3), Decl(m…
274 var b02: Pick<BP, keyof BP>;
275 >b02 : Symbol(b02, Decl(mappedTypeModifiers.ts, 55, 3), Decl(mappedTypeModifiers.ts, 56, 3), Decl(m…
/third_party/skia/src/core/
DSkMatrixInvert.cpp92 double b02 = a00 * a13 - a03 * a10; in SkInvert4x4Matrix() local
104 double determinant = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in SkInvert4x4Matrix()
109 b02 *= invdet; in SkInvert4x4Matrix()
126 outMatrix[6] = a32 * b02 - a30 * b05 - a33 * b01; in SkInvert4x4Matrix()
127 outMatrix[7] = a20 * b05 - a22 * b02 + a23 * b01; in SkInvert4x4Matrix()
130 outMatrix[10] = a30 * b04 - a31 * b02 + a33 * b00; in SkInvert4x4Matrix()
131 outMatrix[11] = a21 * b02 - a20 * b04 - a23 * b00; in SkInvert4x4Matrix()
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeModifiers.ts59 var b02: BP; variable
60 var b02: { [P in keyof B]?: B[P] }; variable
61 var b02: Partial<B>; variable
62 var b02: { [P in keyof BP]: BP[P] } variable
63 var b02: Pick<BP, keyof BP>; variable
/third_party/skia/modules/canvaskit/
Dmatrix.js340 var b02 = a00 * a13 - a03 * a10;
352 var det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;
363 b02 *= invdet;
387 a32 * b02 - a30 * b05 - a33 * b01,
388 a30 * b04 - a31 * b02 + a33 * b00,
392 a20 * b05 - a22 * b02 + a23 * b01,
393 a21 * b02 - a20 * b04 - a23 * b00,
/third_party/flutter/skia/src/core/
DSkMatrix44.cpp478 double b02 = a00 * a13 - a03 * a10; in determinant() local
490 return b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in determinant()
651 double b02 = a00 * a13 - a03 * a10; in invert() local
663 double det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert()
675 b02 *= invdet; in invert()
692 inverse->fMat[1][2] = SkDoubleToMScalar(a32 * b02 - a30 * b05 - a33 * b01); in invert()
693 inverse->fMat[1][3] = SkDoubleToMScalar(a20 * b05 - a22 * b02 + a23 * b01); in invert()
696 inverse->fMat[2][2] = SkDoubleToMScalar(a30 * b04 - a31 * b02 + a33 * b00); in invert()
697 inverse->fMat[2][3] = SkDoubleToMScalar(a21 * b02 - a20 * b04 - a23 * b00); in invert()
/third_party/boost/boost/qvm/gen/
Dvec_mat_operations3.hpp89 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *() local
101 vec_traits<R>::template write_element<2>(r)=a0*b02+a1*b12+a2*b22; in operator *()
Dvec_mat_operations4.hpp99 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *() local
118 vec_traits<R>::template write_element<2>(r)=a0*b02+a1*b12+a2*b22+a3*b32; in operator *()
Dmat_operations3.hpp1705 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *() local
1718 mat_traits<R>::template write_element<0,2>(r)=a00*b02+a01*b12+a02*b22; in operator *()
1721 mat_traits<R>::template write_element<1,2>(r)=a10*b02+a11*b12+a12*b22; in operator *()
1724 mat_traits<R>::template write_element<2,2>(r)=a20*b02+a21*b12+a22*b22; in operator *()
1769 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *=() local
1778 mat_traits<A>::template write_element<0,2>(a)=a00*b02+a01*b12+a02*b22; in operator *=()
1781 mat_traits<A>::template write_element<1,2>(a)=a10*b02+a11*b12+a12*b22; in operator *=()
1784 mat_traits<A>::template write_element<2,2>(a)=a20*b02+a21*b12+a22*b22; in operator *=()
1875 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *() local
1888 mat_traits<R>::template write_element<0,2>(r)=a00*b02+a01*b12+a02*b22; in operator *()
Dmat_operations4.hpp1866 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *() local
1886 mat_traits<R>::template write_element<0,2>(r)=a00*b02+a01*b12+a02*b22+a03*b32; in operator *()
1890 mat_traits<R>::template write_element<1,2>(r)=a10*b02+a11*b12+a12*b22+a13*b32; in operator *()
1894 mat_traits<R>::template write_element<2,2>(r)=a20*b02+a21*b12+a22*b22+a23*b32; in operator *()
1898 mat_traits<R>::template write_element<3,2>(r)=a30*b02+a31*b12+a32*b22+a33*b32; in operator *()
1951 Tb const b02 = mat_traits<B>::template read_element<0,2>(b); in operator *=() local
1967 mat_traits<A>::template write_element<0,2>(a)=a00*b02+a01*b12+a02*b22+a03*b32; in operator *=()
1971 mat_traits<A>::template write_element<1,2>(a)=a10*b02+a11*b12+a12*b22+a13*b32; in operator *=()
1975 mat_traits<A>::template write_element<2,2>(a)=a20*b02+a21*b12+a22*b22+a23*b32; in operator *=()
1979 mat_traits<A>::template write_element<3,2>(a)=a30*b02+a31*b12+a32*b22+a33*b32; in operator *=()
[all …]
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_bad_pixels.cpp915 int32 b02 = p0 [2]; in FixIsolatedPixel() local
942 est0 = b02 + b42; in FixIsolatedPixel()
944 grad0 = Abs_int32 (b02 - b42) + in FixIsolatedPixel()
961 Abs_int32 (b02 - b24) + in FixIsolatedPixel()
983 Abs_int32 (b02 - b20) + in FixIsolatedPixel()
1336 int32 b02 = p0 [2 * cs]; in FixSingleColumn() local
1387 est0 = b02 + b86; in FixSingleColumn()
1389 grad0 = Abs_int32 (b02 - b86) + in FixSingleColumn()
/third_party/flutter/skia/src/sksl/
DSkSLByteCode.cpp564 b02 = a00 * a13 - a03 * a10, in innerRun() local
576 (b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06); in innerRun()
580 b02 *= idet; in innerRun()
597 spf( -9) = a32 * b02 - a30 * b05 - a33 * b01; in innerRun()
598 spf( -8) = a20 * b05 - a22 * b02 + a23 * b01; in innerRun()
601 spf( -5) = a30 * b04 - a31 * b02 + a33 * b00; in innerRun()
602 spf( -4) = a21 * b02 - a20 * b04 - a23 * b00; in innerRun()
/third_party/openssl/test/
Dsanitytest.c31 a02, b02, c02, d02, e02, f02, g02, h02, i02, j02, in test_sanity_enum_size() enumerator
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Dvector_math.dart623 final double b02 = a00 * a13 - a03 * a10;
634 b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;
646 _m4storage[6] = (-a30 * b05 + a32 * b02 - a33 * b01) * invDet;
647 _m4storage[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet;
650 _m4storage[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet;
651 _m4storage[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet;
/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp996 b02 = a00**a13 - a03**a10, in writeMatrixInverse4x4() local
1007 skvm::F32 idet = 1.0f / (b00**b11 - b01**b10 + b02**b09 + b03**b08 - b04**b07 + b05**b06); in writeMatrixInverse4x4()
1011 b02 *= idet; in writeMatrixInverse4x4()
1029 result[ 6] = (a32*b02 - a30*b05 - a33*b01); in writeMatrixInverse4x4()
1030 result[ 7] = (a20*b05 - a22*b02 + a23*b01); in writeMatrixInverse4x4()
1033 result[10] = (a30*b04 - a31*b02 + a33*b00); in writeMatrixInverse4x4()
1034 result[11] = (a21*b02 - a20*b04 - a23*b00); in writeMatrixInverse4x4()
/third_party/pcre2/pcre2/
DRunGrepTest.bat419 (pushd %srcdir% & %pcre2grep% -o "\b01|\b02" ./testdata/grepinput & popd) >>testtrygrep
423 (pushd %srcdir% & %pcre2grep% --color=always "\b01|\b02" ./testdata/grepinput & popd) >>testtrygrep
427 (pushd %srcdir% & %pcre2grep% -o --colour=always "\b01|\b02" ./testdata/grepinput & popd) >>testtry…
/third_party/ffmpeg/libpostproc/
Dpostprocess_template.c1282 "#paddb "MANGLE(b02)", " #ppsx " \n\t"\ in RENAME()
1320 NAMED_CONSTRAINTS_ADD(deringThreshold,b00,b02,b08) in RENAME()
Dpostprocess.c126 DECLARE_ASM_CONST(8, uint64_t, b02)= 0x0202020202020202LL;
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/
DdEQP-VK.draw.indirect_draw.indexed.indirect_draw_count.triangle_list.log779 00000000010543c0: 0240: 000000fc 000000fc 48a98b01 0000000f 40880b02 00000000 00000001 40880d01
1048 00000000010543d0: 0000: 40880b02 00000000 00000001
Dfd-clouds.log4982 0000000001116030: 0000: 40880b02 00000000 00000001 48a98d01 00000001
4986 0000000001116030: 0000: 40880b02 00000000 00000001
Dcrash.log3139 000340: 00000af4 00000b02 000000c3 000000c3 |................|
/third_party/node/doc/changelogs/
DCHANGELOG_V10.md4557 * [[`1396996b02`](https://github.com/nodejs/node/commit/1396996b02)] - **src**: use v8:: namepace c…
/third_party/gstreamer/gstplugins_base/
DChangeLog46879 1840b02 audio: Don't answer BYTES queries