/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/ |
D | SDL_iconv.c | 479 Uint16 W1, W2; in SDL_iconv() local 483 W1 = ((Uint16) p[0] << 8) | (Uint16) p[1]; in SDL_iconv() 486 if (W1 < 0xD800 || W1 > 0xDFFF) { in SDL_iconv() 487 ch = (Uint32) W1; in SDL_iconv() 490 if (W1 > 0xDBFF) { in SDL_iconv() 511 ch = (((Uint32) (W1 & 0x3FF) << 10) | in SDL_iconv() 518 Uint16 W1, W2; in SDL_iconv() local 522 W1 = ((Uint16) p[1] << 8) | (Uint16) p[0]; in SDL_iconv() 525 if (W1 < 0xD800 || W1 > 0xDFFF) { in SDL_iconv() 526 ch = (Uint32) W1; in SDL_iconv() [all …]
|
/third_party/openssl/crypto/sha/asm/ |
D | sha512-armv8.pl | 375 my ($W0,$W1)=("v16.4s","v17.4s"); 403 ld1.32 {$W1},[$Ktbl],#16 411 ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG)); 414 ld1.32 {$W1},[$Ktbl],#16 421 add.i32 $W1,$W1,@MSG[1] 423 sha256h $ABCD,$EFGH,$W1 424 sha256h2 $EFGH,$abcd,$W1 426 ld1.32 {$W1},[$Ktbl] 433 add.i32 $W1,$W1,@MSG[3] 435 sha256h $ABCD,$EFGH,$W1 [all …]
|
D | sha1-armv8.pl | 248 my ($W0,$W1)=("v20.4s","v21.4s"); 276 add.i32 $W1,@Kxx[0],@MSG[1] 287 sha1$f $ABCD,$E1,$W1 288 add.i32 $W1,@Kxx[$j],@MSG[3] 294 ($E0,$E1)=($E1,$E0); ($W0,$W1)=($W1,$W0); 299 sha1p $ABCD,$E1,$W1 300 add.i32 $W1,@Kxx[$j],@MSG[3] 306 sha1p $ABCD,$E1,$W1
|
D | sha256-armv4.pl | 599 my ($W0,$W1,$ABCD_SAVE,$EFGH_SAVE)=map("q$_",(12..15)); 635 vld1.32 {$W1},[$Ktbl]! 643 ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG)); 646 vld1.32 {$W1},[$Ktbl]! 653 vadd.i32 $W1,$W1,@MSG[1] 655 sha256h $ABCD,$EFGH,$W1 656 sha256h2 $EFGH,$abcd,$W1 658 vld1.32 {$W1},[$Ktbl] 665 vadd.i32 $W1,$W1,@MSG[3] 667 sha256h $ABCD,$EFGH,$W1 [all …]
|
D | sha1-armv4-large.pl | 615 my ($W0,$W1,$ABCD_SAVE)=map("q$_",(12..14)); 653 vadd.i32 $W1,@Kxx[0],@MSG[1] 664 sha1$f $ABCD,$E1,$W1 665 vadd.i32 $W1,@Kxx[$j],@MSG[3] 671 ($E0,$E1)=($E1,$E0); ($W0,$W1)=($W1,$W0); 676 sha1p $ABCD,$E1,$W1 677 vadd.i32 $W1,@Kxx[$j],@MSG[3] 683 sha1p $ABCD,$E1,$W1
|
/third_party/ffmpeg/libavutil/tests/ |
D | pixelutils.c | 21 #define W1 320 macro 65 int r = run_single_test(test, b1, W1, b2, W2, a, i); in run_test() 76 uint8_t *buf1 = av_malloc(W1*H1); in main() 97 RANDOM_INIT(buf1, W1*H1); in main() 104 memset(buf1, 0xff, W1*H1); in main() 111 memset(buf1, 0x90, W1*H1); in main()
|
/third_party/ffmpeg/libavcodec/ |
D | simple_idct_template.c | 35 #undef W1 50 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro 68 #define W1 22725 // 90901 macro 91 #define W1 45451 macro 169 b0 = MUL(W1, row[1]); 174 MAC(b2, -W1, row[3]); 191 MAC(b1, -W1, row[5]); 198 MAC(b3, -W1, row[7]); 222 b0 = MUL(W1, col[8*1]); \ 229 MAC(b2, -W1, col[8*3]); \ [all …]
|
D | wmv2dsp.c | 27 #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */ macro 41 a1 = W1 * b[1] + W7 * b[7]; in wmv2_idct_row() 42 a7 = W7 * b[1] - W1 * b[7]; in wmv2_idct_row() 71 a1 = (W1 * b[8 * 1] + W7 * b[8 * 7] + 4) >> 3; in wmv2_idct_col() 72 a7 = (W7 * b[8 * 1] - W1 * b[8 * 7] + 4) >> 3; in wmv2_idct_col()
|
/third_party/ffmpeg/libavcodec/alpha/ |
D | simple_idct_alpha.c | 35 #define W1 22725 macro 103 b0 = W1 * t; in idct_row() 119 b2 -= W1 * t; in idct_row() 128 b1 -= W1 * t; in idct_row() 139 b3 -= W1 * t; in idct_row() 187 b0 = W1 * col[8 * 1]; in idct_col() 201 b2 -= W1 * col[8 * 3]; in idct_col() 207 b1 -= W1 * col[8 * 5]; in idct_col() 216 b3 -= W1 * col[8 * 7]; in idct_col()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | simple_idct_mmi.c | 31 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro 45 W1, W3, W5, W7, 47 W3, -W7, -W1, -W5, 49 W5, -W1, W7, W3, 51 W7, -W5, W3, -W1,
|
D | wmv2dsp_mmi.c | 29 #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */ macro 44 a1 = W1 * b[1] + W7 * b[7]; in wmv2_idct_row_mmi() 50 a7 = W7 * b[1] - W1 * b[7]; in wmv2_idct_row_mmi() 74 a1 = (W1 * b[ 8] + W7 * b[56] + 4) >> 3; in wmv2_idct_col_mmi() 80 a7 = (W7 * b[ 8] - W1 * b[56] + 4) >> 3; in wmv2_idct_col_mmi()
|
/third_party/ffmpeg/libavcodec/arm/ |
D | simple_idct_arm.S | 29 #define W1 22725 macro 92 @@ MUL16(b0, W1, row[1]); 98 @@ MAC16(b2, -W1, row[3]); 100 ldr r8, =W1 @ R8=W1 102 …mul r0, r8, r7 @ R0=W1*ROWr16[1]=b0 (ROWr16[1] must be the second arg, to have the possi… 114 …mlane r5, r8, r2, r5 @ R5-=W1*ROWr16[3]=b2 (ROWr16[3] must be the second arg, to have the poss… 119 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7, 127 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7, 132 @@ MAC16(b1, -W1, row[5]); 135 @@ MAC16(b3, -W1, row[7]); [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_color_space.cpp | 216 dng_vector_3 W1 = M * dng_vector_3 (1.0, 1.0, 1.0); in SetMatrixToPCS() local 219 real64 s0 = W2 [0] / W1 [0]; in SetMatrixToPCS() 220 real64 s1 = W2 [1] / W1 [1]; in SetMatrixToPCS() 221 real64 s2 = W2 [2] / W1 [2]; in SetMatrixToPCS()
|
/third_party/boost/libs/math/example/ |
D | lambert_w_example.cpp | 95 double W1 = lambert_w(1.); in main() local 108 if (expplogone != W1) in main() 110 std::cout << expplogone << " " << W1 << std::endl; // in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonBitTracker.cpp | 371 uint16_t W1 = getRegBitWidth(Reg[1]); in evaluate() local 372 assert(W0 == 64 && W1 == 32); in evaluate() 373 RegisterCell CW = RegisterCell(W0).insert(rc(1), BT::BitMask(0, W1-1)); in evaluate() 374 RegisterCell RC = eADD(eSXT(CW, W1), rc(2)); in evaluate() 700 uint16_t W1 = getRegBitWidth(Reg[1]); in evaluate() local 704 RegisterCell RZ = RegisterCell(W0).fill(BX, W1, Zero) in evaluate() 705 .fill(W1+(W1-BX), W0, Zero); in evaluate() 706 RegisterCell BF1 = eXTR(rc(1), 0, BX), BF2 = eXTR(rc(1), BX, W1); in evaluate() 707 RegisterCell RC = eINS(eINS(RZ, BF1, 0), BF2, W1); in evaluate() 829 uint16_t W1 = getRegBitWidth(Reg[1]); in evaluate() local [all …]
|
D | HexagonCallingConv.td | 89 CCAssignToReg<[W0,W1,W2,W3,W4,W5,W6,W7]>>>, 103 CCAssignToReg<[W0,W1,W2,W3,W4,W5,W6,W7]>>>,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | BinaryStreamWriter.cpp | 90 BinaryStreamWriter W1{First}; in split() local 92 return std::make_pair(W1, W2); in split()
|
D | BinaryStreamReader.cpp | 176 BinaryStreamReader W1{First}; in split() local 178 return std::make_pair(W1, W2); in split()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BPFCallingConv.td | 37 CCIfType<[i32], CCAssignToRegWithShadow<[W1, W2, W3, W4, W5], 42 [W1, W2, W3, W4, W5]>>,
|
/third_party/typescript/tests/cases/compiler/ |
D | constEnums.ts | 33 W1 = A0, enumerator 141 case Enum1.W1:
|
/third_party/boost/boost/graph/ |
D | sloan_ordering.hpp | 265 PriorityMap priority, Weight W1, Weight W2) in sloan_ordering() argument 300 put(priority, *ui, W1 * dist[index_map[*ui]] - W2 * cdeg); in sloan_ordering() 424 Color color, Degree degree, Priority priority, Weight W1, Weight W2) in sloan_ordering() argument 432 G, s, e, permutation, color, degree, priority, W1, W2); in sloan_ordering()
|
/third_party/boost/libs/mp11/test/ |
D | mp_transform.cpp | 38 struct W1 {}; struct 96 using L11 = std::pair<W1, W2>; in main() 100 …tuple, L5, L6, L8, L9, L10, L11>, std::pair<std::tuple<X1, Y1, Z1, U1, V1, W1>, std::tuple<X2, Y2,… in main()
|
D | mp_transform_q.cpp | 39 struct W1 {}; struct 105 using L11 = std::pair<W1, W2>; in main() 109 …tuple, L5, L6, L8, L9, L10, L11>, std::pair<std::tuple<X1, Y1, Z1, U1, V1, W1>, std::tuple<X2, Y2,… in main()
|
/third_party/typescript/tests/baselines/reference/ |
D | constEnums.js | 34 W1 = A0, 142 case Enum1.W1:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64CallingConvention.td | 56 CCIfSRet<CCIfType<[i64], CCAssignToRegWithShadow<[X0, X1], [W0, W1]>>>>>, 92 CCIfType<[i32], CCAssignToRegWithShadow<[W0, W1, W2, W3, W4, W5, W6, W7], 102 [W0, W1, W2, W3, W4, W5, W6, W7]>>, 141 CCIfType<[i32], CCAssignToRegWithShadow<[W0, W1, W2, W3, W4, W5, W6, W7], 144 [W0, W1, W2, W3, W4, W5, W6, W7]>>, 209 CCIfType<[i32], CCAssignToRegWithShadow<[W0, W1, W2, W3, W4, W5, W6, W7], 214 [W0, W1, W2, W3, W4, W5, W6]>>>, 219 [W0, W1, W2, W3, W4, W5, W6, W7]>>, 310 CCIfType<[i32], CCAssignToRegWithShadow<[W0, W1, W2, W3, W4, W5, W6, W7], 313 [W0, W1, W2, W3, W4, W5, W6, W7]>>,
|