Lines Matching defs:uint8
771 struct uint8 {
776 "__kernel void main_test(__global uint8 *inout)\n\
781 auto inout = ShaderArg<struct uint8>({ { 1, 2, 3, 4, 5, 6, 7, 8 } },
783 const struct uint8 expected[] = {
828 struct uint8 {
833 "__kernel void main_test(__global uint8 *out, __constant uint8 *in)\n\
838 auto in = ShaderArg<struct uint8>({ { 1, 2, 3, 4, 5, 6, 7, 8 } },
840 auto out = ShaderArg<struct uint8>({ { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } },
842 const struct uint8 expected[] = {
1383 struct uint8 {
1388 "__kernel void main_test(__global uint *out, uint8 val)\n\
1394 auto val = ShaderArg<struct uint8>({ {0, 1, 2, 3, 4, 5, 6, 7 }}, SHADER_ARG_INPUT);