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:PA_INT32_SWAP
(Results
1 - 3
of
3
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
endianmacros.h
37
#define
PA_INT32_SWAP
(x) ((int32_t) bswap_32((uint32_t) x))
macro
42
#define
PA_INT32_SWAP
(x) ( (int32_t) ( ((uint32_t) (x) >> 24) | ((uint32_t) (x) << 24) | (((uint32_t) (x) & 0xFF00) << 8) | ((((uint32_t) (x)) >> 8) & 0xFF00) ) )
macro
95
#define PA_MAYBE_INT32_SWAP(c,x) ((c) ?
PA_INT32_SWAP
(x) : (x))
111
#define PA_INT32_FROM_LE(x)
PA_INT32_SWAP
(x)
114
#define PA_INT32_TO_LE(x)
PA_INT32_SWAP
(x)
142
#define PA_INT32_FROM_BE(x)
PA_INT32_SWAP
(x)
145
#define PA_INT32_TO_BE(x)
PA_INT32_SWAP
(x)
H
A
D
svolume_c.c
161
t = (int64_t)
PA_INT32_SWAP
(*samples);
in pa_volume_s32re_c()
164
*samples++ =
PA_INT32_SWAP
((int32_t) t);
in pa_volume_s32re_c()
H
A
D
mix.c
327
v =
PA_INT32_SWAP
(*((int32_t*) m->ptr));
in pa_mix_s32re_c()
335
*data =
PA_INT32_SWAP
((int32_t) sum);
in pa_mix_s32re_c()
451
*data =
PA_INT32_SWAP
(((uint32_t) (int32_t) sum) >> 8);
in pa_mix_s24_32re_c()
Completed in 3 milliseconds