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:xor_mask
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/amd/llvm/
H
A
D
ac_llvm_build.c
3379
static inline unsigned ds_pattern_bitmode(unsigned and_mask, unsigned or_mask, unsigned
xor_mask
)
in ds_pattern_bitmode()
argument
3381
assert(and_mask < 32 && or_mask < 32 &&
xor_mask
< 32);
in ds_pattern_bitmode()
3382
return and_mask | (or_mask << 5) | (
xor_mask
<< 10);
in ds_pattern_bitmode()
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_instruction_selection.cpp
239
unsigned
xor_mask
= (mask >> 10) & 0x1f;
in emit_masked_swizzle()
local
243
if (and_mask == 0x1f && or_mask < 4 &&
xor_mask
< 4) {
in emit_masked_swizzle()
246
res[i] = ((res[i] | or_mask) ^
xor_mask
) & 0x3;
in emit_masked_swizzle()
248
} else if (and_mask == 0x1f && !or_mask &&
xor_mask
== 8) {
in emit_masked_swizzle()
250
} else if (and_mask == 0x1f && !or_mask &&
xor_mask
== 0xf) {
in emit_masked_swizzle()
252
} else if (and_mask == 0x1f && !or_mask &&
xor_mask
== 0x7) {
in emit_masked_swizzle()
255
xor_mask
< 8) {
in emit_masked_swizzle()
259
ret.instr->dpp8().lane_sel[i] = (((i & and_mask) | or_mask) ^
xor_mask
) & 0x7;
in emit_masked_swizzle()
Completed in 23 milliseconds