OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_nchars
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/speex/libspeex/
bits.c
191
int
max_nchars
= max_nbytes/BYTES_PER_CHAR;
local
203
if (
max_nchars
> ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR))
204
max_nchars
= ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR);
206
for (i=0;i<
max_nchars
;i++)
208
return
max_nchars
*BYTES_PER_CHAR;
213
int
max_nchars
= max_nbytes/BYTES_PER_CHAR;
local
215
if (
max_nchars
> ((bits->nbBits)>>LOG2_BITS_PER_CHAR))
216
max_nchars
= ((bits->nbBits)>>LOG2_BITS_PER_CHAR);
217
for (i=0;i<
max_nchars
;i++)
221
bits->chars[0]=bits->chars[
max_nchars
];
[
all
...]
/external/speex/libspeex/
bits.c
191
int
max_nchars
= max_nbytes/BYTES_PER_CHAR;
local
203
if (
max_nchars
> ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR))
204
max_nchars
= ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR);
206
for (i=0;i<
max_nchars
;i++)
208
return
max_nchars
*BYTES_PER_CHAR;
213
int
max_nchars
= max_nbytes/BYTES_PER_CHAR;
local
215
if (
max_nchars
> ((bits->nbBits)>>LOG2_BITS_PER_CHAR))
216
max_nchars
= ((bits->nbBits)>>LOG2_BITS_PER_CHAR);
217
for (i=0;i<
max_nchars
;i++)
221
bits->chars[0]=bits->chars[
max_nchars
];
[
all
...]
Completed in 516 milliseconds