Lines Matching defs:tval
537 int64_t tval; /* temp val holder */
571 while ((fscanf_ret = fscanf(tfp, "%lld", &tval)) == 1) {
572 /* If tval isn't a valid pid, then fail. */
573 if ((tval > MAXPID) || (tval <= 0)) {
577 if (add_rep_val(vals, tval) == -1) {
725 uint64_t tval; /* temp val holder */
777 while ((fscanf_ret = fscanf(fp, "%llu", &tval)) == 1) {
778 /* If tval isn't a valid ctid, then fail. */
779 if (tval == 0) {
784 if ((add_rep_val(uup, tval) == -1) ||
785 (add_rep_val(inst->start_ctids, tval) == -1)) {