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:deficit
(Results
1 - 25
of
45
) sorted by relevance
1
2
/kernel/linux/linux-5.10/net/sched/
H
A
D
sch_drr.c
29
u32
deficit
;
member
267
xstats.
deficit
= cl->
deficit
;
in drr_dump_class_stats()
369
cl->
deficit
= cl->quantum;
in drr_enqueue()
395
if (len <= cl->
deficit
) {
in drr_dequeue()
396
cl->
deficit
-= len;
in drr_dequeue()
410
cl->
deficit
+= cl->quantum;
in drr_dequeue()
H
A
D
sch_fq_codel.c
46
int
deficit
;
member
212
flow->
deficit
= q->quantum;
in fq_codel_enqueue()
297
if (flow->
deficit
<= 0) {
in fq_codel_dequeue()
298
flow->
deficit
+= q->quantum;
in fq_codel_dequeue()
316
flow->
deficit
-= qdisc_pkt_len(skb);
in fq_codel_dequeue()
634
xstats.class_stats.
deficit
= flow->
deficit
;
in fq_codel_dump_class_stats()
H
A
D
sch_hhf.c
124
int
deficit
;
member
400
bucket->
deficit
= weight * q->quantum;
in hhf_enqueue()
434
if (bucket->
deficit
<= 0) {
in hhf_dequeue()
438
bucket->
deficit
+= weight * q->quantum;
in hhf_dequeue()
458
bucket->
deficit
-= qdisc_pkt_len(skb);
in hhf_dequeue()
H
A
D
sch_fq_pie.c
37
* @
deficit
: number of remaining byte credits
46
s32
deficit
;
member
189
sel_flow->
deficit
= q->quantum;
in fq_pie_qdisc_enqueue()
253
if (flow->
deficit
<= 0) {
in fq_pie_qdisc_dequeue()
254
flow->
deficit
+= q->quantum;
in fq_pie_qdisc_dequeue()
277
flow->
deficit
-= pkt_len;
in fq_pie_qdisc_dequeue()
H
A
D
sch_ets.c
24
* ones are tried next. Each band is assigned a
deficit
counter, initialized to
27
* head of the list if the packet size is smaller or equal to the
deficit
43
u32
deficit
;
member
447
cl->
deficit
= cl->quantum;
in ets_qdisc_enqueue()
491
if (len <= cl->
deficit
) {
in ets_qdisc_dequeue()
492
cl->
deficit
-= len;
in ets_qdisc_dequeue()
501
cl->
deficit
+= cl->quantum;
in ets_qdisc_dequeue()
667
q->classes[i].
deficit
= quanta[i];
in ets_qdisc_change()
H
A
D
sch_cbq.c
117
long
deficit
; /* Saved
deficit
for WRR */
member
684
int
deficit
;
in cbq_dequeue_prio()
local
690
deficit
= 0;
in cbq_dequeue_prio()
700
if (cl->
deficit
<= 0) {
in cbq_dequeue_prio()
704
deficit
= 1;
in cbq_dequeue_prio()
705
cl->
deficit
+= cl->quantum;
in cbq_dequeue_prio()
718
cl->
deficit
-= qdisc_pkt_len(skb);
in cbq_dequeue_prio()
732
if (cl->
deficit
<= 0) {
in cbq_dequeue_prio()
735
cl->
deficit
in cbq_dequeue_prio()
[all...]
H
A
D
sch_qfq.c
141
int
deficit
; /* DRR
deficit
counter. */
member
479
cl->
deficit
= lmax;
in qfq_change_class()
990
cl->
deficit
-= (int) len;
in agg_dequeue()
994
else if (cl->
deficit
< qdisc_pkt_len(cl->qdisc->ops->peek(cl->qdisc))) {
in agg_dequeue()
995
cl->
deficit
+= agg->lmax;
in agg_dequeue()
1268
== cl && cl->
deficit
< len)
in qfq_enqueue()
1275
cl->
deficit
= agg->lmax;
in qfq_enqueue()
/kernel/linux/linux-6.6/net/sched/
H
A
D
sch_drr.c
28
u32
deficit
;
member
267
xstats.
deficit
= cl->
deficit
;
in drr_dump_class_stats()
361
cl->
deficit
= cl->quantum;
in drr_enqueue()
387
if (len <= cl->
deficit
) {
in drr_dequeue()
388
cl->
deficit
-= len;
in drr_dequeue()
402
cl->
deficit
+= cl->quantum;
in drr_dequeue()
H
A
D
sch_ets.c
24
* ones are tried next. Each band is assigned a
deficit
counter, initialized to
27
* head of the list if the packet size is smaller or equal to the
deficit
43
u32
deficit
;
member
439
cl->
deficit
= cl->quantum;
in ets_qdisc_enqueue()
483
if (len <= cl->
deficit
) {
in ets_qdisc_dequeue()
484
cl->
deficit
-= len;
in ets_qdisc_dequeue()
493
cl->
deficit
+= cl->quantum;
in ets_qdisc_dequeue()
653
q->classes[i].
deficit
= quanta[i];
in ets_qdisc_change()
680
q->classes[i].
deficit
= 0;
in ets_qdisc_change()
H
A
D
sch_fq_codel.c
46
int
deficit
;
member
212
flow->
deficit
= q->quantum;
in fq_codel_enqueue()
297
if (flow->
deficit
<= 0) {
in fq_codel_dequeue()
298
flow->
deficit
+= q->quantum;
in fq_codel_dequeue()
316
flow->
deficit
-= qdisc_pkt_len(skb);
in fq_codel_dequeue()
643
xstats.class_stats.
deficit
= flow->
deficit
;
in fq_codel_dump_class_stats()
H
A
D
sch_hhf.c
124
int
deficit
;
member
400
bucket->
deficit
= weight * q->quantum;
in hhf_enqueue()
434
if (bucket->
deficit
<= 0) {
in hhf_dequeue()
438
bucket->
deficit
+= weight * q->quantum;
in hhf_dequeue()
458
bucket->
deficit
-= qdisc_pkt_len(skb);
in hhf_dequeue()
H
A
D
sch_fq_pie.c
37
* @
deficit
: number of remaining byte credits
46
s32
deficit
;
member
189
sel_flow->
deficit
= q->quantum;
in fq_pie_qdisc_enqueue()
253
if (flow->
deficit
<= 0) {
in fq_pie_qdisc_dequeue()
254
flow->
deficit
+= q->quantum;
in fq_pie_qdisc_dequeue()
277
flow->
deficit
-= pkt_len;
in fq_pie_qdisc_dequeue()
H
A
D
sch_qfq.c
139
int
deficit
; /* DRR
deficit
counter. */
member
479
cl->
deficit
= lmax;
in qfq_change_class()
985
cl->
deficit
-= (int) len;
in agg_dequeue()
989
else if (cl->
deficit
< qdisc_pkt_len(cl->qdisc->ops->peek(cl->qdisc))) {
in agg_dequeue()
990
cl->
deficit
+= agg->lmax;
in agg_dequeue()
1262
== cl && cl->
deficit
< len)
in qfq_enqueue()
1269
cl->
deficit
= agg->lmax;
in qfq_enqueue()
/kernel/linux/linux-5.10/include/net/
H
A
D
fq_impl.h
82
if (flow->
deficit
<= 0) {
in fq_tin_dequeue()
83
flow->
deficit
+= fq->quantum;
in fq_tin_dequeue()
102
flow->
deficit
-= skb->len;
in fq_tin_dequeue()
179
flow->
deficit
= fq->quantum;
in fq_tin_enqueue()
H
A
D
fq.h
20
* (
deficit
round robin) based round robin queuing similar to the one
27
* @
deficit
: used for DRR++
35
int
deficit
;
member
/kernel/linux/linux-6.6/include/net/
H
A
D
fq_impl.h
110
if (flow->
deficit
<= 0) {
in fq_tin_dequeue()
111
flow->
deficit
+= fq->quantum;
in fq_tin_dequeue()
130
flow->
deficit
-= skb->len;
in fq_tin_dequeue()
229
flow->
deficit
= fq->quantum;
in fq_tin_enqueue()
H
A
D
fq.h
24
* (
deficit
round robin) based round robin queuing similar to the one
29
* @
deficit
: used for DRR++
36
int
deficit
;
member
/kernel/linux/linux-5.10/net/mac80211/
H
A
D
debugfs_sta.c
204
s64
deficit
[IEEE80211_NUM_ACS];
in sta_airtime_read()
local
215
deficit
[ac] = sta->airtime[ac].
deficit
;
in sta_airtime_read()
223
deficit
[0],
deficit
[1],
deficit
[2],
deficit
[3]);
in sta_airtime_read()
241
sta->airtime[ac].
deficit
= sta->airtime_weight;
in sta_airtime_write()
/kernel/linux/linux-6.6/net/mac80211/
H
A
D
debugfs_sta.c
206
s32
deficit
[IEEE80211_NUM_ACS];
in sta_airtime_read()
local
217
deficit
[ac] = sta->airtime[ac].
deficit
;
in sta_airtime_read()
225
deficit
[0],
deficit
[1],
deficit
[2],
deficit
[3]);
in sta_airtime_read()
243
sta->airtime[ac].
deficit
= sta->airtime_weight;
in sta_airtime_write()
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/mt7615/
H
A
D
sdio_mcu.c
35
sdio->sched.
deficit
= txdwcnt << 2;
in mt7663s_mcu_init_sched()
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/mt7615/
H
A
D
sdio_mcu.c
33
sdio->sched.
deficit
= txdwcnt << 2;
in mt7663s_mcu_init_sched()
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
H
A
D
pkt_sched.h
471
__u32
deficit
;
member
604
__s32
deficit
;
member
/kernel/linux/linux-5.10/tools/include/uapi/linux/
H
A
D
pkt_sched.h
670
__u32
deficit
;
member
849
__s32
deficit
;
member
/kernel/linux/linux-5.10/include/uapi/linux/
H
A
D
pkt_sched.h
690
__u32
deficit
;
member
871
__s32
deficit
;
member
/kernel/linux/linux-6.6/include/uapi/linux/
H
A
D
pkt_sched.h
692
__u32
deficit
;
member
891
__s32
deficit
;
member
Completed in 33 milliseconds
1
2