Searched refs:msd (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A Ddecimal128.c150 uInt msd; /* work */ local
165 msd = ((unsigned) d128->bytes[1] << 2) & 0x0c; /* top 2 bits */
166 msd |= ((unsigned) d128->bytes[2] >> 6); /* low 2 bits */
171 if (msd >= 8)
172 comb = 0x18 | (msd & 0x01) | ((exp >> 11) & 0x06);
174 comb = (msd & 0x07) | ((exp >> 9) & 0x18);
198 uInt msd; /* coefficient MSD */ local
214 msd = 0; /* no top digit */
223 msd = 8 + (comb & 0x01);
228 msd
[all...]
H A Ddecimal32.c150 uInt msd; /* work */ local
165 msd = ((unsigned) d32->bytes[1] >> 4);
168 if (msd >= 8)
169 comb = 0x18 | (msd & 0x01) | ((exp >> 5) & 0x06);
171 comb = (msd & 0x07) | ((exp >> 3) & 0x18);
195 uInt msd; /* coefficient MSD */ local
211 msd = 0; /* no top digit */
220 msd = 8 + (comb & 0x01);
225 msd = comb & 0x07;
236 if (msd !
[all...]
H A Ddecimal64.c150 uInt msd; /* work */ local
164 msd = ((unsigned) d64->bytes[1] >> 2) & 0x0f;
167 if (msd >= 8)
168 comb = 0x18 | (msd & 0x01) | ((exp >> 7) & 0x06);
170 comb = (msd & 0x07) | ((exp >> 5) & 0x18);
194 uInt msd; /* coefficient MSD */ local
210 msd = 0; /* no top digit */
219 msd = 8 + (comb & 0x01);
224 msd = comb & 0x07;
235 if (msd !
[all...]
/freebsd-9.3-release/contrib/openbsm/bin/auditd/
H A Dauditd_darwin.c241 launch_data_t msg, msd, ld, cdict, to; local
268 msd = launch_data_dict_lookup(cdict, LAUNCH_JOBKEY_MACHSERVICES);
269 if (msd == NULL) {
275 ld = launch_data_dict_lookup(msd, label);

Completed in 47 milliseconds