/third_party/mbedtls/library/ |
D | poly1305.c | 60 static uint64_t mul64( uint32_t a, uint32_t b ) in mul64() function 76 static inline uint64_t mul64( uint32_t a, uint32_t b ) in mul64() function 142 d0 = mul64( acc0, r0 ) + in poly1305_process() 143 mul64( acc1, rs3 ) + in poly1305_process() 144 mul64( acc2, rs2 ) + in poly1305_process() 145 mul64( acc3, rs1 ); in poly1305_process() 146 d1 = mul64( acc0, r1 ) + in poly1305_process() 147 mul64( acc1, r0 ) + in poly1305_process() 148 mul64( acc2, rs3 ) + in poly1305_process() 149 mul64( acc3, rs2 ) + in poly1305_process() [all …]
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | sqrtl.c | 65 static inline uint64_t mul64(uint64_t a, uint64_t b) in mul64() function 163 uint64_t m1 = mul64(a.hi, b.lo); in mul128() 164 uint64_t m2 = mul64(a.lo, b.hi); in mul128() 219 s = mul64(ml.hi, r); in sqrtl() 220 d = mul64(s, r); in sqrtl() 222 r = mul64(u, r) << 1; in sqrtl() 224 s = mul64(u, s) << 1; in sqrtl() 225 d = mul64(s, r); in sqrtl() 227 r = mul64(u, r) << 1; in sqrtl()
|
D | sqrt.c | 15 static inline uint64_t mul64(uint64_t a, uint64_t b) in mul64() function 127 s = mul64(m, r); in sqrt() 128 d = mul64(s, r); in sqrt() 130 s = mul64(s, u); /* repr: 3.61 */ in sqrt()
|
/third_party/musl/src/math/ |
D | sqrtl.c | 65 static inline uint64_t mul64(uint64_t a, uint64_t b) in mul64() function 163 uint64_t m1 = mul64(a.hi, b.lo); in mul128() 164 uint64_t m2 = mul64(a.lo, b.hi); in mul128() 219 s = mul64(ml.hi, r); in sqrtl() 220 d = mul64(s, r); in sqrtl() 222 r = mul64(u, r) << 1; in sqrtl() 224 s = mul64(u, s) << 1; in sqrtl() 225 d = mul64(s, r); in sqrtl() 227 r = mul64(u, r) << 1; in sqrtl()
|
D | sqrt.c | 15 static inline uint64_t mul64(uint64_t a, uint64_t b) in mul64() function 127 s = mul64(m, r); in sqrt() 128 d = mul64(s, r); in sqrt() 130 s = mul64(s, u); /* repr: 3.61 */ in sqrt()
|
/third_party/skia/src/core/ |
D | SkSafeMath.h | 26 return sizeof(size_t) == sizeof(uint64_t) ? mul64(x, y) : mul32(x, y); in mul() 79 uint64_t mul64(uint64_t x, uint64_t y) { in mul64() function
|
/third_party/flutter/skia/src/core/ |
D | SkSafeMath.h | 26 return sizeof(size_t) == sizeof(uint64_t) ? mul64(x, y) : mul32(x, y); in mul() 79 uint64_t mul64(uint64_t x, uint64_t y) { in mul64() function
|
/third_party/openssl/crypto/bn/ |
D | bn_asm.c | 553 mul64(lo,hi,bl,bh); \ 562 mul64(lo,hi,bl,bh); \ 851 # ifdef mul64 in bn_mul_mont() 868 # ifdef mul64 in bn_mul_mont() 885 # ifdef mul64 in bn_mul_mont() 901 # ifdef mul64 in bn_mul_mont() 910 # ifdef mul64 in bn_mul_mont()
|
D | bn_local.h | 583 # define mul64(l,h,bl,bh) \ macro 624 mul64(l,h,(bl),(bh)); \ 640 mul64(l,h,(bl),(bh)); \
|
D | bn_div.c | 403 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*q; */ in bn_div_fixed_top()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderIntegerFunctionTests.cpp | 592 const deUint64 mul64 = deUint64(in0)*deUint64(in1); in compare() local 593 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() 594 const deUint32 ref1 = deUint32(mul64 & 0xffffffffu); in compare() 683 const deInt64 mul64 = deInt64(in0)*deInt64(in1); in compare() local 684 const deInt32 ref0 = deInt32(mul64 >> 32); in compare() 685 const deInt32 ref1 = deInt32(mul64 & 0xffffffffu); in compare()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderIntegerFunctionTests.cpp | 690 const deUint64 mul64 = deUint64(in0)*deUint64(in1); in compare() local 691 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() 692 const deUint32 ref1 = deUint32(mul64 & 0xffffffffu); in compare() 795 const deInt64 mul64 = deInt64(in0)*deInt64(in1); in compare() local 796 const deInt32 ref0 = deInt32(mul64 >> 32); in compare() 797 const deInt32 ref1 = deInt32(mul64 & 0xffffffffu); in compare()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
D | vktShaderIntegerFunctionTests.cpp | 690 const deUint64 mul64 = deUint64(in0)*deUint64(in1); in compare() local 691 const deUint32 ref0 = deUint32(mul64 >> 32); in compare() 692 const deUint32 ref1 = deUint32(mul64 & 0xffffffffu); in compare() 795 const deInt64 mul64 = deInt64(in0)*deInt64(in1); in compare() local 796 const deInt32 ref0 = deInt32(mul64 >> 32); in compare() 797 const deInt32 ref1 = deInt32(mul64 & 0xffffffffu); in compare()
|