Searched defs:mag (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/audio/utilities/
H A Dg721.c181 short mag, exp; /* FLOAT A */ local
188 mag = dq & 0x3FFF;
193 tr = (mag <= 0x2F80) ? 0 : 1;
197 if (mag >= thr2) {
200 tr = (mag <= (thr2 - (thr2 >> 2))) ? 0 : 1;
303 if (mag == 0) {
306 exp = _fmultanexp[mag];
308 (exp << 6) + ((mag << 6) >> exp) :
309 (exp << 6) + ((mag << 6) >> exp) - 0x400;
320 mag
[all...]
H A Dg723.c187 short mag, exp; /* Adaptive predictor, FLOAT A */ local
194 mag = dq & 0x3FFF;
199 tr = (mag <= 0x2F80) ? 0 : 1;
203 if (mag >= thr2)
206 tr = (mag <= (thr2 - (thr2 >> 2))) ? 0 : 1;
302 if (mag == 0) {
305 exp = _fmultanexp[mag];
307 (exp << 6) + ((mag << 6) >> exp) :
308 (exp << 6) + ((mag << 6) >> exp) - 0x400;
319 mag
[all...]
/illumos-gate/usr/src/cmd/sgs/elfedit/modules/common/
H A Dehdr.c1192 int mag = (int)elfedit_atoui_range(argstate.argv[0], local
1195 if (ehdr->e_ident[ei_ndx] == mag) {
1207 conv_magic_value(mag));
1209 ehdr->e_ident[ei_ndx] = mag;
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_io.c956 int i, mag = 1, thresh; local
959 mag *= 10;
961 for (thresh = mag * 10; mag >= 1; mag /= 10, i--) {
962 double mult = val * (double)mag;
968 * and that mag is at most 10^(sigfig - 1). This means
988 if (mag == 1) {
994 (void) strcat(buf, numtostr(v / mag, 10, 0));
997 c = (char *)numtostr(v % mag, 1
[all...]
/illumos-gate/usr/src/common/mpi/
H A Dmpi.c1226 int mag; local
1246 if((mag = s_mp_cmp(a, m)) > 0) {
1255 } else if(mag < 0) {
1689 int mag; local
1691 if((mag = s_mp_cmp(a, b)) == MP_EQ)
1695 return mag;
1697 return -mag;

Completed in 67 milliseconds