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

123

/macosx-10.10.1/cups-408/cups/cups/
H A Dbackchannel.c36 static void cups_setup(fd_set *set, struct timeval *tval,
56 struct timeval tval; /* Timeout value */ local
66 cups_setup(&input, &tval, timeout);
71 status = select(4, &input, NULL, NULL, &tval);
108 struct timeval tval; /* Timeout value */ local
128 cups_setup(&output, &tval, timeout);
133 status = select(4, NULL, &output, NULL, &tval);
180 struct timeval *tval, /* I - Timer value */
183 tval->tv_sec = (int)timeout;
184 tval
179 cups_setup(fd_set *set, struct timeval *tval, double timeout) argument
[all...]
/macosx-10.10.1/file_cmds-242/pax/
H A Dgen_subs.c239 u_long tval = 0; local
250 * for each valid digit, shift running value (tval) over to next digit
256 tval = (tval << 4) + (*str++ - '0');
258 tval = (tval << 4) + 10 + (*str++ - 'A');
260 tval = (tval << 4) + 10 + (*str++ - 'a');
266 tval = (tval <<
336 u_quad_t tval = 0; local
[all...]
/macosx-10.10.1/awk-20/src/
H A Dawk.h85 int tval; /* type info: STR|NUM|ARR|FCN|FLD|CON|DONTFREE */ member in struct:Cell
104 /* Cell.tval values: */
191 #define isrec(n) ((n)->tval & REC)
192 #define isfld(n) ((n)->tval & FLD)
193 #define isstr(n) ((n)->tval & STR)
194 #define isnum(n) ((n)->tval & NUM)
195 #define isarr(n) ((n)->tval & ARR)
196 #define isfcn(n) ((n)->tval & FCN)
200 /* #define freeable(p) (!((p)->tval & DONTFREE)) */
201 #define freeable(p) ( ((p)->tval
[all...]
H A Dtran.c215 p, NN(p->nval), NN(p->sval), p->fval, p->tval) );
224 p->tval = t;
234 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 */
301 dprintf( ("setfval %p: %s = %g, t=%o\n", vp, NN(vp->nval), f, vp->tval) );
309 if (vp->tval & FCN)
312 vp, vp->nval, vp->sval, vp->fval, vp->tval);
321 vp, NN(vp->nval), s, vp->tval, donere
[all...]
H A Dlib.c150 fldtab[0]->tval = REC | STR | DONTFREE;
153 fldtab[0]->tval |= NUM;
251 q->tval |= NUM;
293 fldtab[i]->tval = FLD | STR | DONTFREE;
311 fldtab[i]->tval = FLD | STR;
329 fldtab[i]->tval = FLD | STR | DONTFREE;
347 p->tval |= NUM;
369 p->tval = FLD | STR | DONTFREE;
436 fldtab[i]->tval = FLD | STR | DONTFREE;
484 fldtab[0]->tval
[all...]
H A Drun.c257 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval) );
297 oargs[i]->tval = t->tval;
298 oargs[i]->tval &= ~(STR|NUM|DONTFREE);
319 dprintf( ("%s returns %g |%s| %o\n", s, getfval(z), getsval(z), z->tval) );
334 y->tval = x->tval & ~(CON|FLD|REC|DONTFREE); /* copy is not constant or field */
365 if ((y->tval & (STR|NUM)) == (STR|NUM)) {
368 fp->retval->tval |= NUM;
370 else if (y->tval
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dformat_tv.c136 double tval; local
146 if (sscanf(vstring_str(in), "%lf %d %d", &tval, &sig_dig, &max_dig) != 3)
148 sec = (int) tval; /* raw seconds */
149 usec = (tval - sec) * MILLION; /* raw microseconds */
/macosx-10.10.1/shell_cmds-179/date/
H A Ddate.c75 static time_t tval; variable
126 tval = strtoq(optarg, &tmp, 0);
156 if (!rflag && time(&tval) == -1)
178 struct tm *ltp = localtime(&tval);
184 lt = *localtime(&tval);
220 lt = localtime(&tval);
241 lt = localtime(&tval);
301 if ((tval = mktime(lt)) == -1)
306 if (nflag || netsettime(tval)) {
312 ut.ut_tv.tv_sec = tval;
[all...]
H A Dnetdate.c68 netsettime(time_t tval) argument
120 msg.tsp_time.tv_sec = htonl((u_long)tval);
/macosx-10.10.1/system_cmds-643.1.1/chpass.tproj/
H A Dutil.c100 ttoa(time_t tval) argument
105 if (tval) {
106 tp = localtime(&tval);
121 time_t tval; local
130 (void)time(&tval);
131 lt = localtime(&tval);
169 if ((tval = mktime(lt)) < 0)
171 *store = tval;
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Dnodecmd.c283 char *tag, *p, *tval, *aval; local
336 tval = Tcl_GetStringFromObj(objv[index], &len);
339 if (!tcldom_textCheck (interp, tval, "text")) return TCL_ERROR;
343 if (!tcldom_commentCheck (interp, tval)) return TCL_ERROR;
347 if (!tcldom_CDATACheck (interp, tval)) return TCL_ERROR;
354 newNode = (domNode*)domNewTextNode(doc, tval, len, createType);
369 tval = Tcl_GetStringFromObj(objv[1], &len);
372 if (!tcldom_PINameCheck (interp, tval)) return TCL_ERROR;
380 domNewProcessingInstructionNode(doc, tval, len, aval, dlen);
436 tval
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/x509v3/
H A Dv3_ncons.c106 CONF_VALUE tval, *val;
119 tval.name = val->name + 10;
124 tval.name = val->name + 9;
131 tval.value = val->value;
133 if (!v2i_GENERAL_NAME_ex(sub->base, method, ctx, &tval, 1))
/macosx-10.10.1/syslog-267/libsystem_asl.tproj/src/
H A Dasl_core.c639 asl_core_str_match_absolute_or_relative_time(const char *target, time_t *tval, uint32_t *tlen) argument
686 if (tval != NULL) *tval = start + (sign * val);
714 asl_core_str_match_c_time(const char *target, time_t *tval, uint32_t *tlen) argument
797 if (tval != NULL) *tval = mktime(&t);
806 asl_core_str_match_dotted_time(const char *target, time_t *tval, uint32_t *tlen) argument
903 if (tval != NULL) *tval = timegm(&t);
912 asl_core_str_match_iso_8601_time(const char *target, time_t *tval, uint32_ argument
1064 time_t tval = 0; local
[all...]
H A Dasl.c906 struct timeval tval = {0, 0}; local
916 status = gettimeofday(&tval, NULL);
920 tval.tv_sec = tick;
921 tval.tv_usec = 0;
940 out = asl_base_msg(asl, level, &tval, sstr, fstr, NULL);
952 struct timeval tval = {0, 0}; local
984 status = gettimeofday(&tval, NULL);
988 tval.tv_sec = tick;
989 tval.tv_usec = 0;
1000 sendmsg = asl_base_msg(asl, level, &tval, sst
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/
H A DAppleIrDA.h146 mach_timespec tval; local
148 tval.tv_sec = val / NSEC_PER_SEC;
149 tval.tv_nsec = val % NSEC_PER_SEC;
150 return tval;
/macosx-10.10.1/postfix-255/postfix/src/bounce/
H A Dbounce_template.c264 char *tval = tp->buffer; local
293 while ((GETLINE(cp, tval)) != 0 && (hlen = is_header(cp)) > 0) {
334 (void) GETLINE(cp, tval);
348 if (NON_ASCII(cp) || NON_ASCII(tval)) {
372 (void) GETLINE(cp, tval);
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-lldp.c913 u_int8_t tval; local
981 tval = *(tptr+2);
983 (tval & 0x80) ? 1 : 0, (tval & 0x40) ? 1 : 0,
984 (tval & 0x20) ? 1 : 0);
990 tval = *(tptr+4+(i/2));
1009 tval = *(tptr+2);
1011 (tval & 0x80) ? 1 : 0, (tval & 0x40) ? 1 : 0,
1012 (tval
[all...]
/macosx-10.10.1/file_cmds-242/mv/
H A Dmv.c324 struct timeval tval[2]; local
421 tval[0].tv_sec = sbp->st_atime;
422 tval[1].tv_sec = sbp->st_mtime;
423 tval[0].tv_usec = tval[1].tv_usec = 0;
424 if (utimes(to, tval))
/macosx-10.10.1/xnu-2782.1.97/tools/lldbmacros/
H A Dipc.py210 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
211 if not tval:
215 pval = Cast(tval.bsd_info, 'proc *')
216 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
218 print GetTaskIPCSummary(tval)
458 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
459 if not tval:
463 pval = Cast(tval.bsd_info, 'proc *')
464 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
466 print GetIPCInformation(tval
[all...]
H A Dprocess.py468 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
469 if not tval:
471 task_list.append(tval)
473 for tval in task_list:
475 pval = Cast(tval.bsd_info, 'proc *')
476 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
517 tval = Cast(pval.task, 'task *')
518 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
810 for tval in task_list:
811 ShowTaskStacks(tval)
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Ded.screen.c54 #define Val(a) tval[a].val
186 } tval[T_val + 1]; variable in typeref:struct:termcapval
198 xfree((ptr_t)(intptr_t)tval[i].long_name);
322 tval[T_am].name = "am";
323 tval[T_am].long_name = CSAVS(4, 37, "Has automatic margins");
325 tval[T_pt].name = "pt";
326 tval[T_pt].long_name = CSAVS(4, 38, "Can use physical tabs");
328 tval[T_li].name = "li";
329 tval[T_li].long_name = CSAVS(4, 39, "Number of lines");
331 tval[T_c
[all...]
/macosx-10.10.1/AppleUSBCDCDriver-4205.2.2/Common/
H A DAppleUSBCDCCommon.h466 mach_timespec tval; local
468 tval.tv_sec = val / NSEC_PER_SEC;
469 tval.tv_nsec = val % NSEC_PER_SEC;
470 return tval;
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/
H A Dprogressbar.tcl173 set tval [expr {$val % $max}]
174 if { $tval < ($max / 2.0) } {
175 set x0 [expr {double($tval) / double($max) * 1.5}]
177 set x0 [expr {(1.0-(double($tval) / double($max))) * 1.5}]
/macosx-10.10.1/remote_cmds-47/ruptime.tproj/
H A Druptime.c130 interval(time_t tval, const char *updown) argument
135 if (tval < 0) {
140 minutes = (tval + (60 - 1)) / 60;
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dterm.c250 } tval[] = { variable in typeref:struct:termcapval
1418 for (tv = tval; tv->name != NULL; tv++)
1425 if (tv == &tval[T_pt] || tv == &tval[T_km] ||
1426 tv == &tval[T_am] || tv == &tval[T_xn]) {
1428 el->el_term.t_val[tv - tval] = 1;
1430 el->el_term.t_val[tv - tval] = 0;
1450 el->el_term.t_val[tv - tval] = (int) i;
1453 if (tv == &tval[T_c
[all...]

Completed in 204 milliseconds

123