/third_party/node/deps/v8/src/codegen/ |
H A D | tnode.h | 278 template <class T, class U1, class U2> 279 struct is_subtype<T, UnionT<U1, U2>> { 281 is_subtype<T, U1>::value || is_subtype<T, U2>::value; 283 template <class T1, class T2, class U1, class U2> 284 struct is_subtype<UnionT<T1, T2>, UnionT<U1, U2>> { 286 (is_subtype<T1, U1>::value || is_subtype<T1, U2>::value) && 287 (is_subtype<T2, U1>::value || is_subtype<T2, U2>::value); 332 template <class T, class U1, class U2> 333 struct types_have_common_values<T, UnionT<U1, U2>> { 334 static const bool value = types_have_common_values<T, U1> [all...] |
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
H A D | 067-nested-ifdef-ifndef.c | 6 #ifdef U1 34 #ifndef U1
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolRecord.h | 163 uint32_t U1 = 0; member 266 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 270 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 274 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 278 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 282 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 286 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 290 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 294 Result.U1 = GetCompressedAnnotation(Next); in ParseCurrentAnnotation() 298 Result.U1 in ParseCurrentAnnotation() [all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | bmp_to_nv12.py | 62 U1 = converted_pixels[((((i / width) * 2) * width) + (i % width)) * 3 + 1] variable 66 uv_buffer[i] = (U1 + U2) / 2
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolDumper.cpp | 466 W.printHex(Annotation.Name, Annotation.U1); in visitKnownRecord() 473 W.printNumber(Annotation.Name, Annotation.U1); in visitKnownRecord() 482 ObjDelegate->getFileNameForFileOffset(Annotation.U1), in visitKnownRecord() 483 Annotation.U1); in visitKnownRecord() 485 W.printHex("ChangeFile", Annotation.U1); in visitKnownRecord() 491 << W.hex(Annotation.U1) << ", LineOffset: " << Annotation.S1 in visitKnownRecord() 498 << ", Length: " << W.hex(Annotation.U1) << "}\n"; in visitKnownRecord()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | strictOptionalProperties1.js | 183 interface U1 { 192 declare const u1: U1 449 interface U1 {
458 declare const u1: U1;
|
H A D | ramdaToolsNoInfinite2.js | 71 export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
|
H A D | intersectionReduction.js | 47 type U1 = Partial<A & B>; // never
|
H A D | intersectionReductionStrict.js | 47 type U1 = Partial<A & B>; // never
|
H A D | templateLiteralTypes1.js | 192 type U1 = {a1:A} | {b1:A} | {c1:A} | {d1:A} | {e1:A} | {f1:A} | {g1:A} | {h1:A} | {i1:A} | {j1:A}; 198 type U100000 = U1 & U2 & U3 & U4 & U5; // Error
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | yuv_sse41.c | 510 __m128i rgb[6], U0, V0, U1, V1; in ConvertARGBToUV_SSE41() local 521 ConvertRGBToUV_SSE41(&rgb[0], &rgb[2], &rgb[4], &U1, &V1); in ConvertARGBToUV_SSE41() 523 U0 = _mm_packus_epi16(U0, U1); in ConvertARGBToUV_SSE41() 576 __m128i r, g, b, U0, V0, U1, V1; in ConvertRGBA32ToUV_SSE41() local 580 ConvertRGBToUV_SSE41(&r, &g, &b, &U1, &V1); in ConvertRGBA32ToUV_SSE41() 581 STORE_16(_mm_packus_epi16(U0, U1), u); in ConvertRGBA32ToUV_SSE41()
|
H A D | yuv_sse2.c | 664 __m128i rgb[6], U0, V0, U1, V1; in ConvertARGBToUV_SSE2() local 675 ConvertRGBToUV_SSE2(&rgb[0], &rgb[2], &rgb[4], &U1, &V1); in ConvertARGBToUV_SSE2() 677 U0 = _mm_packus_epi16(U0, U1); in ConvertARGBToUV_SSE2() 720 __m128i r, g, b, U0, V0, U1, V1; in ConvertRGBA32ToUV_SSE2() local 724 ConvertRGBToUV_SSE2(&r, &g, &b, &U1, &V1); in ConvertRGBA32ToUV_SSE2() 725 STORE_16(_mm_packus_epi16(U0, U1), u); in ConvertRGBA32ToUV_SSE2()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | DataExtractor.h | 24 Uint24(uint8_t U0, uint8_t U1, uint8_t U2) { in Uint24() 25 Bytes[0] = U0; Bytes[1] = U1; Bytes[2] = U2; in Uint24()
|
/third_party/mbedtls/library/ |
H A D | bignum.c | 1884 mbedtls_mpi G, TA, TU, U1, U2, TB, TV, V1, V2; in mbedtls_mpi_inv_mod() local 1890 mbedtls_mpi_init(&TA); mbedtls_mpi_init(&TU); mbedtls_mpi_init(&U1); mbedtls_mpi_init(&U2); in mbedtls_mpi_inv_mod() 1906 MBEDTLS_MPI_CHK(mbedtls_mpi_lset(&U1, 1)); in mbedtls_mpi_inv_mod() 1915 if ((U1.p[0] & 1) != 0 || (U2.p[0] & 1) != 0) { in mbedtls_mpi_inv_mod() 1916 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&U1, &U1, &TB)); in mbedtls_mpi_inv_mod() 1920 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(&U1, 1)); in mbedtls_mpi_inv_mod() 1938 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&U1, &U1, &V1)); in mbedtls_mpi_inv_mod() 1942 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&V1, &V1, &U1)); in mbedtls_mpi_inv_mod() [all...] |
/third_party/ffmpeg/libswscale/ppc/ |
H A D | yuv2rgb_altivec.c | 647 vector signed short X, X0, X1, Y0, U0, V0, Y1, U1, V1, U, V; in yuv2packedX_altivec() local 701 * U0 = u0 u0 u1 u1 u2 u2 u3 u3 U1 = u4 u4 u5 u5 u6 u6 u7 u7 in yuv2packedX_altivec() 708 U1 = vec_mergel(U, U); in yuv2packedX_altivec() 712 cvtyuvtoRGB(c, Y1, U1, V1, &R1, &G1, &B1); in yuv2packedX_altivec() 792 * U0 = u0 u0 u1 u1 u2 u2 u3 u3 U1 = u4 u4 u5 u5 u6 u6 u7 u7 in yuv2packedX_altivec() 799 U1 = vec_mergel(U, U); in yuv2packedX_altivec() 803 cvtyuvtoRGB(c, Y1, U1, V1, &R1, &G1, &B1); in yuv2packedX_altivec()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 161 unsigned U1 = hexDigitValue(MSB); in hexFromNibbles() local 163 assert(U1 != -1U && U2 != -1U); in hexFromNibbles() 165 return static_cast<uint8_t>((U1 << 4) | U2); in hexFromNibbles()
|
/third_party/ffmpeg/libavcodec/ |
H A D | truemotion2.c | 86 int *Y1, *U1, *V1, *Y2, *U2, *V2; member 431 U = (ctx->cur?ctx->U2:ctx->U1) + by * 2 * Ustride + bx * 2;\ 445 Uo = (ctx->cur?ctx->U1:ctx->U2) + by * 2 * oUstride + bx * 2; 825 U = (ctx->cur?ctx->U2:ctx->U1); in tm2_decode_blocks() 984 l->U1 = l->UV_base + l->uv_stride * 2 + 2; in decode_init() 985 l->U2 = l->U1 + w * h; in decode_init()
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 878 $U1,$U2,$S1,$S2)=map(32*$_,(0..11)); 985 call __ecp_nistz256_mul_mont ! p256_mul_mont(U1, in1_x, Z2sqr); 986 add %sp,LOCALS+$U1,$rp 993 add %sp,LOCALS+$U1,$bp 994 call __ecp_nistz256_sub_from ! p256_sub(H, U2, U1); 1005 bne,pt %icc,.Ladd_proceed ! is_equal(U1,U2)? 1080 add %sp,LOCALS+$U1,$bp 1082 call __ecp_nistz256_mul_mont ! p256_mul_mont(U2, U1, Hsqr); 2298 $U1,$U2,$S1,$S2)=map(32*$_,(0..17)); 2520 call __ecp_nistz256_mul_mont_vis3 ! p256_mul_mont(U1, in1_ [all...] |
H A D | ecp_nistz256-armv4.pl | 1395 $U1,$U2,$S1,$S2)=map(32*$_,(0..17)); 1499 add $r_ptr,sp,#$U1 1500 bl __ecp_nistz256_mul_mont @ p256_mul_mont(U1, in1_x, Z2sqr); 1507 add $b_ptr,sp,#$U1 1509 bl __ecp_nistz256_sub_from @ p256_sub(H, U2, U1); 1517 orr $a0,$a0,$a4 @ ~is_equal(U1,U2) 1528 @ if(~is_equal(U1,U2) | in1infty | in2infty | ~is_equal(S1,S2)) 1564 add $b_ptr,sp,#$U1 1566 bl __ecp_nistz256_mul_mont @ p256_mul_mont(U2, U1, Hsqr);
|
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-sparcv9.pl | 878 $U1,$U2,$S1,$S2)=map(32*$_,(0..11)); 985 call __ecp_nistz256_mul_mont ! p256_mul_mont(U1, in1_x, Z2sqr); 986 add %sp,LOCALS+$U1,$rp 993 add %sp,LOCALS+$U1,$bp 994 call __ecp_nistz256_sub_from ! p256_sub(H, U2, U1); 1005 bne,pt %icc,.Ladd_proceed ! is_equal(U1,U2)? 1080 add %sp,LOCALS+$U1,$bp 1082 call __ecp_nistz256_mul_mont ! p256_mul_mont(U2, U1, Hsqr); 2298 $U1,$U2,$S1,$S2)=map(32*$_,(0..17)); 2520 call __ecp_nistz256_mul_mont_vis3 ! p256_mul_mont(U1, in1_ [all...] |
H A D | ecp_nistz256-armv4.pl | 1395 $U1,$U2,$S1,$S2)=map(32*$_,(0..17)); 1499 add $r_ptr,sp,#$U1 1500 bl __ecp_nistz256_mul_mont @ p256_mul_mont(U1, in1_x, Z2sqr); 1507 add $b_ptr,sp,#$U1 1509 bl __ecp_nistz256_sub_from @ p256_sub(H, U2, U1); 1517 orr $a0,$a0,$a4 @ ~is_equal(U1,U2) 1528 @ if(~is_equal(U1,U2) | in1infty | in2infty | ~is_equal(S1,S2)) 1564 add $b_ptr,sp,#$U1 1566 bl __ecp_nistz256_mul_mont @ p256_mul_mont(U2, U1, Hsqr);
|
/third_party/selinux/checkpolicy/ |
H A D | policy_parse.y | 143 %token U1 U2 U3 R1 R2 R3 T1 T2 T3 L1 L2 H1 H2 566 cexpr_prim : U1 op U2 575 | U1 op { if (insert_separator(1)) return -1; } names_push
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ecp_nistz256.c | 316 BN_ULONG U1[P256_LIMBS], S1[P256_LIMBS]; in ecp_nistz256_point_add() local 362 ecp_nistz256_mul_mont(U1, in1_x, Z2sqr); /* U1 = X1*Z2^2 */ in ecp_nistz256_point_add() 364 ecp_nistz256_sub(H, U2, U1); /* H = U2 - U1 */ in ecp_nistz256_point_add() 377 * intermediate variables U1, U2 and S1, S2 that are derived from in ecp_nistz256_point_add() 379 * - U1 = X1 * (Z2)^2 ; U2 = X2 * (Z1)^2 in ecp_nistz256_point_add() 382 * It is easy to prove that is_equal(U1, U2) implies that the affine in ecp_nistz256_point_add() 393 * Therefore since U1 = U2, we know H = 0, and therefore Z3 = H*Z1*Z2 in ecp_nistz256_point_add() 400 if (is_equal(U1, U in ecp_nistz256_point_add() [all...] |
/third_party/openssl/crypto/ec/ |
H A D | ecp_nistz256.c | 316 BN_ULONG U1[P256_LIMBS], S1[P256_LIMBS]; in ecp_nistz256_point_add() local 362 ecp_nistz256_mul_mont(U1, in1_x, Z2sqr); /* U1 = X1*Z2^2 */ in ecp_nistz256_point_add() 364 ecp_nistz256_sub(H, U2, U1); /* H = U2 - U1 */ in ecp_nistz256_point_add() 377 * intermediate variables U1, U2 and S1, S2 that are derived from in ecp_nistz256_point_add() 379 * - U1 = X1 * (Z2)^2 ; U2 = X2 * (Z1)^2 in ecp_nistz256_point_add() 382 * It is easy to prove that is_equal(U1, U2) implies that the affine in ecp_nistz256_point_add() 393 * Therefore since U1 = U2, we know H = 0, and therefore Z3 = H*Z1*Z2 in ecp_nistz256_point_add() 400 if (is_equal(U1, U in ecp_nistz256_point_add() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | civil_time_test.cc | 549 template <typename U1, typename U2> 551 template <typename U1, typename U2> 552 static std::true_type test(decltype(std::declval<U1>() - std::declval<U2>()));
|