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:_head
(Results
1 - 3
of
3
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
llist.h
53
t **
_head
= &(head), *_item = (item); \
55
if ((_item->next = *
_head
)) \
58
*
_head
= _item; \
64
t **
_head
= &(head), *_item = (item); \
71
pa_assert(*
_head
== _item); \
72
*
_head
= _item->next; \
80
t **
_head
= (head), *_item = (item); \
81
*
_head
= _item; \
82
pa_assert(
_head
); \
83
while ((*
_head
)
[all...]
/third_party/zlib/contrib/dotzlib/DotZLib/
H
A
D
CircularBuffer.cs
21
private int
_head
;
field in DotZLib.CircularBuffer
32
_head
= 0;
in CircularBuffer()
65
destination[offset + i] = _buffer[(
_head
+i) % _capacity];
in Get()
66
_head
+= trueCount;
in Get()
67
_head
%= _capacity;
in Get()
77
int result = (int)_buffer[
_head
++ % _capacity];
in Get()
/third_party/eudev/src/shared/
H
A
D
list.h
50
typeof(*(head)) **
_head
= &(head), *_item = (item); \
52
if ((_item->name##_next = *
_head
)) \
55
*
_head
= _item; \
61
typeof(*(head)) **
_head
= &(head), *_item = (item); \
68
assert(*
_head
== _item); \
69
*
_head
= _item->name##_next; \
103
typeof(*(head)) **
_head
= &(head), *_a = (a), *_b = (b); \
106
if ((_b->name##_next = *
_head
)) \
109
*
_head
= _b; \
Completed in 1 milliseconds