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:CACHE_SIZE
(Results
1 - 8
of
8
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/regexp/
H
A
D
regexp_parser_cache.h
30
static constexpr size_t
CACHE_SIZE
= 128;
member in panda::ecmascript::RegExpParserCache
50
std::array<ParserKey,
CACHE_SIZE
> info_ {};
H
A
D
regexp_parser_cache.cpp
42
return (hashcode ^ flags) %
CACHE_SIZE
;
in GetHash()
H
A
D
regexp_parser.cpp
23
static constexpr uint32_t
CACHE_SIZE
= 128;
member
920
char buffer[
CACHE_SIZE
] = {0};
in ParseGroupSpecifier()
938
} else if (c >
CACHE_SIZE
&& c != KEY_EOF) {
in ParseGroupSpecifier()
1614
if (c <
CACHE_SIZE
) {
in IsIdentFirst()
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_string.h
321
static constexpr int
CACHE_SIZE
= 256;
member in panda::ecmascript::CompareStringsOption::StringSplitResultCache
341
static constexpr int
CACHE_SIZE
= 128;
member in panda::ecmascript::CompareStringsOption::StringToListResultCache
H
A
D
builtins_string.cpp
2396
int length =
CACHE_SIZE
* ENTRY_SIZE;
in CreateCacheTable()
2407
uint32_t entry = hash & (
CACHE_SIZE
- 1);
in FindCachedResult()
2445
uint32_t entry = hash & (
CACHE_SIZE
- 1);
in SetCachedResult()
2455
int length =
CACHE_SIZE
* ENTRY_SIZE;
in CreateCacheTable()
2468
uint32_t entry = hash & (
CACHE_SIZE
- 1);
in FindCachedResult()
2504
uint32_t entry = hash & (
CACHE_SIZE
- 1);
in SetCachedResult()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
H
A
D
regexp_parser.cpp
98
static constexpr uint32_t
CACHE_SIZE
= 128;
member
856
std::array<char,
CACHE_SIZE
> buffer {};
in ParseGroupSpecifier()
875
} else if (c >
CACHE_SIZE
&& c != KEY_EOF) {
in ParseGroupSpecifier()
1513
if (c <
CACHE_SIZE
) {
in IsIdentFirst()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H
A
D
builtins_regexp_test.cpp
593
RegExpParserCache::
CACHE_SIZE
, vec).first.IsHole());
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H
A
D
builtins_array_stub_builder.cpp
2702
GateRef entry = Int32And(hash, Int32Sub(Int32(builtins::StringToListResultCache::
CACHE_SIZE
), Int32(1)));
in From()
Completed in 21 milliseconds