HomeSort by relevance Sort by last modified time
    Searched defs:bigpow (Results 1 - 2 of 2) sorted by null

  /external/svox/pico/lib/
picokpdf.h 69 * Maximum is 15 when invdiag0=(1<<(2*bigpow))/diag0 used
70 * currently observing instability in mlpg when bigpow >= 14, this needs to be investigated */
120 picoos_uint8 bigpow; member in struct:picokpdf_pdfmul
picocep.c 351 cep->scmeanpowLFZ = cep->pdflfz->bigpow - cep->pdflfz->meanpow;
352 cep->scmeanpowMGC = cep->pdfmgc->bigpow - cep->pdfmgc->meanpow;
529 * @param bigpow (int) : normalization factor=2**N, where N=number of binary decimal digits
531 * do extra division by 1<<bigpow so that result has again single decimal size
537 picoos_uint8 bigpow, picoos_uint8 invDoubleDec)
542 big = 1 << bigpow;
546 a = x >> bigpow;
547 b = x - (a << bigpow);
549 a = -1 * ((x * -1) >> bigpow); /* most significant 2 bytes of x */
550 b = x - (a << bigpow);
870 picoos_uint8 bigpow = pdf->bigpow; local
    [all...]

Completed in 36 milliseconds