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:kMaxAttempts
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/base/
H
A
D
emulated-virtual-address-subspace.cc
69
static constexpr int
kMaxAttempts
= 10;
in AllocatePages()
local
70
for (int i = 0; i <
kMaxAttempts
; i++) {
in AllocatePages()
114
static constexpr int
kMaxAttempts
= 10;
in AllocateSharedPages()
local
115
for (int i = 0; i <
kMaxAttempts
; i++) {
in AllocateSharedPages()
/third_party/node/deps/v8/src/sandbox/
H
A
D
sandbox.cc
260
constexpr int
kMaxAttempts
= 10;
in InitializeAsPartiallyReservedSandbox()
local
261
for (int i = 1; i <=
kMaxAttempts
; i++) {
in InitializeAsPartiallyReservedSandbox()
272
if (reservation_base_ <= highest_allowed_address || i ==
kMaxAttempts
)
in InitializeAsPartiallyReservedSandbox()
/third_party/node/deps/v8/src/utils/
H
A
D
allocation.cc
395
const int
kMaxAttempts
= 4;
in InitReservation()
local
396
for (int attempt = 0; attempt <
kMaxAttempts
; ++attempt) {
in InitReservation()
418
bool overreserve = (attempt ==
kMaxAttempts
- 1);
in InitReservation()
/third_party/node/deps/v8/src/base/platform/
H
A
D
platform-cygwin.cc
129
const int
kMaxAttempts
= 3;
in Allocate()
local
131
for (int i = 0; i <
kMaxAttempts
; ++i) {
in Allocate()
H
A
D
platform-win32.cc
909
const int
kMaxAttempts
= 3;
in AllocateInternal()
local
911
for (int i = 0; i <
kMaxAttempts
; ++i) {
in AllocateInternal()
Completed in 6 milliseconds