Home
last modified time | relevance | path

Searched refs:uOverflow (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/OpenCL-CTS/test_conformance/integer_ops/
H A Dtest_integers.cpp831 cl_ulong uValueA, uValueB, uOverflow; in verify_integer_hadd() local
876 uOverflow = ( uValueA & 0x1 ) + ( uValueB & 0x1 ); in verify_integer_hadd()
877 … *( (cl_ulong *)destination ) = ( ( uValueA >> 1 ) + ( uValueB >> 1 ) ) + ( uOverflow >> 1 ); in verify_integer_hadd()
894 cl_ulong uValueA, uValueB, uOverflow; in verify_integer_rhadd() local
939 uOverflow = ( uValueA | uValueB ) & 0x1; in verify_integer_rhadd()
940 *( (cl_ulong *)destination ) = ( ( uValueA >> 1 ) + ( uValueB >> 1 ) ) + uOverflow; in verify_integer_rhadd()