Searched refs:tval (Results 1 - 25 of 82) sorted by relevance

1234

/freebsd-11-stable/contrib/byacc/test/
H A Dinherit1.y25 %token <tval> REAL INTEGER
30 %type <tval> type
35 type tval;
58 { $$->s = mksymbol($<tval>0, $<cval>-1, $2);
62 { $$->s = mksymbol($<tval>0, $<cval>-1, $1);
69 { $<tval>$ = $<tval>-1; } /* copy <type> to where <namelist> expects it */
H A Derr_inherit2.y23 %token <tval> REAL INTEGER
26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
28 %type <tval> type
42 type tval;
64 namelist($<tval>c, $t, extra): namelist NAME
65 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit1.y23 %token <tval> REAL INTEGER
26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
28 %type <tval> type
42 type tval;
H A Derr_inherit3.y23 %token <tval> REAL INTEGER
26 %type <nlist> declaration(<id>) namelist(<cval>, <tval>) locnamelist(<tval>)
28 %type <tval> type
42 type tval;
65 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit5.y23 %token <tval> REAL INTEGER
26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
28 %type <tval> type
42 type tval;
65 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Dinherit2.y23 %token <tval> REAL INTEGER
26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
28 %type <tval> type
42 type tval;
65 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit4.y24 %token <tval> REAL INTEGER
27 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
H A Dbtyacc_destroy1.y30 %token <tval> REAL INTEGER
36 %type <tval> type
53 type tval;
76 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
H A Dbtyacc_destroy2.y30 %token <tval> REAL INTEGER
36 %type <tval> type
53 type tval;
76 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
H A Dbtyacc_destroy3.y33 %token <tval> REAL INTEGER
39 %type <tval> type
56 type tval;
79 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
/freebsd-11-stable/bin/pax/
H A Dgen_subs.c219 u_long tval = 0; local
230 * for each valid digit, shift running value (tval) over to next digit
236 tval = (tval << 4) + (*str++ - '0');
238 tval = (tval << 4) + 10 + (*str++ - 'A');
240 tval = (tval << 4) + 10 + (*str++ - 'a');
246 tval = (tval <<
316 u_quad_t tval = 0; local
[all...]
/freebsd-11-stable/usr.bin/chpass/
H A Dutil.c66 ttoa(time_t tval) argument
71 if (tval) {
72 tp = localtime(&tval);
87 time_t tval; local
96 (void)time(&tval);
97 lt = localtime(&tval);
135 if ((tval = mktime(lt)) < 0)
137 *store = tval;
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-lldp.c653 u_int tval; local
712 tval=*(tptr+4);
717 ND_PRINT((ndo, "%-2d ", (tval >> i) & 0x01));
718 tval=*(tptr+5);
723 ND_PRINT((ndo, "%-2d ", (tval >> i) & 0x01));
730 tval=*(tptr+4);
732 tval >> 7, (tval >> 6) & 0x02, (tval >> 3) & 0x07, tval
1153 uint8_t tval; local
[all...]
/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dbtyacc_destroy1.tab.h18 type tval; member in union:__anon742
H A Dbtyacc_destroy2.tab.h18 type tval; member in union:__anon747
H A Dbtyacc_destroy3.tab.h18 type tval; member in union:__anon752
H A Derr_inherit3.tab.h18 type tval; member in union:__anon767
H A Dinherit1.tab.h18 type tval; member in union:__anon787
H A Dinherit2.tab.h18 type tval; member in union:__anon792
H A Derr_inherit4.tab.h18 type tval; member in union:__anon168
/freebsd-11-stable/contrib/one-true-awk/
H A Dawk.h84 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE */ member in struct:Cell
103 /* Cell.tval values: */
190 #define isrec(n) ((n)->tval & REC)
191 #define isfld(n) ((n)->tval & FLD)
192 #define isstr(n) ((n)->tval & STR)
193 #define isnum(n) ((n)->tval & NUM)
194 #define isarr(n) ((n)->tval & ARR)
195 #define isfcn(n) ((n)->tval & FCN)
199 /* #define freeable(p) (!((p)->tval & DONTFREE)) */
200 #define freeable(p) ( ((p)->tval
[all...]
H A Dtran.c215 (void*)p, NN(p->nval), NN(p->sval), p->fval, p->tval) );
224 p->tval = t;
234 (void*)p, p->nval, p->sval, p->fval, p->tval) );
285 if ((vp->tval & (NUM | STR)) == 0)
299 vp->tval &= ~STR; /* mark string invalid */
300 vp->tval |= NUM; /* mark number ok */
303 dprintf( ("setfval %p: %s = %g, t=%o\n", (void*)vp, NN(vp->nval), f, vp->tval) );
311 if (vp->tval & FCN)
314 vp, vp->nval, vp->sval, vp->fval, vp->tval);
323 (void*)vp, NN(vp->nval), s, vp->tval, donere
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/bthidd/
H A Dbthidd.c55 static int32_t elapsed (int32_t tval);
72 int32_t opt, detach, tval; local
77 tval = 10; /* sec */
109 tval = strtol(optarg, (char **) &ep, 10);
110 if (*ep != '\0' || tval <= 0)
162 if (elapsed(tval))
223 elapsed(int32_t tval) argument
230 if (now.tv_sec - last.tv_sec >= tval) {
265 " -t tval specify client rescan interval (sec)\n" \
/freebsd-11-stable/sbin/dhclient/
H A Dparse.c330 unsigned tval, max; local
355 tval = *ptr++;
357 if (tval >= 'a')
358 tval = tval - 'a' + 10;
359 else if (tval >= 'A')
360 tval = tval - 'A' + 10;
361 else if (tval >= '0')
362 tval
[all...]
/freebsd-11-stable/bin/date/
H A Ddate.c66 static time_t tval; variable
120 tval = strtoq(optarg, &tmp, 0);
123 tval = sb.st_mtim.tv_sec;
154 if (!rflag && time(&tval) == -1)
177 lt = localtime(&tval);
214 lt = localtime(&tval);
295 if ((tval = mktime(lt)) == -1)
300 if (nflag || netsettime(tval)) {
304 tv.tv_sec = tval;

Completed in 161 milliseconds

1234