Lines Matching refs:pptr
111 decode_new_len(unsigned char **pptr) in decode_new_len() argument
116 if (pptr == NULL) in decode_new_len()
118 ptr = *pptr; in decode_new_len()
135 *pptr = ptr; in decode_new_len()
145 decode_len(unsigned char **pptr, int ltype) in decode_len() argument
151 return (decode_new_len(pptr)); in decode_len()
153 if (pptr == NULL) in decode_len()
156 ptr = *pptr; in decode_len()
178 *pptr = ptr; in decode_len()
188 decode_mpi(unsigned char **pptr, size_t *sz) in decode_mpi() argument
194 if (pptr == NULL || sz == NULL) in decode_mpi()
197 ptr = *pptr; in decode_mpi()
205 *pptr = ptr; in decode_mpi()
216 mpi2bn(unsigned char **pptr, size_t *sz) in mpi2bn() argument
218 return (decode_mpi(pptr, sz)); in mpi2bn()
222 mpi2bn(unsigned char **pptr) in mpi2bn() argument
228 if (pptr == NULL) in mpi2bn()
231 ptr = *pptr; in mpi2bn()
238 *pptr = ptr; in mpi2bn()
255 decode_packet(int want, unsigned char **pptr, size_t nbytes, in decode_packet() argument
266 nptr = ptr = *pptr; in decode_packet()
280 *pptr = nptr; in decode_packet()
293 decode_subpacket(unsigned char **pptr, int *stag, int *sz) in decode_subpacket() argument
298 ptr = *pptr; in decode_subpacket()
300 *sz = (int)(len + ptr - *pptr); in decode_subpacket()
301 *pptr = ptr + len; in decode_subpacket()