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:saves
(Results
1 - 16
of
16
) sorted by relevance
/third_party/node/deps/v8/src/compiler/backend/loong64/
H
A
D
code-generator-loong64.cc
2192
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
2193
if (!
saves
.is_empty()) {
in FinishFrame()
2194
int count =
saves
.Count();
in FinishFrame()
2251
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
2296
required_slots -=
saves
.Count();
in AssembleConstructFrame()
2309
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
2311
__ MultiPush(
saves
);
in AssembleConstructFrame()
2329
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
2330
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
2331
__ MultiPop(
saves
);
in AssembleConstructFrame()
[all...]
/third_party/ffmpeg/ffbuild/
H
A
D
common.mak
152
# so this
saves
some time on slow systems.
/third_party/node/deps/v8/src/compiler/backend/arm/
H
A
D
code-generator-arm.cc
3683
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleArchInstruction()
3684
if (!
saves
.is_empty()) {
in AssembleArchInstruction()
3686
frame->AllocateSavedCalleeRegisterSlots(
saves
.Count());
in AssembleArchInstruction()
3743
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleArchInstruction()
3783
required_slots -=
saves
.Count();
in AssembleArchInstruction()
3797
if (!
saves
.is_empty()) {
in AssembleArchInstruction()
3799
__ stm(db_w, sp,
saves
);
in AssembleArchInstruction()
3817
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleArchInstruction()
3818
if (!
saves
.is_empty()) {
in AssembleArchInstruction()
3819
__ ldm(ia_w, sp,
saves
);
in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ia32/
H
A
D
code-generator-ia32.cc
4009
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
4010
if (!
saves
.is_empty()) { // Save callee-saved registers.
in FinishFrame()
4012
frame->AllocateSavedCalleeRegisterSlots(
saves
.Count());
in FinishFrame()
4063
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4102
required_slots -=
saves
.Count();
in AssembleConstructFrame()
4109
if (!
saves
.is_empty()) { // Save callee-saved registers.
in AssembleConstructFrame()
4111
for (Register reg : base::Reversed(
saves
)) {
in AssembleConstructFrame()
4125
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleReturn()
local
4127
if (!
saves
.is_empty()) {
in AssembleReturn()
4132
for (Register reg :
saves
) {
in AssembleReturn()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ppc/
H
A
D
code-generator-ppc.cc
4011
const RegList
saves
=
in FinishFrame()
local
4015
if (!
saves
.is_empty()) {
in FinishFrame()
4086
const RegList
saves
=
in AssembleConstructFrame()
local
4129
required_slots -=
saves
.Count();
in AssembleConstructFrame()
4142
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4143
__ MultiPush(
saves
);
in AssembleConstructFrame()
4162
const RegList
saves
=
in AssembleConstructFrame()
local
4166
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4167
__ MultiPop(
saves
);
in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/s390/
H
A
D
code-generator-s390.cc
3379
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
3380
if (!
saves
.is_empty()) {
in FinishFrame()
3443
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
3482
required_slots -=
saves
.Count();
in AssembleConstructFrame()
3495
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
3496
__ MultiPush(
saves
);
in AssembleConstructFrame()
3515
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
3516
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
3517
__ MultiPop(
saves
);
in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/arm64/
H
A
D
code-generator-arm64.cc
1669
// TODO(turbofan): make sure this
saves
all relevant registers.
in AssembleArchInstruction()
3025
CPURegList
saves
=
in AssembleArchInstruction()
3027
saved_count =
saves
.Count();
in AssembleArchInstruction()
3043
CPURegList
saves
=
in AssembleArchInstruction()
3045
DCHECK_EQ(
saves
.Count() % 2, 0);
in AssembleArchInstruction()
3131
required_slots -=
saves
.Count();
in AssembleArchInstruction()
3206
__ PushCPURegList(
saves
);
in AssembleArchInstruction()
3222
CPURegList
saves
=
in AssembleArchInstruction()
3224
__ PopCPURegList(
saves
);
in AssembleArchInstruction()
/third_party/node/deps/v8/src/compiler/backend/mips64/
H
A
D
code-generator-mips64.cc
4150
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
4151
if (!
saves
.is_empty()) {
in FinishFrame()
4152
int count =
saves
.Count();
in FinishFrame()
4209
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4251
required_slots -=
saves
.Count();
in AssembleConstructFrame()
4264
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4266
__ MultiPush(
saves
);
in AssembleConstructFrame()
4284
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4285
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4286
__ MultiPop(
saves
);
in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/x64/
H
A
D
code-generator-x64.cc
4646
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
4647
if (!
saves
.is_empty()) { // Save callee-saved registers.
in FinishFrame()
4648
frame->AllocateSavedCalleeRegisterSlots(
saves
.Count());
in FinishFrame()
4706
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4745
required_slots -=
saves
.Count();
in AssembleConstructFrame()
4766
if (!
saves
.is_empty()) { // Save callee-saved registers.
in AssembleConstructFrame()
4767
for (Register reg : base::Reversed(
saves
)) {
in AssembleConstructFrame()
4782
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleReturn()
local
4783
if (!
saves
.is_empty()) {
in AssembleReturn()
4788
for (Register reg :
saves
) {
in AssembleReturn()
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips/
H
A
D
code-generator-mips.cc
3949
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
3950
if (!
saves
.is_empty()) {
in FinishFrame()
3951
int count =
saves
.Count();
in FinishFrame()
4007
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4049
required_slots -=
saves
.Count();
in AssembleConstructFrame()
4061
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4063
__ MultiPush(
saves
);
in AssembleConstructFrame()
4081
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
4082
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
4083
__ MultiPop(
saves
);
in AssembleConstructFrame()
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H
A
D
code-generator-riscv64.cc
3861
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in FinishFrame()
local
3862
if (!
saves
.is_empty()) {
in FinishFrame()
3863
int count =
saves
.Count();
in FinishFrame()
3913
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleConstructFrame()
local
3954
required_slots -=
saves
.Count();
in AssembleConstructFrame()
3967
if (!
saves
.is_empty()) {
in AssembleConstructFrame()
3969
__ MultiPush(
saves
);
in AssembleConstructFrame()
3987
const RegList
saves
= call_descriptor->CalleeSavedRegisters();
in AssembleReturn()
local
3988
if (!
saves
.is_empty()) {
in AssembleReturn()
3989
__ MultiPop(
saves
);
in AssembleReturn()
[all...]
/third_party/mksh/
H
A
D
funcs.c
2043
struct source *s, *
saves
= source;
in c_eval()
local
2087
source =
saves
;
in c_eval()
/third_party/ffmpeg/libavcodec/x86/
H
A
D
h264_qpel_10bit.asm
619
neg r2 ; This actually
saves
instructions
/third_party/ffmpeg/libavcodec/arm/
H
A
D
simple_idct_arm.S
274
mov r8, #0x10000 @ R8=0xFFFF (2 steps needed!) it
saves
a ldr call (because of delay run).
/third_party/libunwind/libunwind/doc/
H
A
D
libunwind-dynamic.tex
333
\item[\Const{UNW\_DYN\_SAVE\_REG}] Marks an instruction which
saves
/third_party/skia/third_party/externals/microhttpd/doc/
H
A
D
texinfo.tex
8727
% \xrdef
saves
the floats as a \do-list in \floatlistSAFEFLOATTYPE.
Completed in 71 milliseconds