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:is_free
(Results
1 - 9
of
9
) sorted by relevance
/third_party/node/deps/v8/src/base/
H
A
D
region-allocator.cc
77
DCHECK(region->
is_free
());
in FreeListRemoveRegion()
187
if (!region->
is_free
() || region->end() < requested_end) {
in AllocateRegionAt()
289
if ((*next_iter)->
is_free
()) {
in TrimRegion()
300
if ((*prev_iter)->
is_free
()) {
in TrimRegion()
320
if (region->begin() != address || region->
is_free
()) {
in CheckRegion()
333
return region->
is_free
() && region->contains(address, size);
in IsFree()
H
A
D
region-allocator.h
142
bool
is_free
() const { return state_ == RegionState::kFree; }
in is_free()
function in v8::base::final::Region
/third_party/node/deps/v8/src/sandbox/
H
A
D
external-pointer-table-inl.h
67
DCHECK(!
is_free
(entry));
in Get()
131
DCHECK(!
is_free
(old_val));
in Mark()
H
A
D
external-pointer-table.h
171
static bool
is_free
(Address entry) {
in is_free()
function in v8::internal::ExternalPointerTable
/third_party/python/Lib/
H
A
D
symtable.py
199
is_free
= lambda x:((x >> SCOPE_OFF) & SCOPE_MASK) == FREE
200
self.__frees = self.__idents_matching(
is_free
)
273
def
is_free
(self):
member in Symbol
/third_party/node/deps/v8/src/wasm/baseline/
H
A
D
liftoff-assembler.h
265
DCHECK(
is_free
(LiftoffRegister::ForFpPair(low)));
411
bool
is_free
(LiftoffRegister reg) const { return !is_used(reg); }
in is_free()
function
469
if (cache_state()->
is_free
(reg)) return reg;
525
DCHECK(cache_state_.
is_free
(reg));
in PushException()
553
if (cache_state_.
is_free
(reg)) return reg;
in GetUnusedRegister()
613
if (cache_state_.
is_free
(r)) continue;
in SpillRegisters()
H
A
D
liftoff-assembler.cc
419
if (source->is_reg() && state->
is_free
(source->reg())) {
in InitMergeRegion()
/third_party/python/Lib/test/
H
A
D
test_symtable.py
131
self.assertTrue(self.internal.lookup("x").
is_free
())
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_register_allocation.cpp
889
auto
is_free
= [&](PhysReg reg_index)
in get_reg_simple()
local
903
reg_it = std::find_if(reg_it, end_it,
is_free
);
in get_reg_simple()
904
auto next_nonfree_it = std::find_if_not(reg_it, end_it,
is_free
);
in get_reg_simple()
953
bool is_valid = std::all_of(std::next(reg_win.begin()), reg_win.end(),
is_free
);
in get_reg_simple()
Completed in 13 milliseconds