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:pull_pos
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/sound/firewire/tascam/
H
A
D
tascam-hwdep.c
63
if (tscm->
pull_pos
== tscm->push_pos)
65
else if (tscm->
pull_pos
< tscm->push_pos)
69
head_pos = tscm->
pull_pos
;
83
tscm->
pull_pos
= tail_pos % SND_TSCM_QUEUE_COUNT;
106
while (!tscm->dev_lock_changed && tscm->push_pos == tscm->
pull_pos
) {
in hwdep_read()
119
} else if (tscm->push_pos != tscm->
pull_pos
) {
in hwdep_read()
138
if (tscm->dev_lock_changed || tscm->push_pos != tscm->
pull_pos
)
in hwdep_poll()
H
A
D
tascam.h
98
unsigned int
pull_pos
;
member
/kernel/linux/linux-6.6/sound/firewire/tascam/
H
A
D
tascam-hwdep.c
63
if (tscm->
pull_pos
== tscm->push_pos)
65
else if (tscm->
pull_pos
< tscm->push_pos)
69
head_pos = tscm->
pull_pos
;
83
tscm->
pull_pos
= tail_pos % SND_TSCM_QUEUE_COUNT;
106
while (!tscm->dev_lock_changed && tscm->push_pos == tscm->
pull_pos
) {
in hwdep_read()
119
} else if (tscm->push_pos != tscm->
pull_pos
) {
in hwdep_read()
138
if (tscm->dev_lock_changed || tscm->push_pos != tscm->
pull_pos
)
in hwdep_poll()
H
A
D
tascam.h
96
unsigned int
pull_pos
;
member
/kernel/linux/linux-6.6/sound/firewire/fireface/
H
A
D
ff-protocol-former.c
556
size_t
pull_pos
;
member
563
return (parser->push_pos != parser->
pull_pos
);
in ff400_has_msg()
688
if (count < sizeof(ev) || parser->
pull_pos
== parser->push_pos)
in ff400_copy_msg_to_user()
694
while (count >= sizeof(*parser->msgs) && parser->
pull_pos
!= parser->push_pos) {
in ff400_copy_msg_to_user()
696
if (copy_to_user(buf + consumed, parser->msgs + parser->
pull_pos
,
in ff400_copy_msg_to_user()
703
++parser->
pull_pos
;
in ff400_copy_msg_to_user()
704
if (parser->
pull_pos
>= FF400_QUEUE_SIZE)
in ff400_copy_msg_to_user()
705
parser->
pull_pos
= 0;
in ff400_copy_msg_to_user()
/kernel/linux/linux-6.6/sound/firewire/motu/
H
A
D
motu-register-dsp-message-parser.c
98
unsigned int
pull_pos
;
member
396
if (parser->
pull_pos
> parser->push_pos)
in snd_motu_register_dsp_message_parser_count_event()
397
return EVENT_QUEUE_SIZE - parser->
pull_pos
+ parser->push_pos;
in snd_motu_register_dsp_message_parser_count_event()
399
return parser->push_pos - parser->
pull_pos
;
in snd_motu_register_dsp_message_parser_count_event()
405
unsigned int pos = parser->
pull_pos
;
in snd_motu_register_dsp_message_parser_copy_event()
418
parser->
pull_pos
= pos;
in snd_motu_register_dsp_message_parser_copy_event()
Completed in 4 milliseconds