Lines Matching refs:cl_long
53 case kLong: sprintf(string, "%lld", *((cl_long *)data)); return; in print_type_to_string()
73 sizeof(cl_uint), sizeof(cl_long), sizeof(cl_ulong), in get_explicit_type_size()
169 typedef cl_long Long;
915 cl_long *longPtr; in generate_random_data()
1021 longPtr = (cl_long *)outData; in generate_random_data()
1024 longPtr[i] = (cl_long)genrand_int32(d) in generate_random_data()
1025 | ((cl_long)genrand_int32(d) << 32); in generate_random_data()
1054 cl_long u = (cl_long)genrand_int32(d) in generate_random_data()
1055 | ((cl_long)genrand_int32(d) << 32); in generate_random_data()
1093 cl_long read_upscale_signed(void *inRaw, ExplicitType inType) in read_upscale_signed()
1097 case kChar: return (cl_long)(*((cl_char *)inRaw)); in read_upscale_signed()
1099 case kUnsignedChar: return (cl_long)(*((cl_uchar *)inRaw)); in read_upscale_signed()
1100 case kShort: return (cl_long)(*((cl_short *)inRaw)); in read_upscale_signed()
1102 case kUnsignedShort: return (cl_long)(*((cl_ushort *)inRaw)); in read_upscale_signed()
1103 case kInt: return (cl_long)(*((cl_int *)inRaw)); in read_upscale_signed()
1105 case kUnsignedInt: return (cl_long)(*((cl_uint *)inRaw)); in read_upscale_signed()
1106 case kLong: return (cl_long)(*((cl_long *)inRaw)); in read_upscale_signed()
1108 case kUnsignedLong: return (cl_long)(*((cl_ulong *)inRaw)); in read_upscale_signed()
1126 case kLong: return (cl_ulong)(*((cl_long *)inRaw)); in read_upscale_unsigned()
1146 case kLong: return (float)(*((cl_long *)inRaw)); in read_as_float()