Home | History | Annotate | Download | only in tzcode

Lines Matching refs:codep

139 static long		detzcode(const char * codep);
140 static time_t detzcode64(const char * codep);
231 detzcode(codep)
232 const char * const codep;
237 result = (codep[0] & 0x80) ? ~0L : 0;
239 result = (result << 8) | (codep[i] & 0xff);
244 detzcode64(codep)
245 const char * const codep;
250 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0;
252 result = result * 256 + (codep[i] & 0xff);