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:BUFF_SIZE
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/runtime_core/scripts/
H
A
D
trace_enable.sh
48
echo $
BUFF_SIZE
> $TRACKING_PATH/buffer_size_kb
97
BUFF_SIZE
=$3
101
BUFF_SIZE
=8192
/arkcompiler/runtime_core/static_core/scripts/
H
A
D
trace_enable.sh
48
echo "$
BUFF_SIZE
" > $TRACKING_PATH/buffer_size_kb
97
BUFF_SIZE
=$3
101
BUFF_SIZE
=8192
/arkcompiler/runtime_core/platforms/unix/libpandabase/
H
A
D
native_stack.cpp
29
constexpr size_t
BUFF_SIZE
= 8_KB;
in ReadOsFile()
local
30
std::vector<char> buffer(
BUFF_SIZE
);
in ReadOsFile()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
c_string.h
75
static constexpr uint32_t
BUFF_SIZE
= std::numeric_limits<T>::digits10 + 3; // 3: Reserved for sign bit and '\0'.
in ToCString()
local
77
char buf[
BUFF_SIZE
];
in ToCString()
78
uint32_t position =
BUFF_SIZE
- 1;
in ToCString()
/arkcompiler/runtime_core/static_core/runtime/mem/
H
A
D
object_helpers.cpp
71
constexpr size_t
BUFF_SIZE
= 256;
in DumpStringClass()
local
72
std::array<char,
BUFF_SIZE
> buff {0};
in DumpStringClass()
73
auto strRes = strncpy_s(&buff[0],
BUFF_SIZE
, reinterpret_cast<const char *>(strObject->GetDataMUtf8()),
in DumpStringClass()
74
std::min(
BUFF_SIZE
- 1, static_cast<size_t>(strObject->GetLength())));
in DumpStringClass()
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H
A
D
native_stack.cpp
149
constexpr size_t
BUFF_SIZE
= 8_KB;
in ReadOsFile()
local
150
std::vector<char> buffer(
BUFF_SIZE
);
in ReadOsFile()
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
bump_allocator_test.cpp
115
constexpr size_t
BUFF_SIZE
= 1_MB;
in DEATH_TEST_F()
local
117
auto pool = PoolManager::GetMmapMemPool()->AllocPool(
BUFF_SIZE
, SpaceType::SPACE_TYPE_INTERNAL,
in DEATH_TEST_F()
Completed in 4 milliseconds