OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LM
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/opus/src/celt/
modes.c
231
int
LM
;
286
LM
= 3;
289
LM
= 2;
292
LM
= 1;
295
LM
= 0;
299
if ((opus_int32)(frame_size>>
LM
)*300 > Fs)
340
mode->maxLM =
LM
;
341
mode->nbShortMdcts = 1<<
LM
;
351
if ((mode->eBands[mode->nbEBands] - mode->eBands[mode->nbEBands-1])<<
LM
>
celt_decoder.c
261
celt_sig * OPUS_RESTRICT out_mem[], int C, int
LM
)
276
N = mode->shortMdctSize<<
LM
;
277
shift = mode->maxLM-
LM
;
286
static void tf_decode(int start, int end, int isTransient, int *tf_res, int
LM
, ec_dec *dec)
298
tf_select_rsv =
LM
>0 && tell+logp+1<=budget;
314
tf_select_table[
LM
][4*isTransient+0+tf_changed] !=
315
tf_select_table[
LM
][4*isTransient+2+tf_changed])
321
tf_res[i] = tf_select_table[
LM
][4*isTransient+2*tf_select+tf_res[i]];
333
static void celt_decode_lost(CELTDecoder * OPUS_RESTRICT st, opus_val16 * OPUS_RESTRICT pcm, int N, int
LM
)
412
boffs = N*c+(eBands[i]<<
LM
);
[
all
...]
celt_encoder.c
411
celt_sig * OPUS_RESTRICT out, int C, int CC, int
LM
, int upsample)
425
N = mode->shortMdctSize<<
LM
;
426
shift = mode->maxLM-
LM
;
524
static opus_val32 l1_metric(const celt_norm *tmp, int N, int
LM
, opus_val16 bias)
532
L1 = MAC16_32_Q15(L1,
LM
*bias, L1);
538
int *tf_res, int lambda, celt_norm *X, int N0, int
LM
,
559
ALLOC(tmp, (m->eBands[len]-m->eBands[len-1])<<
LM
, celt_norm);
560
ALLOC(tmp_1, (m->eBands[len]-m->eBands[len-1])<<
LM
, celt_norm);
571
N = (m->eBands[i+1]-m->eBands[i])<<
LM
;
572
/* band is too narrow to be split down to
LM
=-1 *
[
all
...]
/external/clang/lib/Parse/
ParseCXXInlineMethods.cpp
142
LexedMethod*
LM
= new LexedMethod(this, FnD);
143
getCurrentClass().LateParsedDeclarations.push_back(
LM
);
144
LM
->TemplateScope = getCurScope()->isTemplateParamScope();
145
CachedTokens &Toks =
LM
->Toks;
302
void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &
LM
) {
304
ParseScope TemplateScope(this, Scope::TemplateParamScope,
LM
.TemplateScope);
306
if (
LM
.TemplateScope) {
307
Actions.ActOnReenterTemplateScope(getCurScope(),
LM
.Method);
311
Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(),
LM
.Method);
317
for (unsigned I = 0, N =
LM
.DefaultArgs.size(); I != N; ++I)
[
all
...]
ParseObjc.cpp
[
all
...]
/external/srec/seti/sltsEngine/include/
lts_seq_internal.h
111
typedef struct
LM
{ /*letter mappings*/
116
}
LM
;
138
LM
*letter_mapping;
/external/chromium_org/third_party/opus/src/src/
opus_multistream_encoder.c
226
int
LM
;
241
for (
LM
=0;
LM
<=celt_mode->maxLM;
LM
++)
242
if (celt_mode->shortMdctSize<<
LM
==frame_size)
260
clt_mdct_forward(&celt_mode->mdct, in, freq, celt_mode->window, overlap, celt_mode->maxLM-
LM
, 1);
270
compute_band_energies(celt_mode, freq, bandE, 21, 1, 1<<
LM
);
opus_encoder.c
558
static float transient_boost(const float *E, const float *E_1, int
LM
, int maxM)
565
M = IMIN(maxM, (1<<
LM
)+1);
572
/*if (
LM
==3)
864
int
LM
= 3;
865
LM
= optimize_framesize(analysis_pcm, frame_size, C, Fs, bitrate_bps,
867
while ((Fs/400<<
LM
)>frame_size)
868
LM
--;
869
frame_size = (Fs/400<<
LM
);
[
all
...]
/external/clang/include/clang/Analysis/Analyses/
FormatString.h
316
LengthModifier
LM
;
328
void setLengthModifier(LengthModifier
lm
) {
329
LM
=
lm
;
347
return
LM
;
371
/// assign the appropriate value to
LM
and return true.
372
static bool namedTypeToLengthModifier(QualType QT, LengthModifier &
LM
);
/external/clang/lib/Sema/
SemaChecking.cpp
[
all
...]
Completed in 449 milliseconds