Lines Matching refs:ptr
19 * ptr - current location of the line to be processed.
25 static inline int read_spec_entry(char **entry, char **ptr, int *len, const char **errbuf)
30 while (isspace(**ptr) && **ptr != '\0')
31 (*ptr)++;
33 tmp_buf = *ptr;
36 while (!isspace(**ptr) && **ptr != '\0') {
37 if (!isascii(**ptr)) {
42 (*ptr)++;
120 const unsigned char *ptr;
130 ptr = digest->hashbuf;
132 Sha1Update(&context, ptr, UINT32_MAX);
134 ptr += UINT32_MAX;
136 Sha1Update(&context, ptr, remaining_size);