Home | History | Annotate | Download | only in libcutils

Lines Matching refs:codep

172 static long		detzcode P((const char * codep));
173 static time_t detzcode64 P((const char * codep));
270 detzcode(codep)
271 const char * const codep;
276 result = (codep[0] & 0x80) ? ~0L : 0;
278 result = (result << 8) | (codep[i] & 0xff);
283 detzcode64(codep)
284 const char * const codep;
289 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0;
291 result = result * 256 + (codep[i] & 0xff);