Lines Matching defs:num
208 * of the div (num, denum) arithmetic operation. Compute div
209 * which is the integer division of num by denum: with denum
210 * >= num > 0
213 int16_t gsm_div (int16_t num, int16_t denum)
215 int32_t L_num = num ;
220 /* The parameter num sometimes becomes zero.
225 /* assert (num != 0) ; */
227 assert (num >= 0 && denum >= num) ;
228 if (num == 0)