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:level_zero
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/amd/llvm/
H
A
D
ac_nir_to_llvm.c
1600
args->opcode = args->
level_zero
|| instr->sampler_dim == GLSL_SAMPLER_DIM_MS
in build_tex_intrinsic()
1603
args->
level_zero
= false;
in build_tex_intrinsic()
1610
args->
level_zero
= false;
in build_tex_intrinsic()
1617
args->
level_zero
= true;
in build_tex_intrinsic()
1623
args->
level_zero
= true;
in build_tex_intrinsic()
1631
args->
level_zero
= false;
in build_tex_intrinsic()
1639
args->
level_zero
= false;
in build_tex_intrinsic()
2630
bool
level_zero
= nir_src_is_const(instr->src[3]) && nir_src_as_uint(instr->src[3]) == 0;
in visit_image_load()
local
2632
args.opcode =
level_zero
? ac_image_load : ac_image_load_mip;
in visit_image_load()
2636
if (!
level_zero
)
in visit_image_load()
2721
bool
level_zero
= nir_src_is_const(instr->src[4]) && nir_src_as_uint(instr->src[4]) == 0;
visit_image_store()
local
[all...]
H
A
D
ac_llvm_build.h
395
bool
level_zero
: 1;
member
H
A
D
ac_llvm_build.c
2108
assert(!a->lod || a->lod == ctx->i32_0 || a->lod == ctx->f32_0 || !a->
level_zero
);
in ac_build_image_opcode()
2117
assert((a->bias ? 1 : 0) + (a->lod ? 1 : 0) + (a->
level_zero
? 1 : 0) + (a->derivs[0] ? 1 : 0) <=
in ac_build_image_opcode()
2119
assert((a->min_lod ? 1 : 0) + (a->lod ? 1 : 0) + (a->
level_zero
? 1 : 0) <= 1);
in ac_build_image_opcode()
2307
a->bias ? ".b" : lod_suffix ? ".l" : a->derivs[0] ? ".d" : a->
level_zero
? ".lz" : "",
in ac_build_image_opcode()
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_instruction_selection.cpp
6164
bool
level_zero
=
6167
if (!
level_zero
)
6290
bool
level_zero
= nir_src_is_const(instr->src[3]) && nir_src_as_uint(instr->src[3]) == 0;
6291
aco_opcode opcode =
level_zero
? aco_opcode::image_load : aco_opcode::image_load_mip;
6383
bool
level_zero
= nir_src_is_const(instr->src[4]) && nir_src_as_uint(instr->src[4]) == 0;
6384
aco_opcode opcode =
level_zero
? aco_opcode::image_store : aco_opcode::image_store_mip;
9414
bool has_bias = false, has_lod = false,
level_zero
= false, has_compare = false,
9466
level_zero
= true;
9855
aco_opcode op =
level_zero
|| instr->sampler_dim == GLSL_SAMPLER_DIM_MS ||
9928
if (
level_zero
)
[all...]
Completed in 26 milliseconds