/external/scrypt/lib/crypto/ |
crypto_scrypt-neon-salsa208.h | 64 uint32x4_t diag1 = start1; local 74 a0 = diag1 + diag0; 79 diag1 ^= vsriq_n_u32(vshlq_n_u32(a2,13),a2,19); 80 a3 = diag2 + diag1; 85 diag1 = vextq_u32(diag1,diag1,1); 88 diag1 ^= vsriq_n_u32(vshlq_n_u32(a0,7),a0,25); 89 a1 = diag0 + diag1; 91 a2 = diag1 + diag2 [all...] |
/external/webp/src/dsp/ |
upsampling_sse2.c | 80 __m128i diag1, diag2; \ 82 GET_M(bc, t, diag1); /* diag1 = (a + 3b + 3c + d) / 8 */ \ 86 PACK_AND_STORE(a, b, diag1, diag2, out + 0); /* store top */ \ 87 PACK_AND_STORE(c, d, diag2, diag1, out + 2 * 32); /* store bottom */ \
|
upsampling_neon.c | 46 const uint8x8_t diag1 = vshrn_n_u16(bl, 3); \ 48 const uint8x8_t A = vrhadd_u8(a, diag1); \ 51 const uint8x8_t D = vrhadd_u8(d, diag1); \
|
upsampling_msa.c | 541 v16u8 diag1, diag2; \ 551 SUB2(t0, t2, t1, t3, diag1, diag2); \ 552 AVER_UB2_UB(a, diag1, b, diag2, t0, t1); \ 555 AVER_UB2_UB(c, diag2, d, diag1, t0, t1); \
|
/external/svox/pico/lib/ |
picocep.c | 191 picoos_int32 diag0[PICOCEP_MAXWINLEN], diag1[PICOCEP_MAXWINLEN], member in struct:cep_subobj 858 * @remarks diag0, diag1, diag2, WUm, invdiag0 globals needed in this function (object members in pico) 877 cep->diag1[0] = picocep_fixptinv((cep->diag1[0]) << rowscpow, 884 cep->WUm[j] = cep->WUm[j] - picocep_fixptmult(cep->diag1[j - 1], 892 v1 = picocep_fixptmult((cep->diag1[j - 1]) / (1 << rowscpow), 893 cep->diag0[j - 1], bigpow, invDoubleDec); /* undo scaling by 1<<rowscpow because diag1(j-1) refers to symm ele in column j-1 not in row j-1 */ 894 cep->diag0[j] = cep->diag0[j] - picocep_fixptmult(cep->diag1[j - 1], 898 cep->diag0[j - 2], bigpow, invDoubleDec); /* undo scaling by 1<<prevrowscpow because diag1(j-2) refers to symm ele in column j-2 not in row j-2 */ 908 cep->diag1[j] = picocep_fixptinv((cep->diag1[j] - h) << rowscpow [all...] |