/external/dropbear/libtomcrypt/src/modes/cbc/ |
D | cbc_decrypt.c | 34 LTC_FAST_TYPE tmpy; in cbc_decrypt() local 36 unsigned char tmpy; in cbc_decrypt() local 73 …tmpy = *((LTC_FAST_TYPE*)((unsigned char *)cbc->IV + x)) ^ *((LTC_FAST_TYPE*)((unsigned char *)tmp… in cbc_decrypt() 75 *((LTC_FAST_TYPE*)((unsigned char *)pt + x)) = tmpy; in cbc_decrypt() 79 tmpy = tmp[x] ^ cbc->IV[x]; in cbc_decrypt() 81 pt[x] = tmpy; in cbc_decrypt()
|
/external/skia/src/core/ |
D | SkBitmapSampler.cpp | 112 int tmpy = procY(iy, maxY); in sample() local 113 p00 = bitmap->getAddr32(tmpx, tmpy); in sample() 116 p01 = bitmap->getAddr32(tmpx1, tmpy); in sample() 160 int tmpy = procY(iy, maxY); in sample() local 161 p00 = bitmap->getAddr16(tmpx, tmpy); in sample() 164 p01 = bitmap->getAddr16(tmpx1, tmpy); in sample() 215 int tmpy = procY(iy, maxY); in sample() local 216 p00 = bitmap->getAddr8(tmpx, tmpy); in sample() 219 p01 = bitmap->getAddr8(tmpx1, tmpy); in sample() 274 int tmpy = procY(iy, maxY); in sample() local [all …]
|
/external/dropbear/libtommath/ |
D | bn_mp_karatsuba_mul.c | 86 register mp_digit *tmpa, *tmpb, *tmpx, *tmpy; in mp_karatsuba_mul() local 95 tmpy = y0.dp; in mp_karatsuba_mul() 98 *tmpy++ = *tmpb++; in mp_karatsuba_mul() 106 tmpy = y1.dp; in mp_karatsuba_mul() 108 *tmpy++ = *tmpb++; in mp_karatsuba_mul()
|
D | bn_fast_s_mp_mul_digs.c | 55 mp_digit *tmpx, *tmpy; in fast_s_mp_mul_digs() local 63 tmpy = b->dp + ty; in fast_s_mp_mul_digs() 72 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs()
|
D | bn_s_mp_mul_digs.c | 28 mp_digit tmpx, *tmpt, *tmpy; in s_mp_mul_digs() local 59 tmpy = b->dp; in s_mp_mul_digs() 65 ((mp_word)tmpx) * ((mp_word)*tmpy++) + in s_mp_mul_digs()
|
D | bn_s_mp_mul_high_digs.c | 28 mp_digit tmpx, *tmpt, *tmpy; in s_mp_mul_high_digs() local 56 tmpy = b->dp + (digs - ix); in s_mp_mul_high_digs() 61 ((mp_word)tmpx) * ((mp_word)*tmpy++) + in s_mp_mul_high_digs()
|
D | bn_fast_s_mp_mul_high_digs.c | 46 mp_digit *tmpx, *tmpy; in fast_s_mp_mul_high_digs() local 54 tmpy = b->dp + ty; in fast_s_mp_mul_high_digs() 63 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_high_digs()
|
D | bn_fast_s_mp_sqr.c | 47 mp_digit *tmpy; in fast_s_mp_sqr() local 58 tmpy = a->dp + ty; in fast_s_mp_sqr() 73 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr()
|
/external/wpa_supplicant/ |
D | libtommath.c | 2074 mp_digit tmpx, *tmpt, *tmpy; in s_mp_mul_digs() local 2105 tmpy = b->dp; in s_mp_mul_digs() 2111 ((mp_word)tmpx) * ((mp_word)*tmpy++) + in s_mp_mul_digs() 2171 mp_digit *tmpx, *tmpy; in fast_s_mp_mul_digs() local 2179 tmpy = b->dp + ty; in fast_s_mp_mul_digs() 2188 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs() 2322 mp_digit tmpx, *tmpt, *tmpy; in s_mp_mul_high_digs() local 2350 tmpy = b->dp + (digs - ix); in s_mp_mul_high_digs() 2355 ((mp_word)tmpx) * ((mp_word)*tmpy++) + in s_mp_mul_high_digs()
|
/external/dropbear/libtommath/pre_gen/ |
D | mpi.c | 435 mp_digit *tmpx, *tmpy; in fast_s_mp_mul_digs() local 443 tmpy = b->dp + ty; in fast_s_mp_mul_digs() 452 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_digs() 537 mp_digit *tmpx, *tmpy; in fast_s_mp_mul_high_digs() local 545 tmpy = b->dp + ty; in fast_s_mp_mul_high_digs() 554 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_mul_high_digs() 640 mp_digit *tmpy; in fast_s_mp_sqr() local 651 tmpy = a->dp + ty; in fast_s_mp_sqr() 666 _W += ((mp_word)*tmpx++)*((mp_word)*tmpy--); in fast_s_mp_sqr() 4180 register mp_digit *tmpa, *tmpb, *tmpx, *tmpy; in mp_karatsuba_mul() local [all …]
|