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:kMinSize
(Results
1 - 14
of
14
) sorted by relevance
/third_party/lzma/CPP/7zip/Compress/
H
A
D
Lzma2Decoder.cpp
63
const UInt32
kMinSize
= (UInt32)1 << 20;
in Get_ExpectedBlockSize_From_Dict()
local
66
if (blockSize <
kMinSize
) blockSize =
kMinSize
;
in Get_ExpectedBlockSize_From_Dict()
69
blockSize += (
kMinSize
- 1);
in Get_ExpectedBlockSize_From_Dict()
70
blockSize &= ~(UInt64)(
kMinSize
- 1);
in Get_ExpectedBlockSize_From_Dict()
/third_party/node/deps/v8/src/heap/
H
A
D
heap-controller.cc
37
max_size = std::max({max_size, Trait::
kMinSize
});
in MaxGrowingFactor()
45
DCHECK_GE(max_size, Trait::
kMinSize
);
in MaxGrowingFactor()
49
double factor = (max_size - Trait::
kMinSize
) *
in MaxGrowingFactor()
51
(Trait::kMaxSize - Trait::
kMinSize
) +
in MaxGrowingFactor()
H
A
D
heap-controller.h
17
static constexpr size_t
kMinSize
= 128u * Heap::kHeapLimitMultiplier * MB;
member
H
A
D
heap.cc
261
std::max({old_generation, static_cast<uint64_t>(V8HeapTrait::
kMinSize
)});
in HeapSizeFromPhysicalMemory()
/third_party/lzma/CPP/Common/
H
A
D
MyBuffer2.h
46
const size_t
kMinSize
= (size_t)1 << 16;
in AllocAtLeast()
local
47
if (size <
kMinSize
)
in AllocAtLeast()
48
size =
kMinSize
;
in AllocAtLeast()
/third_party/lzma/CPP/7zip/Common/
H
A
D
MethodProps.h
232
const UInt32
kMinSize
= (UInt32)1 << 20;
in Get_Xz_BlockSize()
local
237
if (blockSize <
kMinSize
) blockSize =
kMinSize
;
in Get_Xz_BlockSize()
240
blockSize += (
kMinSize
- 1);
in Get_Xz_BlockSize()
241
blockSize &= ~(UInt64)(
kMinSize
- 1);
in Get_Xz_BlockSize()
H
A
D
FilterCoder.cpp
56
const UInt32
kMinSize
= 1 << 12;
in Alloc()
local
57
size &= ~(UInt32)(
kMinSize
- 1);
in Alloc()
58
if (size <
kMinSize
)
in Alloc()
59
size =
kMinSize
;
in Alloc()
/third_party/lzma/CPP/7zip/Archive/7z/
H
A
D
7zHandlerOut.cpp
202
const UInt32
kMinSize
= (UInt32)1 << 20;
in SetMainMethod()
local
204
if (cs <
kMinSize
) cs =
kMinSize
;
in SetMainMethod()
207
cs += (
kMinSize
- 1);
in SetMainMethod()
208
cs &= ~(UInt64)(
kMinSize
- 1);
in SetMainMethod()
/third_party/lzma/C/
H
A
D
Lzma2Enc.c
314
const UInt32
kMinSize
= (UInt32)1 << 20;
in Lzma2EncProps_Normalize()
local
318
if (blockSize <
kMinSize
) blockSize =
kMinSize
;
in Lzma2EncProps_Normalize()
321
blockSize += (
kMinSize
- 1);
in Lzma2EncProps_Normalize()
322
blockSize &= ~(UInt64)(
kMinSize
- 1);
in Lzma2EncProps_Normalize()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H
A
D
raw_hash_set_probe_benchmark.cc
144
constexpr size_t
kMinSize
= 10000;
in GetMinMaxLoadSizes()
145
while (t.size() <
kMinSize
) t.insert(t.size());
in GetMinMaxLoadSizes()
/third_party/skia/include/private/
H
A
D
SkPathRef.h
501
kMinSize
= 256,
enumerator
/third_party/skia/src/gpu/ops/
H
A
D
SmallPathRenderer.cpp
44
static constexpr SkScalar
kMinSize
= SK_ScalarHalf;
member
701
if (maxDim > kMaxDim ||
kMinSize
> minSize || maxSize > kMaxSize) {
in onCanDrawPath()
/third_party/skia/third_party/externals/libwebp/examples/
H
A
D
cwebp.c
429
const size_t
kMinSize
= kRiffHeaderSize + kChunkHeaderSize;
in WriteWebPWithMetadata()
local
446
if (webp_size <
kMinSize
) return 0;
in WriteWebPWithMetadata()
/third_party/lzma/CPP/7zip/UI/Common/
H
A
D
Bench.cpp
784
const UInt32
kMinSize
= 100;
785
if (unpackSize <
kMinSize
)
786
unpackSize =
kMinSize
;
Completed in 24 milliseconds