OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:msbits
(Results
1 - 8
of
8
) sorted by null
/external/flac/libFLAC/
bitwriter.c
548
unsigned
msbits
;
local
560
msbits
= uval >> parameter;
563
if(bw->bits && bw->bits +
msbits
+ lsbits <= FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
565
bw->bits = bw->bits +
msbits
+ lsbits;
568
/* NOT: bw->accum <<=
msbits
+ lsbits because
msbits
+lsbits could be 32, then the shift would be a NOP */
569
bw->accum <<=
msbits
;
584
if(bw->bits && bw->bits +
msbits
+ lsbits < FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
586
bw->bits = bw->bits +
msbits
+ lsbits;
589
bw->accum <<=
msbits
+ lsbits
[
all
...]
/bionic/libc/kernel/common/sound/
asound.h
330
unsigned int
msbits
;
member in struct:snd_pcm_hw_params
[
all
...]
/external/kernel-headers/original/sound/
asound.h
359
unsigned int
msbits
; /* R: used most significant bits */
member in struct:snd_pcm_hw_params
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asound.h
348
unsigned int
msbits
; /* R: used most significant bits */
member in struct:snd_pcm_hw_params
[
all
...]
pcm.h
859
unsigned int
msbits
);
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asound.h
348
unsigned int
msbits
; /* R: used most significant bits */
member in struct:snd_pcm_hw_params
[
all
...]
pcm.h
859
unsigned int
msbits
);
[
all
...]
/hardware/qcom/audio/legacy/libalsa-intf/
alsa_pcm.c
305
ALOGV("
msbits
= %d\n", p->
msbits
);
Completed in 1609 milliseconds