Lines Matching defs:ptr
39 Vcchar_t *ptr, *code;
49 ptr = io->next;
51 { default: memcpy(ptr, code, n); ptr += n; break;
52 case 7 : *ptr++ = *code++;
53 case 6 : *ptr++ = *code++;
54 case 5 : *ptr++ = *code++;
55 case 4 : *ptr++ = *code++;
56 case 3 : *ptr++ = *code++;
57 case 2 : *ptr++ = *code++;
58 case 1 : *ptr++ = *code++;
60 io->next = ptr;
74 Vcchar_t *ptr;
76 ptr = io->next;
77 v = (n = *ptr++)&127;
79 v = (v << 7) | ((n = *ptr++)&127);
80 io->next = ptr;
98 Vcchar_t *ptr;
106 { ptr = io->next;
108 { default: memcpy(ptr, code, n); ptr += n; break;
109 case 7 : *ptr++ = *code++;
110 case 6 : *ptr++ = *code++;
111 case 5 : *ptr++ = *code++;
112 case 4 : *ptr++ = *code++;
113 case 3 : *ptr++ = *code++;
114 case 2 : *ptr++ = *code++;
115 case 1 : *ptr++ = *code++;
117 io->next = ptr;
132 Vcchar_t *ptr;
134 ptr = io->next;
135 v = *ptr++;
137 v = (v <<= 8) | *ptr++;
138 io->next = ptr;
169 Vcchar_t *ptr = io->next;
173 { *ptr++ = (v&1) == 0 ? a : z;
178 n = ptr - io->next;
179 io->next = ptr;
195 Vcchar_t *ptr, *endp;
198 for(ptr = io->next, endp = io->endb; ptr < endp; ++ptr)
199 { if(*ptr == a)
203 else if(*ptr == z)
210 io->next = ptr;