Lines Matching refs:up
387 register union input_buffer *up = &lsp->u.u; in tzloadbody() local
428 nread = TEMP_FAILURE_RETRY(read(fid, up->buf, entry_length)); in tzloadbody()
430 nread = read(fid, up->buf, sizeof up->buf); in tzloadbody()
440 int_fast32_t ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
441 int_fast32_t ttisgmtcnt = detzcode(up->tzhead.tzh_ttisgmtcnt); in tzloadbody()
442 int_fast32_t leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
443 int_fast32_t timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
444 int_fast32_t typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
445 int_fast32_t charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
446 char const *p = up->buf + tzheadsize; in tzloadbody()
570 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
572 nread -= p - up->buf; in tzloadbody()
573 memmove(up->buf, p, nread); in tzloadbody()
576 up->buf[0] == '\n' && up->buf[nread - 1] == '\n' && in tzloadbody()
580 up->buf[nread - 1] = '\0'; in tzloadbody()
581 if (tzparse(&up->buf[1], ts, false) in tzloadbody()