Lines Matching refs:finalValue

67     bool    (*VerifyRefsIntFn)( size_t size, cl_int *refValues, cl_int finalValue );
72 bool (*VerifyRefsLongFn)( size_t size, cl_long *refValues, cl_long finalValue );
77 bool (*VerifyRefsFloatFn)( size_t size, cl_float *refValues, cl_float finalValue );
531 bool test_atomic_xchg_verify_int( size_t size, cl_int *refValues, cl_int finalValue ) in test_atomic_xchg_verify_int() argument
559 if( valids[ finalValue ] > 0 ) in test_atomic_xchg_verify_int()
561 log_error( "ERROR: Final value %d was also in ref list!\n", finalValue ); in test_atomic_xchg_verify_int()
565 valids[ finalValue ] = 1; // So the following loop will be okay in test_atomic_xchg_verify_int()
588 bool test_atomic_xchg_verify_long( size_t size, cl_long *refValues, cl_long finalValue ) in test_atomic_xchg_verify_long() argument
616 if( valids[ finalValue ] > 0 ) in test_atomic_xchg_verify_long()
618 log_error( "ERROR: Final value %lld was also in ref list!\n", finalValue ); in test_atomic_xchg_verify_long()
622 valids[ finalValue ] = 1; // So the following loop will be okay in test_atomic_xchg_verify_long()
645 bool test_atomic_xchg_verify_float( size_t size, cl_float *refValues, cl_float finalValue ) in test_atomic_xchg_verify_float() argument
674 if( valids[ (int)finalValue ] > 0 ) in test_atomic_xchg_verify_float()
676 log_error( "ERROR: Final value %a was also in ref list!\n", finalValue ); in test_atomic_xchg_verify_float()
680 valids[ (int)finalValue ] = 1; // So the following loop will be okay in test_atomic_xchg_verify_float()