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:ObjectStartBitmap
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/heap/
H
A
D
object-start-bitmap.h
32
//
ObjectStartBitmap
does not support concurrent access and is used only by the
34
class V8_EXPORT_PRIVATE
ObjectStartBitmap
{
class
44
explicit inline
ObjectStartBitmap
(size_t offset = 0);
90
ObjectStartBitmap
::
ObjectStartBitmap
(size_t offset) : offset_(offset) {
in ObjectStartBitmap()
function in v8::internal::ObjectStartBitmap
94
Address
ObjectStartBitmap
::FindBasePtr(Address maybe_inner_ptr) const {
in FindBasePtr()
118
void
ObjectStartBitmap
::SetBit(Address base_ptr) {
in SetBit()
125
void
ObjectStartBitmap
::ClearBit(Address base_ptr) {
in ClearBit()
132
bool
ObjectStartBitmap
::CheckBit(Address base_ptr) const {
in CheckBit()
138
void
ObjectStartBitmap
[all...]
H
A
D
memory-chunk-layout.h
75
FIELD(
ObjectStartBitmap
,
ObjectStartBitmap
),
H
A
D
memory-chunk.h
215
ObjectStartBitmap
* object_start_bitmap() { return &object_start_bitmap_; }
in object_start_bitmap()
291
ObjectStartBitmap
object_start_bitmap_;
H
A
D
memory-chunk.cc
192
chunk->object_start_bitmap_ =
ObjectStartBitmap
(chunk->area_start());
in MemoryChunk()
/third_party/node/deps/v8/src/heap/cppgc/
H
A
D
object-start-bitmap.h
30
//
ObjectStartBitmap
supports concurrent reads from multiple threads but
32
class V8_EXPORT_PRIVATE
ObjectStartBitmap
{
class
42
explicit inline
ObjectStartBitmap
(Address offset);
107
ObjectStartBitmap
::
ObjectStartBitmap
(Address offset) : offset_(offset) {
in ObjectStartBitmap()
function in cppgc::internal::ObjectStartBitmap
113
HeapObjectHeader*
ObjectStartBitmap
::FindHeader(
in FindHeader()
136
void
ObjectStartBitmap
::SetBit(ConstAddress header_address) {
in SetBit()
145
void
ObjectStartBitmap
::ClearBit(ConstAddress header_address) {
in ClearBit()
153
bool
ObjectStartBitmap
::CheckBit(ConstAddress header_address) const {
in CheckBit()
160
void
ObjectStartBitmap
[all...]
Completed in 3 milliseconds