Lines Matching defs:size
53 * quantizes the input val against the table of size short integers.
59 int quan (int val, short *table, int size)
63 for (i = 0 ; i < size ; i++)
295 * computes the quantization step size of the adaptive quantizer.
322 * quantization step size scale factor, 'y', this routine returns the
324 * size scale factor division operation is done in the log base 2 domain
329 int y, /* Step size multiplier */
331 int size) /* table size of short integers */
337 short dln ; /* Step size scale factor normalized log */
353 * "Divide" by step size multiplier.
362 i = quan (dln, table, size) ;
364 return ((size << 1) + 1 - i) ;
366 return ((size << 1) + 1) ; /* new in 1988 */
374 * codeword 'i' and quantization step size scale factor 'y'.
381 int y) /* Step size multiplier */
409 int y, /* quantizer step size */
449 /* update non-steady state step size multiplier */
459 /* update steady state step size multiplier */