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:curPos
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H
A
D
card_table-inl.h
132
size_t
curPos
= 0;
in VisitMarkedCompact()
local
138
while (
curPos
< cardsCount_) {
in VisitMarkedCompact()
139
endPos = std::min(
curPos
+ MAX_CARDS_COUNT - 1, cardsCount_ - 1);
in VisitMarkedCompact()
140
FillRanges(&memRanges, &cards_[
curPos
], &cards_[endPos]);
in VisitMarkedCompact()
141
curPos
= endPos + 1;
in VisitMarkedCompact()
142
if (GetCardStartAddress(&cards_[
curPos
]) > maxPoolAddress) {
in VisitMarkedCompact()
/arkcompiler/ets_frontend/es2panda/util/
H
A
D
symbolTable.cpp
153
size_t
curPos
= 0;
in GetStringItems()
local
156
while ((
curPos
= input.find(separator, lastPos)) != std::string_view::npos) {
in GetStringItems()
157
auto token = input.substr(lastPos,
curPos
- lastPos);
in GetStringItems()
161
lastPos =
curPos
+ separator.size();
in GetStringItems()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H
A
D
llvm_codegen.cpp
119
auto &
curPos
= isReq ? reqBufPos_ : unreqBufPos_;
in Alloca()
local
121
if (
curPos
+ size > limit) {
in Alloca()
122
LOG_COMPILER(ERROR) << std::hex << "Alloca Section failed. Current
curPos
:" <<
curPos
in Alloca()
127
curPos
= AlignUp(
curPos
, alignSize);
in Alloca()
129
addr = bufBegin +
curPos
;
in Alloca()
130
curPos
+= size;
in Alloca()
Completed in 3 milliseconds