/src/usr.bin/xlint/arch/coldfire/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/i386/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/m68000/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/m68k/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/or1k/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/powerpc/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/riscv32/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/sh3/ |
targparam.h | 46 #define SIZEOF_TSPEC UINT
|
/src/usr.bin/xlint/arch/mips/ |
targparam.h | 51 #define SIZEOF_TSPEC UINT
|
/src/sys/arch/hpc/stand/hpcboot/menu/ |
window.h | 50 static LRESULT CALLBACK _wnd_proc(HWND, UINT, WPARAM, LPARAM); 52 static BOOL CALLBACK _dlg_proc(HWND, UINT, WPARAM, LPARAM); 54 virtual BOOL proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam);
|
window.cpp | 37 Window::_wnd_proc(HWND h, UINT msg, WPARAM param, LPARAM lparam) 64 Window::_dlg_proc(HWND h, UINT msg, WPARAM param, LPARAM lparam) 81 Window::proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam)
|
tabwindow.h | 55 _tab_proc(HWND h, UINT msg, WPARAM param, LPARAM lparam); 58 BOOL focusManagerHook(WORD, UINT, HWND); 96 virtual BOOL proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam);
|
tabwindow.cpp | 78 TabWindowBase::focusManagerHook(WORD vk, UINT flags, HWND prev) 139 TabWindow::proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam)
|
rootwindow.h | 62 virtual BOOL proc(HWND, UINT, WPARAM, LPARAM);
|
rootwindow.cpp | 99 RootWindow::proc(HWND w, UINT msg, WPARAM wparam, LPARAM lparam) 120 if ((UINT)LOWORD(wparam) == WA_INACTIVE) 162 UINT mb_icon = menu._pref.pause_before_boot ?
|
/src/usr.bin/audio/ctl/ |
ctl.c | 77 #define UINT 3 95 { "full_duplex", &fullduplex, UINT, 0 }, 96 { "fullduplex", &fullduplex, UINT, 0 }, 97 { "blocksize", &info.blocksize, UINT, 0 }, 98 { "hiwat", &info.hiwat, UINT, 0 }, 99 { "lowat", &info.lowat, UINT, 0 }, 100 { "monitor_gain", &info.monitor_gain, UINT, 0 }, 103 { "play.rate", &info.play.sample_rate, UINT, 0 }, 104 { "play.sample_rate", &info.play.sample_rate, UINT, ALIAS }, 105 { "play.channels", &info.play.channels, UINT, 0 } [all...] |
/src/usr.bin/xlint/common/ |
inittyp.c | 92 typeinfo("int", INT, UINT, INT_SIZE, INT_RANK, 's'), 93 typeinfo("unsigned int", INT, UINT, INT_SIZE, INT_RANK, 'u'),
|
lint.h | 73 UINT, /* unsigned int */
|
/src/bin/ps/ |
ps.h | 45 CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG,
|
keyword.c | 115 PVAR("cpu", "CPU", 0, p_estcpu, UINT, "u"), 178 LVAR("re", "RE", INF127, l_swtime, UINT, "u"), 194 LVAR("sl", "SL", INF127, l_slptime, UINT, "u"),
|
/src/sys/arch/hpcmips/stand/pbsdboot/ |
print.c | 76 msg_printf(UINT type, LPWSTR caption, LPWSTR lpszFmt, ...)
|
pbsdboot.h | 158 int msg_printf(UINT type, LPWSTR caption, LPWSTR lpszFmt, ...);
|
main.c | 383 BOOL CALLBACK MainDlgProc(HWND, UINT, WPARAM, LPARAM); 384 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 472 wc.style = (UINT)NULL; 637 BOOL CALLBACK DlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 660 BOOL CALLBACK DlgProc2(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 695 BOOL CALLBACK PropDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 907 BOOL CALLBACK FbDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 1230 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, 1261 BOOL CALLBACK MainDlgProc(HWND hWnd, UINT message,
|
/src/usr.bin/xlint/lint2/ |
chk.c | 513 t1 = tflag ? UINT : INT; 517 t1 = INT_MAX < USHRT_MAX || tflag ? UINT : INT; 666 if ((t1 = tp->t_tspec) != INT && (hflag || t1 != UINT)) 742 * INT or UINT. 744 if (t1 != INT && (hflag || t1 != UINT)) 758 /* USHORT was promoted to INT or UINT */ 759 if (t1 != UINT && t1 != INT) 762 if (t1 != UINT && (hflag || t1 != INT)) 811 if (t2 != INT && t2 != UINT) 921 sz = UINT; [all...] |
/src/usr.bin/xlint/lint1/ |
decl.c | 232 : t == INT ? UINT 261 if (t == SHORT && (t2 == INT || t2 == UINT)) { 275 else if (t2 == UINT) 1020 } else if (!(t == INT || t == UINT || t == BOOL 1190 dsym->s_type = gettyp(UINT); 2275 t = allow_c90 ? INT : UINT; 2280 ? UINT : INT;
|