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:st64
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/compiler/nir/
H
A
D
nir_opt_offsets.c
165
bool
st64
= offset0 % (64 * comp_size) == 0 && offset1 % (64 * comp_size) == 0;
in try_fold_shared2()
local
166
stride = (
st64
? 64 : 1) * comp_size;
in try_fold_shared2()
174
nir_intrinsic_set_st64(intrin,
st64
);
in try_fold_shared2()
H
A
D
nir_opt_load_store_vectorize.c
1220
bool
st64
= diff % (64 * low_size) == 0;
in try_vectorize_shared2()
local
1221
unsigned stride =
st64
? 64 * low_size : low_size;
in try_vectorize_shared2()
1226
if (high->offset > 255 * stride || (
st64
&& high->offset % stride))
in try_vectorize_shared2()
1252
nir_store_shared2_amd(&b, val, offset, .offset1=diff/stride, .
st64
=
st64
);
in try_vectorize_shared2()
1255
.
st64
=
st64
);
in try_vectorize_shared2()
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_optimizer.cpp
1497
bool
st64
= instr->opcode == aco_opcode::ds_write2st64_b32 ||
in label_instruction()
1501
unsigned shifts = (is64bit ? 3 : 2) + (
st64
? 6 : 0);
in label_instruction()
H
A
D
aco_instruction_selection.cpp
7525
bool
st64
= nir_intrinsic_st64(instr);
7530
aco_opcode op =
st64
7541
aco_opcode op =
st64
? (is64bit ? aco_opcode::ds_read2st64_b64 : aco_opcode::ds_read2st64_b32)
Completed in 31 milliseconds