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:tail_
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/hiebpf/src/
H
A
D
ringbuffer.cpp
92
destBufs[0].iov_base = buffer_ +
tail_
;
in Read()
93
if (
tail_
+ len < bufSize_) {
in Read()
96
destBufs[1].iov_base = buffer_ +
tail_
+ len;
in Read()
100
destBufs[0].iov_len = bufSize_ -
tail_
;
in Read()
102
destBufs[1].iov_len = len +
tail_
- bufSize_;
in Read()
107
tail_
+= static_cast<std::size_t>(ret);
in Read()
108
while (
tail_
>= bufSize_) {
in Read()
109
tail_
-= bufSize_;
in Read()
213
if (
tail_
+ len < bufSize_) {
in Put()
215
if (memcpy_s(buffer_ +
tail_
, bufSize
in Put()
[all...]
/developtools/hiperf/src/
H
A
D
ring_buffer.cpp
39
return size_ - (head_.load(std::memory_order_relaxed) -
tail_
.load(std::memory_order_relaxed));
in GetFreeSize()
48
size_t readHead =
tail_
.load(std::memory_order_acquire);
in AllocForWrite()
92
size_t readHead =
tail_
.load(std::memory_order_relaxed);
in GetReadData()
126
size_t tail =
tail_
.load(std::memory_order_relaxed);
in EndRead()
128
tail_
.store(tail, std::memory_order_release);
in EndRead()
/developtools/profiler/hiebpf/include/
H
A
D
ringbuffer.h
106
res = head_ -
tail_
;
in FreeSize()
115
res =
tail_
- head_;
in DataSize()
135
/* head_ =
tail_
mean empty, the buffer can never be full */
137
std::size_t
tail_
{0}; // first writebale byte
/developtools/hiperf/include/
H
A
D
ring_buffer.h
45
std::atomic_size_t
tail_
= 0; // read from this, always increase
member in OHOS::Developtools::HiPerf::RingBuffer
/developtools/profiler/hiebpf/test/unittest/
H
A
D
ringbuffer_test.cpp
247
EXPECT_EQ(ringBuffer->
tail_
, testStr.size());
in HWTEST_F()
Completed in 2 milliseconds