/external/boringssl/src/crypto/bn/asm/ |
rsaz-avx2.pl | 282 $TEMP2=$Y2; 314 vpmuludq 32*2-128($aap), $B2, $TEMP2 315 vpaddq $TEMP2, $ACC4, $ACC4 320 vpmuludq 32*5-128($aap), $B2, $TEMP2 321 vpaddq $TEMP2, $ACC7, $ACC7 331 vpmuludq 32*2-128($ap), $B1, $TEMP2 332 vpaddq $TEMP2, $ACC4, $ACC4 337 vpmuludq 32*4-128($aap), $B1, $TEMP2 338 vpaddq $TEMP2, $ACC7, $ACC7 354 vpmuludq 32*4-128($aap), $B2, $TEMP2 [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 178 // Let TEMP2 = IV || TEMP1. 179 byte[] TEMP2 = new byte[this.iv.length + TEMP1.length]; 181 System.arraycopy(this.iv, 0, TEMP2, 0, this.iv.length); 182 System.arraycopy(TEMP1, 0, TEMP2, this.iv.length, TEMP1.length); 184 // Reverse the order of the octets in TEMP2 and call the result TEMP3. 185 byte[] TEMP3 = reverse(TEMP2); 259 // Reverse the order of the octets in TEMP3 and call the result TEMP2. 260 byte[] TEMP2 = reverse(TEMP3); 262 // Decompose TEMP2 into IV, the first 8 octets, and TEMP1, the remaining octets. 265 byte[] TEMP1 = new byte[TEMP2.length - 8] [all...] |
/external/eigen/blas/fortran/ |
chbmv.f | 143 COMPLEX TEMP1,TEMP2 235 TEMP2 = ZERO 239 TEMP2 = TEMP2 + CONJG(A(L+I,J))*X(I) 241 Y(J) = Y(J) + TEMP1*REAL(A(KPLUS1,J)) + ALPHA*TEMP2 248 TEMP2 = ZERO 254 TEMP2 = TEMP2 + CONJG(A(L+I,J))*X(IX) 258 Y(JY) = Y(JY) + TEMP1*REAL(A(KPLUS1,J)) + ALPHA*TEMP2 274 TEMP2 = ZER [all...] |
chpmv.f | 109 COMPLEX TEMP1,TEMP2 197 TEMP2 = ZERO 201 TEMP2 = TEMP2 + CONJG(AP(K))*X(I) 204 Y(J) = Y(J) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2 212 TEMP2 = ZERO 217 TEMP2 = TEMP2 + CONJG(AP(K))*X(IX) 221 Y(JY) = Y(JY) + TEMP1*REAL(AP(KK+J-1)) + ALPHA*TEMP2 234 TEMP2 = ZER [all...] |
dsbmv.f | 137 DOUBLE PRECISION TEMP1,TEMP2 229 TEMP2 = ZERO 233 TEMP2 = TEMP2 + A(L+I,J)*X(I) 235 Y(J) = Y(J) + TEMP1*A(KPLUS1,J) + ALPHA*TEMP2 242 TEMP2 = ZERO 248 TEMP2 = TEMP2 + A(L+I,J)*X(IX) 252 Y(JY) = Y(JY) + TEMP1*A(KPLUS1,J) + ALPHA*TEMP2 268 TEMP2 = ZER [all...] |
dspmv.f | 105 DOUBLE PRECISION TEMP1,TEMP2 190 TEMP2 = ZERO 194 TEMP2 = TEMP2 + AP(K)*X(I) 197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 205 TEMP2 = ZERO 210 TEMP2 = TEMP2 + AP(K)*X(IX) 214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 227 TEMP2 = ZER [all...] |
ssbmv.f | 139 REAL TEMP1,TEMP2 231 TEMP2 = ZERO 235 TEMP2 = TEMP2 + A(L+I,J)*X(I) 237 Y(J) = Y(J) + TEMP1*A(KPLUS1,J) + ALPHA*TEMP2 244 TEMP2 = ZERO 250 TEMP2 = TEMP2 + A(L+I,J)*X(IX) 254 Y(JY) = Y(JY) + TEMP1*A(KPLUS1,J) + ALPHA*TEMP2 270 TEMP2 = ZER [all...] |
sspmv.f | 105 REAL TEMP1,TEMP2 190 TEMP2 = ZERO 194 TEMP2 = TEMP2 + AP(K)*X(I) 197 Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 205 TEMP2 = ZERO 210 TEMP2 = TEMP2 + AP(K)*X(IX) 214 Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 227 TEMP2 = ZER [all...] |
zhbmv.f | 143 DOUBLE COMPLEX TEMP1,TEMP2 235 TEMP2 = ZERO 239 TEMP2 = TEMP2 + DCONJG(A(L+I,J))*X(I) 241 Y(J) = Y(J) + TEMP1*DBLE(A(KPLUS1,J)) + ALPHA*TEMP2 248 TEMP2 = ZERO 254 TEMP2 = TEMP2 + DCONJG(A(L+I,J))*X(IX) 258 Y(JY) = Y(JY) + TEMP1*DBLE(A(KPLUS1,J)) + ALPHA*TEMP2 274 TEMP2 = ZER [all...] |
zhpmv.f | 109 DOUBLE COMPLEX TEMP1,TEMP2 197 TEMP2 = ZERO 201 TEMP2 = TEMP2 + DCONJG(AP(K))*X(I) 204 Y(J) = Y(J) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 212 TEMP2 = ZERO 217 TEMP2 = TEMP2 + DCONJG(AP(K))*X(IX) 221 Y(JY) = Y(JY) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 234 TEMP2 = ZER [all...] |
/external/webp/src/dsp/ |
enc_mips32.c | 33 #define VERTICAL_PASS(A, B, C, D, TEMP4, TEMP0, TEMP1, TEMP2, TEMP3) \ 48 "subu %[" #TEMP2 "], %[" #TEMP0 "], %[temp18] \n\t" \ 51 "addu %[" #TEMP1 "], %[temp16], %[" #TEMP2 "] \n\t" \ 52 "subu %[" #TEMP2 "], %[temp16], %[" #TEMP2 "] \n\t" \ 118 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local 125 VERTICAL_PASS(0, 16, 8, 24, temp4, temp0, temp1, temp2, temp3) 132 HORIZONTAL_PASS(2, temp2, temp6, temp10, temp14) 135 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), 192 int temp0, temp1, temp2, temp3, temp4, temp5; local 367 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local 482 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local 544 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local 578 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local 604 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local 626 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local [all...] |
enc_mips_dsp_r2.c | 79 #define HORIZONTAL_PASS(A, TEMP0, TEMP1, TEMP2, TEMP3) \ 82 "lw %[" #TEMP2 "], " XSTR(BPS) "*" #A "(%[" #TEMP0 "]) \n\t" \ 84 "preceu.ph.qbl %[" #TEMP0 "], %[" #TEMP2 "] \n\t" \ 86 "preceu.ph.qbr %[" #TEMP2 "], %[" #TEMP2 "] \n\t" \ 89 "subq.ph %[" #TEMP2 "], %[" #TEMP2 "], %[" #TEMP3 "] \n\t" \ 91 "addq.ph %[" #TEMP1 "], %[" #TEMP2 "], %[" #TEMP0 "] \n\t" \ 92 "subq.ph %[" #TEMP3 "], %[" #TEMP2 "], %[" #TEMP0 "] \n\t" \ 97 "subu %[" #TEMP2 "], %[" #TEMP0 "], %[temp16] \n\t" 147 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local 175 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local 251 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local 484 int temp0, temp1, temp2, temp3; local 547 int temp0, temp1, temp2, temp3; local 611 int a10, a32, temp0, temp1, temp2, temp3, temp4, temp5; local 666 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local 697 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local 733 int temp0, temp1, temp2, temp3, temp4, temp5; local 782 int temp0, temp1, temp2, temp3, temp4; local 832 int temp0, temp1, temp2, temp3, temp4, temp5; local 879 int temp0, temp1, temp2, temp3, temp4; local 928 int temp0, temp1, temp2, temp3, temp4; local 976 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local 1082 int temp0, temp1, temp2, temp3; local 1112 int temp0, temp1, temp2, temp3; local 1134 int temp0, temp1, temp2, temp3; local 1152 int temp0, temp1, temp2, temp3; local 1275 int temp0, temp1, temp2, temp3, temp4, temp5,temp6; local 1362 int temp0, temp1, temp2, temp3, temp4; local 1463 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local [all...] |
dec_mips_dsp_r2.c | 27 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10; local 30 LOAD_WITH_OFFSET_X4(temp1, temp2, temp3, temp4, dst, 38 CONVERT_2_BYTES_TO_HALF(temp6, temp7, temp8, temp9, temp10, temp1, temp2, 39 temp3, temp1, temp2, temp3, temp4) 40 STORE_SAT_SUM_X2(temp6, temp7, temp8, temp9, temp10, temp1, temp2, temp3, 56 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local 63 ADD_SUB_HALVES(temp2, temp3, temp1, c4) 65 SHIFT_R_SUM_X2(temp1, temp6, temp7, temp8, temp2, temp9, temp10, temp4, 66 temp2, temp2, temp3, temp3, temp4, temp5, temp4, temp5 87 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local 164 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local 302 int step1, step2, temp1, temp2, temp3, temp4; local 490 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local 559 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local 631 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local 660 int temp0, temp1, temp2, temp3, temp4; local 682 int temp0, temp1, temp2, temp3, temp4; local 732 int temp0, temp1, temp2, temp3, temp4; local 779 int temp0, temp1, temp2, temp3, temp4; local 839 int temp0, temp1, temp2, temp3, temp4; local [all...] |
/prebuilts/sdk/tools/lib/ |
signapk.jar | |