Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:colors_read
(Results
1 - 9
of
9
) sorted by relevance
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H
A
D
tgsi_scan.h
91
ubyte
colors_read
; /**< which color components are read by the FS */
member
H
A
D
tgsi_scan.c
175
info->
colors_read
|= usage_mask_after_swizzle << (index * 4);
in scan_src_operand()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H
A
D
si_shader.h
422
ubyte
colors_read
; /**< which color components are read by the FS */
member
635
unsigned
colors_read
: 8; /* color input components read */
member
H
A
D
si_shader_info.c
508
info->
colors_read
|= mask << (index * 4);
in scan_instruction()
709
if ((info->
colors_read
>> (i * 4)) & 0xf) {
in si_nir_scan_shader()
714
info->input[index].usage_mask = info->
colors_read
>> (i * 4);
in si_nir_scan_shader()
H
A
D
si_shader_llvm.c
876
unsigned
colors_read
= ctx->shader->selector->info.
colors_read
;
in si_llvm_translate_nir()
local
883
if (
colors_read
& 0x0f) {
in si_llvm_translate_nir()
884
unsigned mask =
colors_read
& 0x0f;
in si_llvm_translate_nir()
892
if (
colors_read
& 0xf0) {
in si_llvm_translate_nir()
893
unsigned mask = (
colors_read
& 0xf0) >> 4;
in si_llvm_translate_nir()
H
A
D
si_shader.c
50
unsigned num_colors = !!(info->
colors_read
& 0x0f) + !!(info->
colors_read
& 0xf0);
in si_get_ps_num_interp()
728
if (shader->selector->info.
colors_read
) {
in si_init_shader_args()
729
unsigned num_color_elements = util_bitcount(shader->selector->info.
colors_read
);
in si_init_shader_args()
2170
key->ps_prolog.
colors_read
= info->
colors_read
;
in si_get_ps_prolog_key()
2175
(key->ps_prolog.
colors_read
|| key->ps_prolog.states.force_persp_sample_interp ||
in si_get_ps_prolog_key()
2186
if (info->
colors_read
) {
in si_get_ps_prolog_key()
2201
if (!(info->
colors_read
& (0xf << i * 4)))
in si_get_ps_prolog_key()
2290
return key->ps_prolog.
colors_read
|| ke
in si_need_ps_prolog()
[all...]
H
A
D
si_shader_llvm_ps.c
581
num_color_channels = util_bitcount(key->ps_prolog.
colors_read
);
in si_llvm_build_ps_prolog()
737
unsigned writemask = (key->ps_prolog.
colors_read
>> (i * 4)) & 0xf;
in si_llvm_build_ps_prolog()
765
key->ps_prolog.
colors_read
, interp_ij, prim_mask, face, color);
in si_llvm_build_ps_prolog()
H
A
D
si_state_shaders.cpp
2363
key->ps.part.prolog.color_two_side = rs->two_side && sel->info.
colors_read
;
/third_party/mesa3d/src/gallium/auxiliary/nir/
H
A
D
nir_to_tgsi_info.c
160
info->
colors_read
|= mask << (semantic_index * 4);
in gather_intrinsic_load_deref_info()
Completed in 18 milliseconds