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:get_bit_size
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/compiler/nir/
H
A
D
nir_algebraic.py
144
def
get_bit_size
(self):
member in Value
165
"""Make self.
get_bit_size
() return what other.
get_bit_size
() return
170
self_bit_size = self.
get_bit_size
()
171
other_bit_size = other if isinstance(other, int) else other.
get_bit_size
()
184
bit_size = self.
get_bit_size
()
558
that calling
get_bit_size
() always gets you the most specialized bitsize.
601
a_bit_size = a.
get_bit_size
()
602
b_bit_size = b if isinstance(b, int) else b.
get_bit_size
()
732
bit_size = val.
get_bit_size
()
[all...]
H
A
D
nir_opt_load_store_vectorize.c
282
get_bit_size
(struct entry *entry)
in get_bit_size()
function
667
unsigned common_bit_size = MIN2(
get_bit_size
(low),
get_bit_size
(high));
in new_bitsize_acceptable()
682
unsigned low_size = low->intrin->num_components *
get_bit_size
(low);
in new_bitsize_acceptable()
683
unsigned high_size = high->intrin->num_components *
get_bit_size
(high);
in new_bitsize_acceptable()
691
if (!nir_component_mask_can_reinterpret(write_mask,
get_bit_size
(low), new_bit_size))
in new_bitsize_acceptable()
695
if (!nir_component_mask_can_reinterpret(write_mask,
get_bit_size
(high), new_bit_size))
in new_bitsize_acceptable()
737
unsigned low_bit_size =
get_bit_size
(low);
in vectorize_loads()
738
unsigned high_bit_size =
get_bit_size
(high);
in vectorize_loads()
828
ASSERTED unsigned low_size = low->intrin->num_components *
get_bit_size
(lo
in vectorize_stores()
[all...]
Completed in 4 milliseconds