HomeSort by relevance Sort by last modified time
    Searched refs:denum (Results 1 - 9 of 9) sorted by null

  /external/aac/libFDK/include/x86/
fixpoint_math_x86.h 192 * \param denum divisor
197 inline FIXP_DBL schur_div(FIXP_DBL num, FIXP_DBL denum, INT count) {
201 FDK_ASSERT(denum > (FIXP_DBL)0);
202 FDK_ASSERT(num <= denum);
204 return (num == denum) ? (FIXP_DBL)MAXVAL_DBL
205 : (FIXP_DBL)(INT)(((INT64)(INT)num << 31) / (INT)denum);
  /external/u-boot/drivers/clk/aspeed/
clk_ast2500.c 44 unsigned int denum; member in struct:ast2500_div_config
55 const ulong denum = (mpll_reg & SCU_MPLL_DENUM_MASK) local
60 return (clkin * ((num + 1) / (denum + 1))) / (post_div + 1);
70 const ulong denum = (hpll_reg & SCU_HPLL_DENUM_MASK) local
75 return (clkin * ((num + 1) / (denum + 1))) / (post_div + 1);
192 for (; it.denum <= max_vals.denum; ++it.denum) {
196 * (it.denum + 1);
201 * ((it.num + 1) / (it.denum + 1))
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
intialize.c 126 double t, dtmp, dtmp2, denum, denum2; local
139 denum = 1.0 / ((double) PITCH_WLPCWINLEN);
140 denum2 = denum * denum;
142 dtmp = PITCH_WLPCASYM * t * denum + (1-PITCH_WLPCASYM) * t * t * denum2;
  /device/google/contexthub/lib/nanohub/
rsa.c 23 static bool biModIterative(uint32_t *num, const uint32_t *denum, uint32_t *tmp, uint32_t *state1, uint32_t *state2, uint32_t step)
24 //num %= denum where num is RSA_LEN * 2 and denum is RSA_LEN and tmp is RSA_LEN + limb_sz
35 memcpy(tmp + 1, denum, RSA_BYTES);
42 //second is shifting denum
84 if (!bitsh) { // tmp = denum << 32
90 memcpy(tmp + 1, denum, RSA_BYTES);
229 static void biMod(uint32_t *num, const uint32_t *denum, uint32_t *tmp)
233 for (step = 0; !biModIterative(num, denum, tmp, &state1, &state2, step); step++);
  /external/libgsm/src/
add.c 201 * of the div(num, denum) arithmetic operation. Compute div
202 * which is the integer division of num by denum: with denum
206 word gsm_div P2((num,denum), word num, word denum)
209 longword L_denum = denum;
220 assert(num >= 0 && denum >= num);
  /external/aac/libFDK/src/
fixpoint_math.cpp 402 FIXP_DBL schur_div(FIXP_DBL num, FIXP_DBL denum, INT count) {
404 INT L_denum = (LONG)denum >> 1;
409 FDK_ASSERT(denum > (FIXP_DBL)0);
410 FDK_ASSERT(num <= denum);
  /external/libgsm/inc/
private.h 67 extern word gsm_div P((word num, word denum));
  /external/aac/libAACenc/src/
adj_thr.cpp 1167 FIXP_DBL denum = frameEnergy << scale; local
2626 FIXP_DBL denum = (FIXP_DBL)FDKaacEnc_bits2pe2(bitsLast, bits2PeFactor_m, local
    [all...]
  /external/aac/libFDK/include/
fixpoint_math.h 408 * \param denum divisor
413 FIXP_DBL schur_div(FIXP_DBL num, FIXP_DBL denum, INT count);
571 * \param denum denominator
574 * \return num/denum with exponent = *result_e
581 * \param denum denominator
582 * \return num/denum with exponent = 0
589 * \param denum denominator
592 * \return num/denum with exponent = *result_e
599 * \param denum denominator
600 * \return num/denum with exponent =
    [all...]

Completed in 602 milliseconds