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:INDEX_SHIFT
(Results
1 - 2
of
2
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/
H
A
D
array.rs
29
const
INDEX_SHIFT
: usize = 1;
consts
82
let index = (tail >>
INDEX_SHIFT
) % self.capacity;
in prepare_send()
89
if (tail >>
INDEX_SHIFT
) == node_index {
in prepare_send()
92
tail.wrapping_add(1 <<
INDEX_SHIFT
),
in prepare_send()
202
let tail = self.tail.load(Acquire) >>
INDEX_SHIFT
;
in len()
243
let index = (tail >>
INDEX_SHIFT
) % self.array.capacity;
247
if (tail >>
INDEX_SHIFT
) == node_index || tail & CLOSED == CLOSED {
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
H
A
D
queue.rs
30
const
INDEX_SHIFT
: usize = 1;
consts
139
self.tail.index.fetch_add(1 <<
INDEX_SHIFT
, Release);
in send_inner()
158
let index = (tail >>
INDEX_SHIFT
) % (CAPACITY + 1);
171
.compare_exchange(tail, tail + (1 <<
INDEX_SHIFT
), AcqRel, Acquire)
248
let mut tail = self.tail.index.load(Acquire) >>
INDEX_SHIFT
;
in len()
262
let tail_index = self.tail.index.load(Acquire) >>
INDEX_SHIFT
;
in drop()
Completed in 2 milliseconds