/third_party/node/deps/openssl/openssl/crypto/rc4/asm/ |
H A D | rc4-c64xplus.pl | 31 ($KEYB,$YY,$TX,$tx,$SUM,$dat)=map("B$_",(5,7,8,9,1,2)); 56 [B0] LDBU *${KEYB}[-1],$YY ; key->y 65 || ADD4 $TX,$YY,$YY 67 LDBU *${KEYB}[$YY],$TY 71 CMPEQ $YY,$XX,B0 73 STB $TX,*${KEYB}[$YY] 74 ||[B0] ADD4 $TX,$YY,$YY 76 ||[!B0] ADD4 $tx,$YY, [all...] |
H A D | rc4-parisc.pl | 89 $YY="%r28"; 106 $LDX $YY($key),$TY 107 $MKX $YY,$key,$ix 111 comclr,<> $XX[1],$YY,%r0 ; conditional 116 addl $TX[1],$YY,$YY 118 and $mask,$YY,$YY 127 $MKX $YY,$key,$iy 128 $LDX $YY( [all...] |
H A D | rc4-s390x.pl | 66 $YY="%r10"; 81 llgc $YY,1($key) 95 la $YY,0($YY,$TX[0]) # $i 96 nill $YY,255 108 llgc $TY,2($YY,$key) 109 stc $TX[0],2($YY,$key) 112 cr $XX[1],$YY 140 la $YY,0($YY, [all...] |
H A D | rc4-md5-x86_64.pl | 117 my $YY="%rcx"; 164 xor $YY,$YY 168 mov -4($dat),$YY#b 183 add $TX[0]#b,$YY#b 184 movl ($dat,$YY,4),$TY#d 185 movl $TX[0]#d,($dat,$YY,4) 197 mov $YY,$TX[1] 198 xor $YY,$YY [all...] |
H A D | rc4-x86_64.pl | 167 my $YY="%rcx"; 172 xor $YY,$YY 176 mov -4($dat),$YY#b 194 add $TX[0]#b,$YY#b 195 movl ($dat,$YY,4),$TY#d 196 movl $TX[0]#d,($dat,$YY,4) 218 add $TX[0]#b,$YY#b 219 movl ($dat,$YY,4),$TY#d 220 movl $TX[0]#d,($dat,$YY, [all...] |
/third_party/openssl/crypto/rc4/asm/ |
H A D | rc4-c64xplus.pl | 31 ($KEYB,$YY,$TX,$tx,$SUM,$dat)=map("B$_",(5,7,8,9,1,2)); 56 [B0] LDBU *${KEYB}[-1],$YY ; key->y 65 || ADD4 $TX,$YY,$YY 67 LDBU *${KEYB}[$YY],$TY 71 CMPEQ $YY,$XX,B0 73 STB $TX,*${KEYB}[$YY] 74 ||[B0] ADD4 $TX,$YY,$YY 76 ||[!B0] ADD4 $tx,$YY, [all...] |
H A D | rc4-parisc.pl | 89 $YY="%r28"; 106 $LDX $YY($key),$TY 107 $MKX $YY,$key,$ix 111 comclr,<> $XX[1],$YY,%r0 ; conditional 116 addl $TX[1],$YY,$YY 118 and $mask,$YY,$YY 127 $MKX $YY,$key,$iy 128 $LDX $YY( [all...] |
H A D | rc4-s390x.pl | 66 $YY="%r10"; 81 llgc $YY,1($key) 95 la $YY,0($YY,$TX[0]) # $i 96 nill $YY,255 108 llgc $TY,2($YY,$key) 109 stc $TX[0],2($YY,$key) 112 cr $XX[1],$YY 140 la $YY,0($YY, [all...] |
H A D | rc4-md5-x86_64.pl | 117 my $YY="%rcx"; 164 xor $YY,$YY 168 mov -4($dat),$YY#b 183 add $TX[0]#b,$YY#b 184 movl ($dat,$YY,4),$TY#d 185 movl $TX[0]#d,($dat,$YY,4) 197 mov $YY,$TX[1] 198 xor $YY,$YY [all...] |
H A D | rc4-x86_64.pl | 167 my $YY="%rcx"; 172 xor $YY,$YY 176 mov -4($dat),$YY#b 194 add $TX[0]#b,$YY#b 195 movl ($dat,$YY,4),$TY#d 196 movl $TX[0]#d,($dat,$YY,4) 218 add $TX[0]#b,$YY#b 219 movl ($dat,$YY,4),$TY#d 220 movl $TX[0]#d,($dat,$YY, [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | invalidModuleWithVarStatements.js | 16 module YY { 44 var YY;
variable 45 (function (YY) {
47 })(YY || (YY = {}));
|
H A D | invalidModuleWithStatementsOfEveryKind.js | 29 module YY { 147 var YY;
variable 148 (function (YY) {
161 })(YY || (YY = {}));
|
/third_party/skia/src/core/ |
H A D | SkBitmapProcState.cpp | 597 uint32_t YY = *bitmapXY++; 598 unsigned y0 = YY >> 18; 599 unsigned y1 = YY & 0x3FFF; 624 uint32_t YY = *bitmapXY++; 625 unsigned y0 = YY >> 18; 626 unsigned y1 = YY & 0x3FFF; 677 size -= 4; // the shared Y (or YY) coordinate
|
/third_party/mbedtls/library/ |
H A D | ecp.c | 2728 mbedtls_mpi YY, RHS; in ecp_check_pubkey_sw() local 2738 mbedtls_mpi_init(&YY); mbedtls_mpi_init(&RHS); in ecp_check_pubkey_sw() 2741 * YY = Y^2 in ecp_check_pubkey_sw() 2744 MPI_ECP_SQR(&YY, &pt->Y); in ecp_check_pubkey_sw() 2747 if (MPI_ECP_CMP(&YY, &RHS) != 0) { in ecp_check_pubkey_sw() 2753 mbedtls_mpi_free(&YY); mbedtls_mpi_free(&RHS); in ecp_check_pubkey_sw()
|
/third_party/vulkan-loader/loader/ |
H A D | unknown_ext_chain_masm.asm | 28 ; Struct member offsets are defined in the format "XX_OFFSET_YY" where XX indicates the member within the struct and YY indicates
|