Home
last modified time | relevance | path

Searched refs:tmp3 (Results 1 – 25 of 172) sorted by relevance

1234567

/third_party/openssl/crypto/cast/asm/
Dcast-586.pl31 $tmp3="eax";
82 &mov($tmp3,&DWP(128,$K,"",0));
84 &push($tmp3);
86 &or($tmp3,$tmp3);
90 &xor($tmp3, $tmp3);
95 &E_CAST( 0,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
96 &E_CAST( 1,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4);
97 &E_CAST( 2,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
98 &E_CAST( 3,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
99 &E_CAST( 4,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4);
[all …]
/third_party/openssl/crypto/poly1305/asm/
Dpoly1305-mips.pl71 ($in0,$in1,$tmp0,$tmp1,$tmp2,$tmp3,$tmp4) = ($a4,$a5,$a6,$a7,$at,$t0,$t1);
122 and $tmp3,$in1,$tmp0
126 dsll $tmp3,24
131 or $tmp3,$tmp4
141 or $tmp3,$tmp4
143 or $in1,$tmp3
145 dsrl $tmp3,$in1,32
149 or $in1,$tmp3
241 and $tmp3,$in1,$tmp0
245 dsll $tmp3,24
[all …]
/third_party/ffmpeg/libavcodec/
Djrevdct.c215 int32_t tmp0, tmp1, tmp2, tmp3; variable
276 tmp3 = z1 + MULTIPLY(d2, FIX_0_765366865);
281 tmp10 = tmp0 + tmp3;
282 tmp13 = tmp0 - tmp3;
288 tmp3 = MULTIPLY(d6, FIX_0_541196100);
293 tmp10 = tmp0 + tmp3;
294 tmp13 = tmp0 - tmp3;
302 tmp3 = MULTIPLY(d2, FIX_1_306562965);
307 tmp10 = tmp0 + tmp3;
308 tmp13 = tmp0 - tmp3;
[all …]
Djfdctfst.c146 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
162 tmp3 = dataptr[3] + dataptr[4];
167 tmp10 = tmp0 + tmp3; /* phase 2 */
168 tmp13 = tmp0 - tmp3;
210 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in ff_fdct_ifast() local
228 tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4]; in ff_fdct_ifast()
233 tmp10 = tmp0 + tmp3; /* phase 2 */ in ff_fdct_ifast()
234 tmp13 = tmp0 - tmp3; in ff_fdct_ifast()
276 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in ff_fdct_ifast248() local
291 tmp3 = dataptr[DCTSIZE*6] + dataptr[DCTSIZE*7]; in ff_fdct_ifast248()
[all …]
Dhq_hqadsp.c37 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8, tmp9, tmpA; in idct_row() local
43 tmp3 = blk[1] + blk[7]; in idct_row()
44 tmp4 = tmp3 - tmp1; in idct_row()
48 tmp8 = tmp3 + tmp1; in idct_row()
75 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8, tmp9, tmpA; in idct_col() local
81 tmp3 = blk[1 * 8] * 2 + (blk[7 * 8] >> 2); in idct_col()
82 tmp4 = tmp3 - tmp1; in idct_col()
86 tmp8 = (tmp3 + tmp1) >> 1; in idct_col()
Dfaandct.c67 FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in row_fdct() local
79 tmp3= data[3 + i] + data[4 + i]; in row_fdct()
82 tmp10= tmp0 + tmp3; in row_fdct()
83 tmp13= tmp0 - tmp3; in row_fdct()
116 FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in ff_faandct() local
133 tmp3= temp[8*3 + i] + temp[8*4 + i]; in ff_faandct()
136 tmp10= tmp0 + tmp3; in ff_faandct()
137 tmp13= tmp0 - tmp3; in ff_faandct()
170 FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in ff_faandct248() local
183 tmp3 = temp[8*6 + i] + temp[8*7 + i]; in ff_faandct248()
[all …]
Djfdctint_template.c184 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in FUNC() local
202 tmp3 = dataptr[3] + dataptr[4]; in FUNC()
209 tmp10 = tmp0 + tmp3; in FUNC()
210 tmp13 = tmp0 - tmp3; in FUNC()
262 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in FUNC() local
283 tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4]; in FUNC()
290 tmp10 = tmp0 + tmp3; in FUNC()
291 tmp13 = tmp0 - tmp3; in FUNC()
344 int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in FUNC() local
362 tmp3 = dataptr[DCTSIZE*6] + dataptr[DCTSIZE*7]; in FUNC()
[all …]
/third_party/openssl/crypto/bf/asm/
Dbf-586.pl26 $tmp3="ecx";
62 &xor( $tmp3, $tmp3);
69 &BF_ENCRYPT($i+1,$R,$L,$P,$tmp1,$tmp2,$tmp3,$tmp4,1);
73 &BF_ENCRYPT($i+2,$L,$R,$P,$tmp1,$tmp2,$tmp3,$tmp4,1);
81 &xor( $tmp3, $tmp3);
88 &BF_ENCRYPT($i,$R,$L,$P,$tmp1,$tmp2,$tmp3,$tmp4,0);
91 &BF_ENCRYPT($i-1,$L,$R,$P,$tmp1,$tmp2,$tmp3,$tmp4,0);
106 local($i,$L,$R,$P,$tmp1,$tmp2,$tmp3,$tmp4,$enc)=@_;
119 &movb( &LB($tmp3), &HB($tmp4)); # C
126 &mov( $tmp1, &DWP(&n2a($BF_OFF+0x0800),$P,$tmp3,4));
/third_party/optimized-routines/string/aarch64/
Dstrncmp-mte.S34 #define tmp3 x10 macro
135 rev tmp3, data1
136 sub tmp1, tmp3, zeroones
137 orr tmp2, tmp3, #REP8_7f
165 neg tmp3, count, lsl #3 /* 64 - bits(bytes beyond align). */
168 LS_FW tmp2, tmp2, tmp3 /* Shift (count & 63). */
250 orr tmp3, data1, #REP8_7f
252 bic has_nul, has_nul, tmp3 /* Non-zero if NUL byte found in SRC1. */
253 orr tmp3, endloop, has_nul
254 cbnz tmp3, L(full_check)
[all …]
Dstrncmp.S35 #define tmp3 x10 macro
129 rev tmp3, data1
130 sub tmp1, tmp3, zeroones
131 orr tmp2, tmp3, #REP8_7f
158 neg tmp3, count, lsl #3 /* 64 - bits(bytes beyond align). */
164 lsl tmp2, tmp2, tmp3 /* Shift (count & 63). */
167 lsr tmp2, tmp2, tmp3 /* Shift (count & 63). */
169 and tmp3, limit_wd, #7
173 add tmp3, tmp3, count
176 add limit_wd, limit_wd, tmp3, lsr #3
Dstrcpy.S36 #define tmp3 x10 macro
120 sub tmp3, tmp4, zeroones
127 sub tmp3, data2, zeroones
130 bics has_nul2, tmp3, tmp4
211 sub tmp3, data2, zeroones
214 bics has_nul2, tmp3, tmp4
270 sub tmp3, data2, zeroones
273 bics has_nul2, tmp3, tmp4
291 sub tmp3, tmp4, zeroones
302 sub tmp3, data2, zeroones
[all …]
Dstrrchr.S25 #define tmp3 x5 macro
92 lsr tmp3, const_m1, tmp1
95 bic nul_match, nul_match, tmp3 // Mask padding bits.
96 bic chr_match, chr_match, tmp3 // Mask padding bits.
136 clz tmp3, src_offset
140 add tmp3, tmp3, #2
141 sub result, src_match, tmp3, lsr #1
/third_party/libjpeg-turbo/simd/arm/
Djidctint-neon.c372 int32x4_t tmp3 = vmull_lane_s16(z2_s16, consts.val[1], 2); in jsimd_idct_islow_pass1_regular() local
374 tmp3 = vmlal_lane_s16(tmp3, z3_s16, consts.val[0], 1); in jsimd_idct_islow_pass1_regular()
382 int32x4_t tmp10 = vaddq_s32(tmp0, tmp3); in jsimd_idct_islow_pass1_regular()
383 int32x4_t tmp13 = vsubq_s32(tmp0, tmp3); in jsimd_idct_islow_pass1_regular()
431 tmp3 = vmull_lane_s16(tmp3_s16, consts.val[1], 0); in jsimd_idct_islow_pass1_regular()
436 tmp3 = vmlsl_lane_s16(tmp3, tmp0_s16, consts.val[0], 0); in jsimd_idct_islow_pass1_regular()
441 tmp3 = vaddq_s32(tmp3, z4); in jsimd_idct_islow_pass1_regular()
445 vrshrn_n_s32(vaddq_s32(tmp10, tmp3), DESCALE_P1), in jsimd_idct_islow_pass1_regular()
454 vrshrn_n_s32(vsubq_s32(tmp10, tmp3), DESCALE_P1) in jsimd_idct_islow_pass1_regular()
498 int32x4_t tmp3 = vmull_lane_s16(z2_s16, consts.val[1], 2); in jsimd_idct_islow_pass1_sparse() local
[all …]
Djidctfst-neon.c130 int16x4_t tmp3 = vmul_s16(vget_high_s16(row6), quant_row6); in jsimd_idct_ifast_neon() local
135 int16x4_t tmp13 = vadd_s16(tmp1, tmp3); /* phases 5-3 */ in jsimd_idct_ifast_neon()
136 int16x4_t tmp1_sub_tmp3 = vsub_s16(tmp1, tmp3); in jsimd_idct_ifast_neon()
142 tmp3 = vsub_s16(tmp10, tmp13); in jsimd_idct_ifast_neon()
182 row4 = vcombine_s16(dcval, vadd_s16(tmp3, tmp4)); in jsimd_idct_ifast_neon()
183 row3 = vcombine_s16(dcval, vsub_s16(tmp3, tmp4)); in jsimd_idct_ifast_neon()
205 int16x4_t tmp3 = vmul_s16(vget_low_s16(row6), quant_row6); in jsimd_idct_ifast_neon() local
210 int16x4_t tmp13 = vadd_s16(tmp1, tmp3); /* phases 5-3 */ in jsimd_idct_ifast_neon()
211 int16x4_t tmp1_sub_tmp3 = vsub_s16(tmp1, tmp3); in jsimd_idct_ifast_neon()
217 tmp3 = vsub_s16(tmp10, tmp13); in jsimd_idct_ifast_neon()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
Djidctint-neon.c372 int32x4_t tmp3 = vmull_lane_s16(z2_s16, consts.val[1], 2); in jsimd_idct_islow_pass1_regular() local
374 tmp3 = vmlal_lane_s16(tmp3, z3_s16, consts.val[0], 1); in jsimd_idct_islow_pass1_regular()
382 int32x4_t tmp10 = vaddq_s32(tmp0, tmp3); in jsimd_idct_islow_pass1_regular()
383 int32x4_t tmp13 = vsubq_s32(tmp0, tmp3); in jsimd_idct_islow_pass1_regular()
431 tmp3 = vmull_lane_s16(tmp3_s16, consts.val[1], 0); in jsimd_idct_islow_pass1_regular()
436 tmp3 = vmlsl_lane_s16(tmp3, tmp0_s16, consts.val[0], 0); in jsimd_idct_islow_pass1_regular()
441 tmp3 = vaddq_s32(tmp3, z4); in jsimd_idct_islow_pass1_regular()
445 vrshrn_n_s32(vaddq_s32(tmp10, tmp3), DESCALE_P1), in jsimd_idct_islow_pass1_regular()
454 vrshrn_n_s32(vsubq_s32(tmp10, tmp3), DESCALE_P1) in jsimd_idct_islow_pass1_regular()
498 int32x4_t tmp3 = vmull_lane_s16(z2_s16, consts.val[1], 2); in jsimd_idct_islow_pass1_sparse() local
[all …]
Djidctfst-neon.c130 int16x4_t tmp3 = vmul_s16(vget_high_s16(row6), quant_row6); in jsimd_idct_ifast_neon() local
135 int16x4_t tmp13 = vadd_s16(tmp1, tmp3); /* phases 5-3 */ in jsimd_idct_ifast_neon()
136 int16x4_t tmp1_sub_tmp3 = vsub_s16(tmp1, tmp3); in jsimd_idct_ifast_neon()
142 tmp3 = vsub_s16(tmp10, tmp13); in jsimd_idct_ifast_neon()
182 row4 = vcombine_s16(dcval, vadd_s16(tmp3, tmp4)); in jsimd_idct_ifast_neon()
183 row3 = vcombine_s16(dcval, vsub_s16(tmp3, tmp4)); in jsimd_idct_ifast_neon()
205 int16x4_t tmp3 = vmul_s16(vget_low_s16(row6), quant_row6); in jsimd_idct_ifast_neon() local
210 int16x4_t tmp13 = vadd_s16(tmp1, tmp3); /* phases 5-3 */ in jsimd_idct_ifast_neon()
211 int16x4_t tmp1_sub_tmp3 = vsub_s16(tmp1, tmp3); in jsimd_idct_ifast_neon()
217 tmp3 = vsub_s16(tmp10, tmp13); in jsimd_idct_ifast_neon()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djidctflt.c76 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
131 tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6] * _0_125);
136 tmp13 = tmp1 + tmp3; /* phases 5-3 */
137 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT)1.414213562) - tmp13; /* 2*c4 */
140 tmp3 = tmp10 - tmp13;
173 wsptr[DCTSIZE * 3] = tmp3 + tmp4;
174 wsptr[DCTSIZE * 4] = tmp3 - tmp4;
203 tmp3 = tmp10 - tmp13;
233 outptr[3] = range_limit[((int)(tmp3 + tmp4)) & RANGE_MASK];
234 outptr[4] = range_limit[((int)(tmp3 - tmp4)) & RANGE_MASK];
Djfdctflt.c62 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
78 tmp3 = dataptr[3] + dataptr[4];
83 tmp10 = tmp0 + tmp3; /* phase 2 */
84 tmp13 = tmp0 - tmp3;
128 tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4];
133 tmp10 = tmp0 + tmp3; /* phase 2 */
134 tmp13 = tmp0 - tmp3;
/third_party/libjpeg-turbo/
Djidctflt.c76 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
131 tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6] * _0_125);
136 tmp13 = tmp1 + tmp3; /* phases 5-3 */
137 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT)1.414213562) - tmp13; /* 2*c4 */
140 tmp3 = tmp10 - tmp13;
173 wsptr[DCTSIZE * 3] = tmp3 + tmp4;
174 wsptr[DCTSIZE * 4] = tmp3 - tmp4;
203 tmp3 = tmp10 - tmp13;
233 outptr[3] = range_limit[((int)(tmp3 + tmp4)) & RANGE_MASK];
234 outptr[4] = range_limit[((int)(tmp3 - tmp4)) & RANGE_MASK];
Djfdctflt.c62 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
78 tmp3 = dataptr[3] + dataptr[4];
83 tmp10 = tmp0 + tmp3; /* phase 2 */
84 tmp13 = tmp0 - tmp3;
128 tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4];
133 tmp10 = tmp0 + tmp3; /* phase 2 */
134 tmp13 = tmp0 - tmp3;
/third_party/skia/third_party/externals/libjpeg-turbo/
Djidctflt.c76 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
131 tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6] * _0_125);
136 tmp13 = tmp1 + tmp3; /* phases 5-3 */
137 tmp12 = (tmp1 - tmp3) * ((FAST_FLOAT)1.414213562) - tmp13; /* 2*c4 */
140 tmp3 = tmp10 - tmp13;
173 wsptr[DCTSIZE * 3] = tmp3 + tmp4;
174 wsptr[DCTSIZE * 4] = tmp3 - tmp4;
203 tmp3 = tmp10 - tmp13;
233 outptr[3] = range_limit[((int)(tmp3 + tmp4)) & RANGE_MASK];
234 outptr[4] = range_limit[((int)(tmp3 - tmp4)) & RANGE_MASK];
Djfdctflt.c62 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; variable
78 tmp3 = dataptr[3] + dataptr[4];
83 tmp10 = tmp0 + tmp3; /* phase 2 */
84 tmp13 = tmp0 - tmp3;
128 tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4];
133 tmp10 = tmp0 + tmp3; /* phase 2 */
134 tmp13 = tmp0 - tmp3;
/third_party/skia/third_party/externals/libwebp/src/dsp/
Denc_msa.c84 v4i32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5; in FTransform_MSA() local
106 FILL_W2_SW(1812, 937, tmp1, tmp3); in FTransform_MSA()
107 DPADD_SH2_SW(t2, t2, cnst0, cnst1, tmp3, tmp1); in FTransform_MSA()
108 SRAI_W2_SW(tmp1, tmp3, 9); in FTransform_MSA()
109 PCKEV_H2_SH(tmp1, tmp0, tmp3, tmp2, t0, t1); in FTransform_MSA()
117 FILL_W2_SW(12000, 51000, tmp1, tmp3); in FTransform_MSA()
118 DPADD_SH2_SW(t2, t2, cnst0, cnst1, tmp3, tmp1); in FTransform_MSA()
119 SRAI_W2_SW(tmp1, tmp3, 16); in FTransform_MSA()
126 PCKEV_H2_SH(tmp1, tmp0, tmp3, tmp2, t0, t1); in FTransform_MSA()
137 v8i16 tmp0, tmp1, tmp2, tmp3; in FTransformWHT_MSA() local
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Denc_msa.c84 v4i32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5; in FTransform_MSA() local
106 FILL_W2_SW(1812, 937, tmp1, tmp3); in FTransform_MSA()
107 DPADD_SH2_SW(t2, t2, cnst0, cnst1, tmp3, tmp1); in FTransform_MSA()
108 SRAI_W2_SW(tmp1, tmp3, 9); in FTransform_MSA()
109 PCKEV_H2_SH(tmp1, tmp0, tmp3, tmp2, t0, t1); in FTransform_MSA()
117 FILL_W2_SW(12000, 51000, tmp1, tmp3); in FTransform_MSA()
118 DPADD_SH2_SW(t2, t2, cnst0, cnst1, tmp3, tmp1); in FTransform_MSA()
119 SRAI_W2_SW(tmp1, tmp3, 16); in FTransform_MSA()
126 PCKEV_H2_SH(tmp1, tmp0, tmp3, tmp2, t0, t1); in FTransform_MSA()
137 v8i16 tmp0, tmp1, tmp2, tmp3; in FTransformWHT_MSA() local
[all …]
/third_party/musl/src/crypt/
Dcrypt_blowfish.c444 tmp3 = L >> 16; \
445 tmp3 &= 0xFF; \
449 tmp3 = ctx->s.S[1][tmp3]; \
450 tmp3 += ctx->s.S[0][tmp4]; \
451 tmp3 ^= tmp2; \
453 tmp3 += tmp1; \
454 R ^= tmp3;
460 BF_word tmp1, tmp2, tmp3, tmp4; in BF_encrypt() local
681 BF_word tmp1, tmp2, tmp3, tmp4; in BF_crypt() local
685 tmp3 = data.binary.salt[2]; in BF_crypt()
[all …]

1234567