Home
last modified time | relevance | path

Searched refs:b01 (Results 1 - 25 of 50) sorted by relevance

12

/third_party/skia/src/core/
H A DSkMatrixInvert.cpp46 double b01 = a22 * a11 - a12 * a21; in SkInvert3x3Matrix() local
51 double determinant = a00 * b01 + a01 * b11 + a02 * b21; in SkInvert3x3Matrix()
54 outMatrix[0] = b01 * invdet; in SkInvert3x3Matrix()
91 double b01 = a00 * a12 - a02 * a10; in SkInvert4x4Matrix() local
104 double determinant = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in SkInvert4x4Matrix()
108 b01 *= 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()
134 outMatrix[14] = a31 * b01 - a30 * b03 - a32 * b00; in SkInvert4x4Matrix()
135 outMatrix[15] = a20 * b03 - a21 * b01 in SkInvert4x4Matrix()
[all...]
H A DSkPathRef.cpp105 sameSign = matrix.get(SkMatrix::kMScaleY) > 0 ? 0b01 : 0b00; in transform_dir_and_start()
108 sameSign = matrix.get(SkMatrix::kMScaleY) > 0 ? 0b00 : 0b01; in transform_dir_and_start()
111 antiDiag = 0b01; in transform_dir_and_start()
114 sameSign = matrix.get(SkMatrix::kMSkewY) > 0 ? 0b01 : 0b00; in transform_dir_and_start()
117 sameSign = matrix.get(SkMatrix::kMSkewY) > 0 ? 0b00 : 0b01; in transform_dir_and_start()
/third_party/typescript/tests/baselines/reference/
H A DmappedTypeModifiers.js52 var b01: B; variable
53 var b01: { [P in keyof B]: B[P] };
54 var b01: Pick<B, keyof B>; variable
55 var b01: Pick<Pick<B, keyof B>, keyof B>; variable
134 var b01; variable
135 var b01; variable
136 var b01; variable
137 var b01; variable
/third_party/ffmpeg/libavfilter/
H A Dcolorspacedsp_template.c159 int r01 = rgb0[x * 2 + 1], g01 = rgb1[x * 2 + 1], b01 = rgb2[x * 2 + 1]; in rgb2yuv() local
172 b01 * cby + rnd) >> sh)); in rgb2yuv()
186 avg(b00, b01, b10, b11) * cburv + rnd) >> sh)); in rgb2yuv()
190 avg(b00, b01, b10, b11) * cbv + rnd) >> sh)); in rgb2yuv()
250 int r01 = rgb0[x * 2 + 1], g01 = rgb1[x * 2 + 1], b01 = rgb2[x * 2 + 1]; in rgb2yuv_fsb() local
269 y01 = r01 * cry + g01 * cgy + b01 * cby + rnd_scratch[0][y & !SS_H][x * 2 + 1]; in rgb2yuv_fsb()
300 avg(b00, b01, b10, b11) * cburv + rnd_scratch[1][y & 1][x]; in rgb2yuv_fsb()
311 avg(b00, b01, b10, b11) * cbv + rnd_scratch[2][y & 1][x]; in rgb2yuv_fsb()
/third_party/skia/modules/canvaskit/
H A Dmatrix.js339 var b01 = a00 * a12 - a02 * a10;
352 var det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;
362 b01 *= invdet;
387 a32 * b02 - a30 * b05 - a33 * b01,
389 a31 * b01 - a30 * b03 - a32 * b00,
392 a20 * b05 - a22 * b02 + a23 * b01,
394 a20 * b03 - a21 * b01 + a22 * b00,
/third_party/ffmpeg/libavcodec/ppc/
H A Dfdctdsp.c200 vector float b01, b11, b21, b31, b41, b51, b61, b71; in ff_fdct_altivec() local
221 b01 = ((vector float) MERGE_S16(h, b00, b40)); in ff_fdct_altivec()
239 x0 = ((vector float) MERGE_S16(h, b01, b41)); in ff_fdct_altivec()
240 x1 = ((vector float) MERGE_S16(l, b01, b41)); in ff_fdct_altivec()
407 x0 = vec_mergel(b01, b21); in ff_fdct_altivec()
408 x1 = vec_mergeh(b01, b21); in ff_fdct_altivec()
422 b01 = vec_mergeh(x5, x7); in ff_fdct_altivec()
429 FDCTCOL(b01, b11, b21, b31, b41, b51, b61, b71); in ff_fdct_altivec()
/third_party/skia/gm/
H A Dcrbug_938592.cpp38 if (i & 0b01) { in DEF_SIMPLE_GM()
H A Dgpu_blur_utils.cpp390 for (auto blurDirs : {0b01, 0b10, 0b11}) { in do_very_large_blur_gm()
401 float sigX = sigma*((blurDirs & 0b01) >> 0); in do_very_large_blur_gm()
/third_party/astc-encoder/Source/
H A Dastcenc_find_best_partitioning.cpp259 uint64x2_t b01 = vld1q_u64(b); in partition_mismatch2() local
260 uint64x2_t b10 = vextq_u64(b01, b01, 1); in partition_mismatch2()
261 uint8_t c1 = popcount(veorq_u64(a01, b01)); in partition_mismatch2()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_attributes.c70 case 0b01: in panfrost_large_padded_vertex_count()
/third_party/skia/src/gpu/ops/
H A DClearOp.h41 kColor = 0b01,
/third_party/node/deps/v8/src/objects/
H A Dname.h99 kForwardingIndex = 0b01,
/third_party/openssl/test/
H A Dsanitytest.c31 a01, b01, c01, d01, e01, f01, g01, h01, i01, j01, in test_sanity_enum_size() enumerator
/third_party/skia/experimental/graphite/src/
H A DDevice.h123 kIgnoreMaskFilter = 0b01,
/third_party/rust/crates/regex/regex-syntax/src/unicode_tables/
H A Dage.rs484 ('\u{b01}', 'ଃ'),
H A Dproperty_bool.rs181 ('\u{b01}', 'ଃ'),
1009 ('\u{b01}', '\u{b01}'),
5767 ('\u{b01}', '\u{b01}'),
6265 ('\u{b01}', 'ଃ'),
8515 ('\u{b01}', 'ଃ'),
10025 ('\u{b01}', 'ଃ'),
H A Dscript_extension.rs1200 ('\u{b01}', 'ଃ'),
H A Dscript.rs1074 ('\u{b01}', 'ଃ'),
H A Dperl_word.rs111 ('\u{b01}', 'ଃ'),
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dconstants-riscv64.h403 C1 = 0b01,
406 FUNCT2_1 = 0b01,
559 RO_FMADD_D = MADD | (0b01 << kFunct2Shift),
560 RO_FMSUB_D = MSUB | (0b01 << kFunct2Shift),
561 RO_FNMSUB_D = NMSUB | (0b01 << kFunct2Shift),
562 RO_FNMADD_D = NMADD | (0b01 << kFunct2Shift),
655 RO_V_VSU = STORE_FP | (0b01 << kRvvMopShift) | (0b000 << kRvvNfShift),
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_template.c444 "psubusb "MANGLE(b01)", %%mm3 \n\t" in vertX1Filter()
494 NAMED_CONSTRAINTS_ADD(b01) in vertX1Filter()
624 "paddusb "MANGLE(b01)", %%mm4 \n\t" in doVertDefFilter()
630 // "psubusb "MANGLE(b01)", %%mm3 \n\t" in doVertDefFilter()
634 // "paddusb "MANGLE(b01)", %%mm3 \n\t" in doVertDefFilter()
647 "psubusb "MANGLE(b01)", %%mm3 \n\t" in doVertDefFilter()
731 "psubusb "MANGLE(b01)", %%mm4 \n\t" in doVertDefFilter()
760 NAMED_CONSTRAINTS_ADD(b80,b00,b01) in doVertDefFilter()
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dbitfield_unit_tests.rs114 With [0b11100010], then get(1, 2) is 0b01;
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dkeccak1600p8-ppc.pl167 vpermdi v11,v9, v5, 0b01 ; [4][2] [4][3] < [2][4] [3][0]
176 vpermdi v9, v10,v30,0b01 ; [2][4] [3][4] < [4][0] [4][3]
177 vpermdi v10,v27,v28,0b01 ; [4][0] [4][1] < [0][2] [1][3]
/third_party/openssl/crypto/sha/asm/
H A Dkeccak1600p8-ppc.pl167 vpermdi v11,v9, v5, 0b01 ; [4][2] [4][3] < [2][4] [3][0]
176 vpermdi v9, v10,v30,0b01 ; [2][4] [3][4] < [4][0] [4][3]
177 vpermdi v10,v27,v28,0b01 ; [4][0] [4][1] < [0][2] [1][3]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_bad_pixels.cpp831 // g00 b01 g02 b03 g04 in FixIsolatedPixel()
837 int32 b01 = p0 [1]; in FixIsolatedPixel() local
867 Abs_int32 (b01 - b21) + in FixIsolatedPixel()
877 Abs_int32 (b01 - b23) + in FixIsolatedPixel()
1169 // g00 b01 g02 b03 g04 b05 g06 b07 g08 in FixSingleColumn()

Completed in 28 milliseconds

12