Searched defs:mbyte (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/starfire/common/
H A Dstarfire.c117 unsigned int mbyte = 1024*1024; local
135 memsize[0]/mbyte, memsize[1]/mbyte,
136 memsize[2]/mbyte, memsize[3]/mbyte, 0);
/illumos-gate/usr/src/common/smbsrv/
H A Dsmb_utf8.c121 unsigned char mbyte; local
130 if (((mbyte = *mbchar++) & 0x80) == 0) {
132 *wcharp = (smb_wchar_t)mbyte;
134 return (mbyte ? 1 : 0);
138 if ((mbyte & 0x40) == 0)
141 wide_char = mbyte;
142 if ((mbyte & 0x20) == 0) {
145 } else if ((mbyte & 0x10) == 0) {
154 if (((mbyte = *mbchar++) & 0xc0) != 0x80)
158 wide_char = (wide_char << 6) | (mbyte
[all...]
/illumos-gate/usr/src/cmd/prtconf/
H A Dprtconf.c370 const int64_t mbyte = 1024 * 1024; local
374 (void) printf("%ld\n", (long)((ii+mbyte-1) / mbyte));
378 (long)((ii+mbyte-1) / mbyte));
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Ddisplay_sun4v.c706 uint64_t mbyte = kbyte * kbyte; local
707 uint64_t gbyte = kbyte * mbyte;
725 } else if (size >= mbyte) {
726 if (size % mbyte == 0)
728 (int)(size / mbyte));
731 (float)size / mbyte);
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/desktop/common/
H A Dpicldiag.c727 uint64_t mbyte = 1024 * 1024; local
740 } else if (size >= mbyte) {
741 residue = size % mbyte;
744 (int)(size / mbyte));
747 (float)size / mbyte);
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/lw8/common/
H A Dlw8.c722 uint64_t mbyte = 1024 * 1024; local
735 } else if (size >= mbyte) {
736 residue = size % mbyte;
739 (int)(size / mbyte));
742 (float)size / mbyte);
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/schumacher/common/
H A Dschumacher.c690 uint64_t mbyte = 1024 * 1024; local
703 } else if (size >= mbyte) {
704 residue = size % mbyte;
707 (int)(size / mbyte));
710 (float)size / mbyte);

Completed in 95 milliseconds