Searched defs:mag (Results 1 - 5 of 5) sorted by relevance
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | g721.c | 181 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 D | g723.c | 187 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 D | ehdr.c | 1192 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 D | mdb_io.c | 956 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 D | mpi.c | 1226 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 79 milliseconds