Home
last modified time | relevance | path

Searched refs:wt (Results 1 – 15 of 15) sorted by relevance

/titanic_51/usr/src/cmd/dc/
H A Ddc.h44 #define length(p) ((p)->wt-(p)->beg)
46 #define create(p) ((p)->rd = (p)->wt = (p)->beg)
47 #define fsfile(p) ((p)->rd = (p)->wt)
48 #define truncate(p) ((p)->wt = (p)->rd)
49 #define sfeof(p) (((p)->rd >= (p)->wt) ? 1 : 0)
52 #define sgetc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd++))
53 #define slookc(p) (((p)->rd == (p)->wt) ? EOF: ctoint((int)*(p)->rd))
55 #define sputc(p, c) {if ((p)->wt == (p)->last) more(p); *(p)->wt++ = c; }
57 if ((p)->rd > (p)->wt) (
78 char *wt; global() member
[all...]
H A Ddc.c723 if ((*readptr)->rd == (*readptr)->wt) in commnds()
875 divd->wt--; in dcdiv()
2136 hdr->rd = hdr->wt = hdr->beg = ptr; in salloc()
2192 hdr->wt = ptr + sz; in copy()
2193 ptr = hdr->wt; in copy()
2205 printf("%s %o rd %o wt %o beg %o last %o\n", s1, hptr, in sdump()
2206 hptr->rd, hptr->wt, hptr->beg, hptr->last); in sdump()
2208 while (p < hptr->wt) in sdump()
2237 hptr->wt = hptr->last = hptr->rd = p + n; in seekc()
2241 if (nn > hptr->wt) in seekc()
[all...]
/titanic_51/usr/src/cmd/refer/
H A Drefer7.c161 char wt[4]; in condense() local
167 sprintf(wt, "%d", wref[i]); in condense()
168 strcat(sig, wt); in condense()
/titanic_51/usr/src/lib/libast/common/regex/
H A Dregclass.c63 static wctype_t wt; in _reg_iswblank() local
68 wt = wctype("blank"); in _reg_iswblank()
70 return iswctype(wc, wt); in _reg_iswblank()
/titanic_51/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregclass.c56 static wctype_t wt; in _reg_iswblank() local
61 wt = wctype("blank"); in _reg_iswblank()
63 return iswctype(wc, wt); in _reg_iswblank()
/titanic_51/usr/src/cmd/diff/
H A Ddiff.c1006 wint_t wt; in readhash() local
1033 (wt = getbufwchar(filen, &mlen)) != '\n'; in readhash()
1035 if (wt == WEOF) { in readhash()
1043 sum += NCCHRTRAN(wt) << in readhash()
1065 wt = getbufwchar(filen, &mlen); in readhash()
1067 if (wt != '\n' && iswspace(wt)) { in readhash()
1071 switch (wt) { in readhash()
1084 sum += CHRTRAN(wt) << in readhash()
/titanic_51/usr/src/tools/scripts/
H A Dxref.mk64 CTFLAGS = -wt
/titanic_51/usr/src/uts/common/sys/nxge/
H A Dnxge_txdma_hw.h784 uint32_t wt:20; member
786 uint32_t wt:20;
H A Dnxge_rxdma_hw.h180 uint32_t wt:16; member
182 uint32_t wt:16;
/titanic_51/usr/src/lib/smbsrv/libsmbns/common/
H A Dsmbns_netbios_name.c237 struct timeval wt; in smb_name_get_reply() local
250 (void) gettimeofday(&wt, 0); in smb_name_get_reply()
251 wait_time = wt.tv_usec / 1000; in smb_name_get_reply()
278 (void) gettimeofday(&wt, 0); in smb_name_get_reply()
279 wait_time = (wt.tv_usec / 1000) - wait_time; in smb_name_get_reply()
/titanic_51/usr/src/uts/common/io/comstar/port/srpt/
H A Dsrpt_ioc.c63 wt:1, member
73 wt:1,
/titanic_51/usr/src/cmd/sendmail/src/
H A Dsrvrsmtp.c572 volatile time_t wt; /* timeout after too many commands */ local
2919 wt = checksmtpattack(&n_verifies, MAXVRFYCOMMANDS,
2921 STOP_IF_ATTACK(wt);
2972 if (wt > 0)
2976 t = wt - (curtime() - previous);
/titanic_51/usr/src/lib/libshell/common/sh/
H A Dlex.c58 static wctype_t wt; in local_iswblank() local
63 wt = wctype("blank"); in local_iswblank()
65 return(iswctype(wc, wt)); in local_iswblank()
/titanic_51/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dlex.c61 static wctype_t wt; in local_iswblank() local
66 wt = wctype("blank"); in local_iswblank()
68 return(iswctype(wc, wt)); in local_iswblank()
/titanic_51/usr/src/uts/common/io/nxge/npi/
H A Dnpi_rxdma.c1365 wt_reg.bits.ldw.wt = weight; in npi_rxdma_cfg_port_ddr_weight()