/external/qemu/ |
host-utils.c | 34 static void add128 (uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) function 47 add128(plow, phigh, 1, 0); 66 add128(plow, phigh, v << 32, v >> 32); 69 add128(plow, phigh, v << 32, v >> 32);
|
/external/qemu/fpu/ |
softfloat-macros.h | 354 add128( function 509 add128( z0, more1, 0, z1, &z0, &z1 ); 540 add128( z1, more2, 0, z2, &z1, &z2 ); 542 add128( z0, more1, 0, z1, &z0, &z1 ); 544 add128( more1, more2, 0, z2, &more1, &z2 ); 545 add128( z0, z1, 0, more1, &z0, &z1 ); 576 add128( rem0, rem1, b0, b1, &rem0, &rem1 );
|
/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305_vec.c | 81 add128(uint128_t a, uint128_t b) function 277 d[0] = add128(mul64x64_128(r20, r20), mul64x64_128(r21 * 2, s22)); 278 d[1] = add128(mul64x64_128(r22, s22), mul64x64_128(r20 * 2, r21)); 279 d[2] = add128(mul64x64_128(r21, r21), mul64x64_128(r22 * 2, r20)); 678 d[0] = add128(add128(mul64x64_128(h0, r0), mul64x64_128(h1, s2)), mul64x64_128(h2, s1)); 679 d[1] = add128(add128(mul64x64_128(h0, r1), mul64x64_128(h1, r0)), mul64x64_128(h2, s2)); 680 d[2] = add128(add128(mul64x64_128(h0, r2), mul64x64_128(h1, r1)), mul64x64_128(h2, r0)) [all...] |
/external/qemu/target-i386/ |
op_helper.c | 4539 static void add128(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b) function [all...] |