Lines Matching refs:tmp
78 uint32_t tmp;
79 if (readAt(offset, &tmp, 4) != 4) {
83 *x = ntohl(tmp);
90 uint64_t tmp;
91 if (readAt(offset, &tmp, 8) != 8) {
95 *x = ntoh64(tmp);
106 uint8_t tmp;
107 if (readAt(offset, &tmp, 1) == 1) {
108 *x = tmp;
119 uint16_t tmp;
120 if (getUInt16(offset, &tmp)) {
121 *x = tmp;
132 uint32_t tmp;
133 if (getUInt32(offset, &tmp)) {
134 *x = tmp;