Lines Matching refs:pptr
109 decode_new_len(unsigned char **pptr) in decode_new_len() argument
114 if (pptr == NULL) in decode_new_len()
116 ptr = *pptr; in decode_new_len()
133 *pptr = ptr; in decode_new_len()
143 decode_len(unsigned char **pptr, int ltype) in decode_len() argument
149 return (decode_new_len(pptr)); in decode_len()
151 if (pptr == NULL) in decode_len()
154 ptr = *pptr; in decode_len()
176 *pptr = ptr; in decode_len()
186 decode_mpi(unsigned char **pptr, size_t *sz) in decode_mpi() argument
192 if (pptr == NULL || sz == NULL) in decode_mpi()
195 ptr = *pptr; in decode_mpi()
203 *pptr = ptr; in decode_mpi()
214 mpi2bn(unsigned char **pptr, size_t *sz) in mpi2bn() argument
216 return (decode_mpi(pptr, sz)); in mpi2bn()
220 mpi2bn(unsigned char **pptr) in mpi2bn() argument
226 if (pptr == NULL) in mpi2bn()
229 ptr = *pptr; in mpi2bn()
236 *pptr = ptr; in mpi2bn()
253 decode_packet(int want, unsigned char **pptr, size_t nbytes, in decode_packet() argument
264 nptr = ptr = *pptr; in decode_packet()
278 *pptr = nptr; in decode_packet()
291 decode_subpacket(unsigned char **pptr, int *stag, int *sz) in decode_subpacket() argument
296 ptr = *pptr; in decode_subpacket()
298 *sz = (int)(len + ptr - *pptr); in decode_subpacket()
299 *pptr = ptr + len; in decode_subpacket()