Home | History | Annotate | Download | only in tzcode

Lines Matching full:codep

150 static int_fast32_t detzcode(const char * codep);
151 static time_t detzcode64(const char * codep);
244 detzcode(const char *const codep)
249 result = (codep[0] & 0x80) ? -1 : 0;
251 result = (result << 8) | (codep[i] & 0xff);
256 detzcode64(const char *const codep)
261 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0;
263 result = result * 256 + (codep[i] & 0xff);