Searched refs:tmp2 (Results 1 – 4 of 4) sorted by relevance
/system/core/libcutils/arch-arm64/ |
D | android_memset.S | 45 #define tmp2 x4 macro 122 neg tmp2, dst 123 ands tmp2, tmp2, #15 128 sub count, count, tmp2 130 add dst, dst, tmp2 155 neg tmp2, dst 156 ands tmp2, tmp2, #15 158 sub count, count, tmp2 160 add dst, dst, tmp2 180 neg tmp2, dst [all …]
|
/system/core/libmincrypt/ |
D | p256_ec.c | 298 limb tmp2[18], carry, x, xMask; in felem_reduce_degree() local 305 tmp2[0] = (limb)(tmp[0] & kBottom29Bits); in felem_reduce_degree() 311 tmp2[1] = ((limb) tmp[0]) >> 29; in felem_reduce_degree() 312 tmp2[1] |= (((limb)(tmp[0] >> 32)) << 3) & kBottom28Bits; in felem_reduce_degree() 313 tmp2[1] += ((limb) tmp[1]) & kBottom28Bits; in felem_reduce_degree() 314 carry = tmp2[1] >> 28; in felem_reduce_degree() 315 tmp2[1] &= kBottom28Bits; in felem_reduce_degree() 318 tmp2[i] = ((limb)(tmp[i - 2] >> 32)) >> 25; in felem_reduce_degree() 319 tmp2[i] += ((limb)(tmp[i - 1])) >> 28; in felem_reduce_degree() 320 tmp2[i] += (((limb)(tmp[i - 1] >> 32)) << 4) & kBottom29Bits; in felem_reduce_degree() [all …]
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_fixed.h | 198 GGLfixed result,tmp,tmp1,tmp2; in gglMulx() local 238 : [res]"=&r"(result),[tmp]"=&r"(tmp),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulx() 260 : [res]"=&r"(result),[tmp]"=&r"(tmp),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulx() 283 : [res]"=&r"(result),[tmp]"=&r"(tmp),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulx() 294 GGLfixed result,t,tmp1,tmp2; in gglMulAddx() local 338 : [res]"=&r"(result),[t]"=&r"(t),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulAddx() 356 : [res]"=&r"(result),[t]"=&r"(t),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulAddx() 366 GGLfixed result,t,tmp1,tmp2; in gglMulSubx() local 410 : [res]"=&r"(result),[t]"=&r"(t),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulSubx() 428 : [res]"=&r"(result),[t]"=&r"(t),[tmp1]"=&r"(tmp1),[tmp2]"=&r"(tmp2) in gglMulSubx() [all …]
|
/system/core/libutils/ |
D | LinearTransform.cpp | 48 uint64_t tmp1, tmp2; in scale_u64_to_u64() local 68 tmp2 = (val >> 32) * N; in scale_u64_to_u64() 75 tmp2 += tmp1 >> 32; in scale_u64_to_u64() 79 if ((tmp2 >> 32) >= D) { in scale_u64_to_u64() 87 r = tmp2 % D; in scale_u64_to_u64() 88 tmp2 /= D; in scale_u64_to_u64() 113 *res = (tmp2 << 32) | tmp1; in scale_u64_to_u64()
|