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:cons_cnt
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/drivers/net/ethernet/fungible/funeth/
H
A
D
funeth_tx.c
313
return q->mask - q->prod_cnt + q->
cons_cnt
;
in fun_txq_avail()
431
for (head = txq_hw_head(q), reclaim_idx = q->
cons_cnt
& q->mask;
in fun_txq_reclaim()
454
q->
cons_cnt
+= ndesc;
in fun_txq_reclaim()
478
db_val = READ_ONCE(q->irq_db_val) | (q->
cons_cnt
& q->mask);
in fun_txq_napi_poll()
488
for (head = txq_hw_head(q), reclaim_idx = q->
cons_cnt
& q->mask;
in fun_xdpq_clean()
510
q->
cons_cnt
+= ndesc;
in fun_xdpq_clean()
603
while (q->
cons_cnt
!= q->prod_cnt) {
in fun_txq_purge()
604
unsigned int idx = q->
cons_cnt
& q->mask;
in fun_txq_purge()
606
q->
cons_cnt
+= fun_unmap_pkt(q, idx);
in fun_txq_purge()
614
while (q->
cons_cnt
!
in fun_xdpq_purge()
[all...]
H
A
D
funeth_rx.c
54
if (c->prod_cnt - c->
cons_cnt
<= c->mask && buf->node == numa_mem_id()) {
in cache_offer()
72
if (c->prod_cnt == c->
cons_cnt
)
in cache_get()
75
buf = &c->bufs[c->
cons_cnt
& c->mask];
in cache_get()
82
c->
cons_cnt
++;
in cache_get()
87
if (c->prod_cnt - c->
cons_cnt
> c->mask) {
in cache_get()
92
c->
cons_cnt
++;
in cache_get()
H
A
D
funeth_txrx.h
123
u32
cons_cnt
; /* consumer (cleanup) counter */
member
158
unsigned int
cons_cnt
; /* consumer counter */
member
Completed in 3 milliseconds