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_INT16_SWAP
(Results
1 - 5
of
5
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
endianmacros.h
35
#define
PA_INT16_SWAP
(x) ((int16_t) bswap_16((uint16_t) x))
macro
40
#define
PA_INT16_SWAP
(x) ( (int16_t) ( ((uint16_t) (x) >> 8) | ((uint16_t) (x) << 8) ) )
macro
92
#define PA_MAYBE_INT16_SWAP(c,x) ((c) ?
PA_INT16_SWAP
(x) : (x))
99
#define PA_INT16_FROM_LE(x)
PA_INT16_SWAP
(x)
102
#define PA_INT16_TO_LE(x)
PA_INT16_SWAP
(x)
130
#define PA_INT16_FROM_BE(x)
PA_INT16_SWAP
(x)
133
#define PA_INT16_TO_BE(x)
PA_INT16_SWAP
(x)
H
A
D
sconv-s16le.c
214
*b =
PA_INT16_SWAP
(s);
in pa_sconv_s32le_to_s16re()
236
int32_t s = ((int32_t)
PA_INT16_SWAP
(*a)) << 16;
in pa_sconv_s32le_from_s16re()
271
*b =
PA_INT16_SWAP
(s);
in pa_sconv_s24le_to_s16re()
282
uint32_t s = ((uint32_t)
PA_INT16_SWAP
(*a)) << 8;
in pa_sconv_s24le_from_s16re()
359
*b =
PA_INT16_SWAP
(s);
in pa_sconv_s24_32le_to_s16re()
381
uint32_t s = ((uint32_t) ((int32_t)
PA_INT16_SWAP
(*a) << 16)) >> 8;
in pa_sconv_s24_32le_from_s16re()
H
A
D
svolume_c.c
95
int32_t t = pa_mult_s16_volume(
PA_INT16_SWAP
(*samples), volumes[channel]);
in pa_volume_s16re_c()
98
*samples++ =
PA_INT16_SWAP
((int16_t) t);
in pa_volume_s16re_c()
H
A
D
sconv.c
107
*b =
PA_INT16_SWAP
(*a);
in s16re_to_s16ne()
H
A
D
mix.c
270
sum += pa_mult_s16_volume(
PA_INT16_SWAP
(*((int16_t*) m->ptr)), cv);
in pa_mix_s16re_c()
275
*data =
PA_INT16_SWAP
((int16_t) sum);
in pa_mix_s16re_c()
Completed in 4 milliseconds