Searched defs:c_max (Results 1 - 6 of 6) sorted by relevance

/external/libopus/silk/fixed/
H A Dresidual_energy16_FIX.c45 opus_int32 c_max, w_max, tmp, tmp2, nrg; local
58 c_max = 0;
60 c_max = silk_max_32( c_max, silk_abs( (opus_int32)c[ i ] ) );
62 Qxtra = silk_min_int( Qxtra, silk_CLZ32( c_max ) - 17 );
65 Qxtra = silk_min_int( Qxtra, silk_CLZ32( silk_MUL( D, silk_RSHIFT( silk_SMULWB( w_max, c_max ), 4 ) ) ) - 5 );
/external/libhevc/decoder/
H A Dihevcd_cabac.c534 * @param[in] c_max
552 WORD32 c_max,
561 ASSERT(c_max > 0);
563 ASSERT((ctxt_index + (c_max >> ctxt_shift)) < IHEVC_CAB_CTXT_END);
572 }while(((WORD32)u4_sym < c_max) && bin);
596 * @param[in] c_max
605 WORD32 c_max)
614 ASSERT(c_max > 0);
618 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, (UWORD32)c_max);
619 u4_bits <<= (32 - c_max);
550 ihevcd_cabac_decode_bins_tunary(cab_ctxt_t *ps_cabac, bitstrm_t *ps_bitstrm, WORD32 c_max, WORD32 ctxt_index, WORD32 ctxt_shift, WORD32 ctxt_inc_max) argument
603 ihevcd_cabac_decode_bypass_bins_tunary(cab_ctxt_t *ps_cabac, bitstrm_t *ps_bitstrm, WORD32 c_max) argument
734 WORD32 c_max; local
[all...]
H A Dihevcd_parse_residual.c200 WORD32 c_max; local
238 c_max = (log2_trafo_size << 1) - 1;
257 c_max,
260 c_max);
267 c_max,
270 c_max);
H A Dihevcd_parse_slice.c292 WORD32 c_max = TU_MAX_QP_DELTA_ABS; local
301 c_max,
305 if(cu_qp_delta_abs >= c_max)
2090 WORD32 c_max = (1 << (MIN(BIT_DEPTH, 10) - 5)) - 1; local
2093 sao_offset[i] = ihevcd_cabac_decode_bypass_bins_tunary(ps_cabac, ps_bitstrm, c_max);
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_tgsi_setup.c306 LLVMValueRef c_max = lp_build_const_int32(gallivm, num - 1); local
310 index = LLVMBuildAnd(builder, index, c_max, "");
318 cc = LLVMBuildICmp(builder, LLVMIntULE, index, c_max, "");
319 index = LLVMBuildSelect(builder, cc, index, c_max, "");
/external/libxml2/
H A Dxmlregexp.c6444 int c_max; /* the maximum length it can consume */ member in struct:_xmlExpNode
6744 entry->c_max = 1;
6752 entry->c_max = -1;
6754 entry->c_max = max * entry->exp_left->c_max;
6761 if ((entry->exp_left->c_max == -1) ||
6762 (entry->exp_right->c_max == -1))
6763 entry->c_max = -1;
6764 else if (entry->exp_left->c_max > entry->exp_right->c_max)
[all...]

Completed in 1238 milliseconds