Searched defs:mul64 (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/core/
H A DSkSafeMath.h24 return sizeof(size_t) == sizeof(uint64_t) ? mul64(x, y) : mul32(x, y);
77 uint64_t mul64(uint64_t x, uint64_t y) { function in class:SkSafeMath
/external/skqp/src/core/
H A DSkSafeMath.h22 return sizeof(size_t) == sizeof(uint64_t) ? mul64(x, y) : mul32(x, y);
68 uint64_t mul64(uint64_t x, uint64_t y) { function in class:SkSafeMath
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp739 const deUint64 mul64 = deUint64(in0)*deUint64(in1); local
740 const deUint32 ref0 = deUint32(mul64 >> 32);
741 const deUint32 ref1 = deUint32(mul64 & 0xffffffffu);
844 const deInt64 mul64 = deInt64(in0)*deInt64(in1); local
845 const deInt32 ref0 = deInt32(mul64 >> 32);
846 const deInt32 ref1 = deInt32(mul64 & 0xffffffffu);
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp620 const deUint64 mul64 = deUint64(in0)*deUint64(in1); local
621 const deUint32 ref0 = deUint32(mul64 >> 32);
622 const deUint32 ref1 = deUint32(mul64 & 0xffffffffu);
711 const deInt64 mul64 = deInt64(in0)*deInt64(in1); local
712 const deInt32 ref0 = deInt32(mul64 >> 32);
713 const deInt32 ref1 = deInt32(mul64 & 0xffffffffu);

Completed in 125 milliseconds