| /trueos/bin/ps/ |
| HD | keyword.c | 79 {"cow", "COW", NULL, 0, kvar, KOFF(ki_cow), UINT, "u", 0}, 80 {"cpu", "CPU", NULL, 0, kvar, KOFF(ki_estcpu), UINT, "d", 0}, 94 {"gid", "GID", NULL, 0, kvar, KOFF(ki_groups), UINT, UIDFMT, 0}, 108 {"lwp", "LWP", NULL, 0, kvar, KOFF(ki_tid), UINT, LWPFMT, 0}, 117 {"nlwp", "NLWP", NULL, 0, kvar, KOFF(ki_numthreads), UINT, NLWPFMT, 0}, 129 {"pgid", "PGID", NULL, 0, kvar, KOFF(ki_pgid), UINT, PIDFMT, 0}, 130 {"pid", "PID", NULL, 0, kvar, KOFF(ki_pid), UINT, PIDFMT, 0}, 132 {"ppid", "PPID", NULL, 0, kvar, KOFF(ki_ppid), UINT, PIDFMT, 0}, 134 {"re", "RE", NULL, INF127, kvar, KOFF(ki_swtime), UINT, "d", 0}, 135 {"rgid", "RGID", NULL, 0, kvar, KOFF(ki_rgid), UINT, UIDFMT, 0}, [all …]
|
| HD | ps.h | 36 enum type { CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG, KPTR, PGTOK }; enumerator
|
| /trueos/sys/dev/hptmv/ |
| HD | vdevice.h | 80 #define ARRAY_VDEV_SIZE ((UINT)(ULONG_PTR)&((PVDevice)0)->u+sizeof(RaidArray)) 81 #define DISK_VDEV_SIZE ((UINT)(ULONG_PTR)&((PVDevice)0)->u+sizeof(Device)) 83 #define Map2pVDevice(pDev) ((PVDevice)((UINT_PTR)pDev - (UINT)(UINT_PTR)&((PVDevice)0)->u.disk)) 125 UINT nInstances; 275 UINT seconds:6; /* 0 - 59 */ 276 UINT minutes:6; /* 0 - 59 */ 277 UINT month:4; /* 1 - 12 */ 278 UINT hours:6; /* 0 - 59 */ 279 UINT day:5; /* 1 - 31 */ 280 UINT year:5; /* 0=2000, 31=2031 */
|
| HD | raid5n.h | 58 void HPTLIBAPI DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes); 59 void HPTLIBAPI DoXor2(ULONG *p0, ULONG *p2, UINT nBytes); 74 extern UINT num_raid5_pages; 115 UINT num_free_pages; 116 UINT active_stripes; 117 UINT num_flushing;
|
| HD | array.h | 40 UINT seconds:6; /* 0 - 59 */ 41 UINT minutes:6; /* 0 - 59 */ 42 UINT month:4; /* 1 - 12 */ 43 UINT hours:6; /* 0 - 59 */ 44 UINT day:5; /* 1 - 31 */ 45 UINT year:5; /* 0=2000, 31=2031 */
|
| HD | global.h | 132 #define LongDiv(x, y) (x / (UINT)(y)) 133 #define LongRem(x, y) (x % (UINT)(y)) 159 #define MemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (UINT)(c)) 160 #define farMemoryCopy(a,b,c) memcpy((char *)(a), (char *)(b), (UINT)c)
|
| HD | hptintf.h | 336 UINT seconds:6; /* 0 - 59 */ 337 UINT minutes:6; /* 0 - 59 */ 338 UINT month:4; /* 1 - 12 */ 339 UINT hours:6; /* 0 - 59 */ 340 UINT day:5; /* 1 - 31 */ 341 UINT year:5; /* 0=2000, 31=2031 */
|
| HD | hptproc.c | 66 UINT i, iarray, ichan; in hpt_set_asc_info() 372 hpt_copy_disk_info(HPT_GET_INFO *pinfo, PVDevice pVDev, UINT iChan) in hpt_copy_disk_info() 456 …sprintf(buf, "Rebuilding %d%%", (UINT)((pTmpArray->u.array.RebuildSectors>>11)*100/((pTmpArray->VD… in hpt_copy_array_info() 461 …sprintf(buf, "Verifying %d%%", (UINT)((pTmpArray->u.array.RebuildSectors>>11)*100/((pTmpArray->VDe… in hpt_copy_array_info() 485 UINT channel,j,i; in hpt_get_info()
|
| HD | mvOs.h | 55 typedef unsigned int UINT, BOOL; typedef
|
| /trueos/contrib/subversion/subversion/libsvn_subr/ |
| HD | win32_xlate.c | 79 UINT from_page_id; 80 UINT to_page_id; 84 get_page_id_from_name(UINT *page_id_p, const char *page_name, apr_pool_t *pool) in get_page_id_from_name() 159 UINT from_page_id, to_page_id; in svn_subr__win32_xlate_open()
|
| /trueos/usr.bin/xlint/common/ |
| HD | inittyp.c | 78 INT, UINT, in inittyp() 80 { UINT, { INT_SIZE, 3 * CHAR_BIT, in inittyp() 81 INT, UINT, in inittyp()
|
| HD | lint.h | 63 UINT, /* unsigned int */ enumerator
|
| /trueos/usr.bin/xlint/lint2/ |
| HD | chk.c | 504 t1 = tflag ? UINT : INT; in chkau() 509 t1 = INT_MAX < USHRT_MAX || tflag ? UINT : INT; in chkau() 658 if ((t1 = tp->t_tspec) != INT && (hflag || t1 != UINT)) in printflike() 734 if (t1 != INT && (hflag || t1 != UINT)) in printflike() 749 if (t1 != UINT && t1 != INT) in printflike() 752 if (t1 != UINT && (hflag || t1 != INT)) in printflike() 801 if (t2 != INT && t2 != UINT) in printflike() 910 sz = UINT; in scanflike() 1191 t = tflag ? UINT : INT; in eqtype() 1196 t = INT_MAX < USHRT_MAX || tflag ? UINT : INT; in eqtype()
|
| HD | read.c | 589 tp->t_tspec = s == 'u' ? UINT : INT; in inptype() 691 case UINT: in inptype() 766 t = UINT; in gettlen() 896 case UINT: in gettlen()
|
| /trueos/crypto/openssl/crypto/rand/ |
| HD | rand.h | 117 int RAND_event(UINT, WPARAM, LPARAM);
|
| /trueos/usr.bin/xlint/lint1/ |
| HD | lint.h | 53 UINT, /* unsigned int */ enumerator
|
| HD | decl.c | 110 typetab[UINT].t_tspec = UINT; in initdecl() 365 if (t2 == INT || t2 == UINT) { in tdeferr() 374 if (t2 == INT || t2 == UINT || t2 == LONG || t2 == ULONG || in tdeferr() 380 } else if (t2 == UINT) { in tdeferr() 415 case UINT: in tdeferr() 746 t = s == SIGNED ? INT : UINT; in mrgtspec() 1011 } else if (t != INT && t != UINT) { in decl1str() 1125 dsym->s_type = gettyp(UINT); in bitfield() 1965 t = tflag ? UINT : INT; in eqtype() 1970 t = INT_MAX < USHRT_MAX || tflag ? UINT : INT; in eqtype()
|
| HD | scan.l | 470 { UINT, ULONG, UQUAD } in icon() 530 typ = UINT; in icon() 538 if (typ == UINT || typ == ULONG) { in icon() 550 case UINT: in icon()
|
| /trueos/contrib/tcpdump/ |
| HD | tcpdump.c | 58 #define uint UINT 149 static UINT timer_id; 150 static void CALLBACK verbose_stats_dump(UINT, UINT, DWORD_PTR, DWORD_PTR, DWORD_PTR); 2193 void CALLBACK verbose_stats_dump (UINT timer_id _U_, UINT msg _U_, DWORD_PTR arg _U_, in verbose_stats_dump()
|
| /trueos/contrib/gdb/gdb/ |
| HD | m2-exp.y | 160 %token <ulval> UINT M2_TRUE M2_FALSE CHAR 496 exp : UINT 754 return UINT;
|
| /trueos/sys/dev/nve/ |
| HD | if_nvereg.h | 191 …it (PVOID pContext, USHORT usForcedSpeed, UCHAR ucForceDpx, UCHAR ucForceMode, UINT *puiLinkState);
|
| /trueos/sys/contrib/dev/nve/ |
| HD | basetype.h | 84 typedef unsigned int UINT; typedef
|
| /trueos/contrib/ntp/ntpdate/ |
| HD | ntpdate.c | 87 UINT wTimerRes; 1531 alarming(UINT uTimerID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2) in alarming() 1562 UINT wTimerID; in init_alarm() 1673 (UINT) (1000/TIMER_HZ), /* Delay */ in init_alarm()
|
| /trueos/contrib/libpcap/ |
| HD | pcap-dos.h | 54 typedef unsigned int UINT; typedef
|
| /trueos/contrib/llvm/tools/clang/lib/Headers/ |
| HD | stdint.h | 656 #define __UINTN_MAX(n) __stdint_join3(UINT, n, _MAX) 658 #define __UINTN_C(n, v) __stdint_join3(UINT, n, _C(v))
|