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:align_mask
(Results
1 - 6
of
6
) sorted by relevance
/third_party/node/src/
H
A
D
string_bytes.cc
483
const unsigned
align_mask
= bytes_per_word - 1;
in force_ascii()
local
484
const unsigned src_unalign = reinterpret_cast<uintptr_t>(src) &
align_mask
;
in force_ascii()
485
const unsigned dst_unalign = reinterpret_cast<uintptr_t>(dst) &
align_mask
;
in force_ascii()
513
const unsigned remainder = len &
align_mask
;
in force_ascii()
/third_party/node/deps/v8/src/regexp/arm64/
H
A
D
regexp-macro-assembler-arm64.cc
832
const int
align_mask
= (alignment / kWRegSize) - 1;
in GetCode()
local
837
((kNumberOfStackLocals * kWRegPerXReg) +
align_mask
) & ~
align_mask
);
in GetCode()
854
(num_stack_registers +
align_mask
) & ~
align_mask
;
in GetCode()
1466
int
align_mask
= (alignment / kXRegSize) - 1;
in CallCheckStackGuardState()
local
1467
int xreg_to_claim = (3 +
align_mask
) & ~
align_mask
;
in CallCheckStackGuardState()
/third_party/mesa3d/src/microsoft/compiler/
H
A
D
dxil_dump.c
533
unsigned
align_mask
= (1 << 6 ) - 1;
in dump_instr_alloca()
local
534
unsigned align = alloca->align &
align_mask
;
in dump_instr_alloca()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H
A
D
si_state_shaders.cpp
2124
unsigned
align_mask
= (1 << log_hw_load_size) - 1;
2125
if (vb->buffer_offset &
align_mask
|| vb->stride &
align_mask
) {
/third_party/node/deps/v8/src/wasm/baseline/
H
A
D
liftoff-compiler.cc
2885
const uint32_t
align_mask
= access_size - 1;
2886
if ((offset &
align_mask
) == 0) {
2893
__ emit_i32_andi(address, index,
align_mask
);
2898
__ emit_i32_andi(address, address,
align_mask
);
/third_party/node/deps/v8/src/compiler/
H
A
D
wasm-compiler.cc
3775
const uintptr_t
align_mask
= access_size - 1;
in CheckBoundsAndAlignment()
local
3784
if ((effective_offset &
align_mask
) != 0) {
in CheckBoundsAndAlignment()
3797
gasm_->WordAnd(effective_offset, gasm_->IntPtrConstant(
align_mask
));
in CheckBoundsAndAlignment()
Completed in 29 milliseconds