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:rBegin
(Results
1 - 5
of
5
) sorted by relevance
/foundation/communication/wifi/wifi/base/cRPC/src/
H
A
D
context.c
79
int left = (int)((context->
rBegin
<= context->rEnd) ? (context->rCapacity - 1 - context->rEnd + context->
rBegin
)
in ExpandReadCache()
80
: (context->
rBegin
- context->rEnd - 1));
in ExpandReadCache()
96
if (context->
rBegin
> context->rEnd &&
in ExpandReadCache()
104
if (context->
rBegin
> context->rEnd) {
in ExpandReadCache()
220
if (context->
rBegin
== context->rEnd) {
in ContextGetReadRecord()
223
uint32_t len = (context->
rBegin
<= context->rEnd) ? (context->rEnd - context->
rBegin
)
in ContextGetReadRecord()
224
: (context->rCapacity - context->
rBegin
+ context->rEnd);
in ContextGetReadRecord()
229
if (context->
rBegin
< contex
in ContextGetReadRecord()
[all...]
/foundation/communication/wifi/wifi/test/wifi_standard/ipc_framework/cRPC/unittest/
H
A
D
context_test.cpp
88
int left = (context->
rBegin
<= context->rEnd) ? (context->rCapacity - 1 - context->rEnd + context->
rBegin
)
in ExpandReadCache()
89
: (context->
rBegin
- context->rEnd - 1);
in ExpandReadCache()
104
if (context->
rBegin
> context->rEnd &&
in ExpandReadCache()
111
if (context->
rBegin
> context->rEnd) {
in ExpandReadCache()
162
ctx->
rBegin
= ctx->rEnd = 1024 - 5; // set end pos
in HWTEST_F()
182
ctx->
rBegin
= 1024 - 5;
in HWTEST_F()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_base/
H
A
D
context_test.cpp
88
int left = (context->
rBegin
<= context->rEnd) ? (context->rCapacity - 1 - context->rEnd + context->
rBegin
)
in ExpandReadCache()
89
: (context->
rBegin
- context->rEnd - 1);
in ExpandReadCache()
104
if (context->
rBegin
> context->rEnd &&
in ExpandReadCache()
110
if (context->
rBegin
> context->rEnd) {
in ExpandReadCache()
160
ctx->
rBegin
= ctx->rEnd = 1024 - 5; // set end pos
in HWTEST_F()
180
ctx->
rBegin
= 1024 - 5;
in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H
A
D
convertor.cpp
72
auto
rBegin
= std::find_if(prefix.Data().rbegin(), prefix.Data().rend(), [](int ch) { return !std::isspace(ch); });
in TrimKey()
local
73
auto end = static_cast<decltype(begin)>(
rBegin
.base());
in TrimKey()
/foundation/communication/wifi/wifi/base/cRPC/include/
H
A
D
context.h
31
unsigned int
rBegin
; /* current read pos */
member
Completed in 6 milliseconds