Lines Matching refs:newptr
59 char_u **newptr, int last);
61 char_u **newptr, int last);
468 char_u **newptr, in crypt_encode_alloc() argument
475 return method->encode_buffer_fn(state, from, len, newptr, last); in crypt_encode_alloc()
480 *newptr = alloc(len + 50); in crypt_encode_alloc()
481 if (*newptr == NULL) in crypt_encode_alloc()
483 method->encode_fn(state, from, len, *newptr, last); in crypt_encode_alloc()
497 char_u **newptr, in crypt_decode_alloc() argument
504 return method->decode_buffer_fn(state, ptr, len, newptr, last); in crypt_decode_alloc()
510 *newptr = alloc(len); in crypt_decode_alloc()
511 if (*newptr == NULL) in crypt_decode_alloc()
513 method->decode_fn(state, ptr, len, *newptr, last); in crypt_decode_alloc()