Searched defs:is_int8 (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/amd/common/
H A Dac_nir_to_llvm.h44 uint32_t is_int8; member in struct:ac_fs_variant_key
H A Dac_nir_to_llvm.c4011 bool is_int8 = (ctx->options->key.fs.is_int8 >> index) & 1; local
4091 LLVMValueRef max = LLVMConstInt(ctx->i32, is_int8 ? 255 : 65535, 0);
4105 LLVMValueRef max = LLVMConstInt(ctx->i32, is_int8 ? 127 : 32767, 0);
4106 LLVMValueRef min = LLVMConstInt(ctx->i32, is_int8 ? -128 : -32768, 0);
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerX86Base.h82 bool is_int8() const { function in class:Ice::X86NAMESPACE::AssemblerX86Base::Immediate
/external/mesa3d/src/amd/vulkan/
H A Dradv_pipeline.c782 bool is_int8 = format_is_int8(format); local
784 return col_format + (is_int8 ? 3 : 0);
792 unsigned is_int8 = 0; local
800 is_int8 |= 1 << i;
803 return is_int8;
1358 key.fs.is_int8 = radv_pipeline_compute_is_int8(pCreateInfo);
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c1988 bool is_int8, is_int10; local
2009 is_int8 = (key->part.ps.epilog.color_is_int8 >> cbuf) & 0x1;
2111 is_int8 ? 255 : is_int10 ? 1023 : 65535);
2133 is_int8 ? 127 : is_int10 ? 511 : 32767);
2135 is_int8 ? -128 : is_int10 ? -512 : -32768);

Completed in 1256 milliseconds