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:kInvalidSlot
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/deps/v8/src/codegen/
H
A
D
aligned-slot-allocator.cc
27
// The sentinel value
kInvalidSlot
is used to indicate no slot.
in Allocate()
28
// next1_ is the index of the 1 slot fragment, or
kInvalidSlot
.
in Allocate()
29
// next2_ is the 2-aligned index of the 2 slot fragment, or
kInvalidSlot
.
in Allocate()
33
int result =
kInvalidSlot
;
in Allocate()
38
next1_ =
kInvalidSlot
;
in Allocate()
42
next2_ =
kInvalidSlot
;
in Allocate()
54
next2_ =
kInvalidSlot
;
in Allocate()
87
next1_ = next2_ =
kInvalidSlot
;
in AllocateUnaligned()
98
next1_ =
kInvalidSlot
;
in AllocateUnaligned()
105
next2_ =
kInvalidSlot
;
in AllocateUnaligned()
[all...]
H
A
D
aligned-slot-allocator.h
56
static constexpr int
kInvalidSlot
= -1;
member in v8::internal::AlignedSlotAllocator
58
static bool IsValid(int slot) { return slot >
kInvalidSlot
; }
in IsValid()
60
int next1_ =
kInvalidSlot
;
61
int next2_ =
kInvalidSlot
;
/third_party/node/deps/v8/src/utils/
H
A
D
utils.h
464
FeedbackSlot() : id_(
kInvalidSlot
) {}
in FeedbackSlot()
470
bool IsInvalid() const { return id_ ==
kInvalidSlot
; }
in IsInvalid()
484
static const int
kInvalidSlot
= -1;
member in v8::internal::FeedbackSlot
Completed in 3 milliseconds