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

12345

/netbsd-current/external/bsd/byacc/dist/test/
H A Dinherit1.y27 %token <tval> REAL INTEGER
32 %type <tval> type
37 type tval;
60 { $$->s = mksymbol($<tval>0, $<cval>-1, $2);
64 { $$->s = mksymbol($<tval>0, $<cval>-1, $1);
71 { $<tval>$ = $<tval>-1; } /* copy <type> to where <namelist> expects it */
H A Derr_inherit2.y25 %token <tval> REAL INTEGER
28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
66 namelist($<tval>c, $t, extra): namelist NAME
67 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit1.y25 %token <tval> REAL INTEGER
28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
H A Derr_inherit3.y25 %token <tval> REAL INTEGER
28 %type <nlist> declaration(<id>) namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
67 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit5.y25 %token <tval> REAL INTEGER
28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
67 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Dinherit2.y25 %token <tval> REAL INTEGER
28 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
30 %type <tval> type
44 type tval;
67 { $$->s = mksymbol($<tval>t, $<cval>c, $2);
H A Derr_inherit4.y26 %token <tval> REAL INTEGER
29 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
32 %type <tval> type
46 type tval;
H A Dbtyacc_destroy1.y32 %token <tval> REAL INTEGER
38 %type <tval> type
55 type tval;
78 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
H A Dbtyacc_destroy2.y32 %token <tval> REAL INTEGER
38 %type <tval> type
55 type tval;
78 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
H A Dbtyacc_destroy3.y35 %token <tval> REAL INTEGER
41 %type <tval> type
58 type tval;
81 { $$->s = mksymbol($<tval>0, $<cval>0, $2);
/netbsd-current/bin/pax/
H A Dgen_subs.c218 uint32_t tval = 0; local
229 * for each valid digit, shift running value (tval) over to next digit
235 tval = (tval << 4) + (*str++ - '0');
237 tval = (tval << 4) + 10 + (*str++ - 'A');
239 tval = (tval << 4) + 10 + (*str++ - 'a');
245 tval = (tval <<
319 uintmax_t tval = 0; local
[all...]
/netbsd-current/usr.bin/chpass/
H A Dutil.c56 ttoa(char *buf, size_t len, time_t tval) argument
59 if (tval) {
60 struct tm *tp = localtime(&tval);
76 time_t tval; local
84 (void)time(&tval);
85 lt = localtime(&tval);
/netbsd-current/external/bsd/tcpdump/dist/
H A Dprint-lldp.c667 u_int tval; local
736 tval=GET_U_1(tptr + 4);
741 ND_PRINT("%-2d ", (tval >> i) & 0x01);
742 tval=GET_U_1(tptr + 5);
747 ND_PRINT("%-2d ", (tval >> i) & 0x01);
754 tval=GET_U_1(tptr + 4);
756 tval >> 7, (tval >> 6) & 0x02, (tval >> 3) & 0x07, tval
1183 uint16_t tval; local
[all...]
/netbsd-current/external/bsd/byacc/dist/test/btyacc/
H A Derr_inherit3.tab.h20 type tval; member in union:__anon961
H A Dbtyacc_destroy3.tab.h20 type tval; member in union:__anon947
H A Dinherit1.tab.h20 type tval; member in union:__anon983
H A Dinherit2.tab.h20 type tval; member in union:__anon988
H A Dbtyacc_destroy1.tab.h20 type tval; member in union:__anon937
H A Dbtyacc_destroy2.tab.h20 type tval; member in union:__anon942
H A Derr_inherit4.tab.h20 type tval; member in union:__anon47
/netbsd-current/external/historical/nawk/dist/
H A Dtran.c85 vp->tval |= DONTFREE;
87 vp->tval &= ~DONTFREE;
242 (void*)p, NN(p->nval), NN(p->sval), p->fval, p->tval) );
251 p->tval = t;
261 (void*)p, p->nval, p->sval, p->fval, p->tval) );
313 if ((vp->tval & (NUM | STR)) == 0)
335 vp->tval &= ~(STR|CONVC|CONVO); /* mark string invalid */
337 vp->tval |= NUM; /* mark number ok */
340 dprintf( ("setfval %p: %s = %g, t=%o\n", (void*)vp, NN(vp->nval), f, vp->tval) );
348 if (vp->tval
[all...]
H A Dawk.h95 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE|CONVC|CONVO */ member in struct:Cell
121 /* Cell.tval values: */
218 #define isrec(n) ((n)->tval & REC)
219 #define isfld(n) ((n)->tval & FLD)
220 #define isstr(n) ((n)->tval & STR)
221 #define isnum(n) ((n)->tval & NUM)
222 #define isarr(n) ((n)->tval & ARR)
223 #define isfcn(n) ((n)->tval & FCN)
227 /* #define freeable(p) (!((p)->tval & DONTFREE)) */
228 #define freeable(p) ( ((p)->tval
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dformat_tv.c138 double tval; local
148 if (sscanf(vstring_str(in), "%lf %d %d", &tval, &sig_dig, &max_dig) != 3)
150 sec = (int) tval; /* raw seconds */
151 usec = (tval - sec) * MILLION; /* raw microseconds */
/netbsd-current/bin/date/
H A Ddate.c73 static time_t tval; variable
103 tval = parsedate(optarg, NULL, NULL);
104 if (tval == -1) {
120 && (tval = mktime(&tm)) != -1)
152 tval = (time_t)val;
164 if (!rflag && time(&tval) == -1)
190 if ((tm = localtime(&tval)) == NULL)
191 err(EXIT_FAILURE, "%lld: localtime", (long long)tval);
225 if ((lt = localtime(&tval)) == NULL)
226 err(EXIT_FAILURE, "%lld: localtime", (long long)tval);
[all...]
/netbsd-current/tests/lib/libc/sync/
H A Dcpp_atomic_ops_linkable.cc52 T tval(1), other(42);
53 m_val.compare_exchange_weak(tval, other,

Completed in 189 milliseconds

12345