Lines Matching refs:places

65 int	places, xp, dl, ii;  in m_apm_to_fixpt_stringexp()  local
68 places = dplaces; in m_apm_to_fixpt_stringexp()
73 if (places < 0) /* show ALL digits */ in m_apm_to_fixpt_stringexp()
87 ii = places; in m_apm_to_fixpt_stringexp()
99 m_apm_to_fixpt_stringex(cpr,places,atmp,ch_radx,ch_sep,ct_sep); in m_apm_to_fixpt_stringexp()
109 int ii, jj, kk, ct, dl, xp, no_sep_flg, places; in m_apm_to_fixpt_stringex() local
112 places = dplaces; in m_apm_to_fixpt_stringex()
126 if (places < 0) /* show ALL digits */ in m_apm_to_fixpt_stringex()
140 ii = places; in m_apm_to_fixpt_stringex()
154 m_apm_to_fixpt_string(cps, places, btmp); in m_apm_to_fixpt_stringex()
192 if (places == 0) /* int format, terminate at radix char */ in m_apm_to_fixpt_stringex()
251 int places, i2, ii, jj, kk, xp, dl, numb; in m_apm_to_fixpt_string() local
258 places = dplaces; in m_apm_to_fixpt_string()
262 if (places == 0) in m_apm_to_fixpt_string()
275 if (places > 0) in m_apm_to_fixpt_string()
276 M_apm_round_fixpt(ctmp, places, mtmp); in m_apm_to_fixpt_string()
282 if (places < 0) in m_apm_to_fixpt_string()
291 memset(cpd, '0', (places + 2)); /* pre-load string with all '0' */ in m_apm_to_fixpt_string()
293 cpd[places + 2] = '\0'; in m_apm_to_fixpt_string()
304 if (places < 0) in m_apm_to_fixpt_string()
313 jj = places + 16; in m_apm_to_fixpt_string()
364 if (places < 0) /* show ALL digits */ in m_apm_to_fixpt_string()
366 places = dl - xp; in m_apm_to_fixpt_string()
368 if (places < 1) in m_apm_to_fixpt_string()
369 places = 1; in m_apm_to_fixpt_string()
374 kk = xp + places + 2 - ii; in m_apm_to_fixpt_string()
381 ii = xp + places + 1; in m_apm_to_fixpt_string()
397 ii = 2 + places; in m_apm_to_fixpt_string()
415 void M_apm_round_fixpt(M_APM btmp, int places, M_APM atmp) in M_apm_round_fixpt() argument
420 ii = xp + places - 1; in M_apm_round_fixpt()