Home
last modified time | relevance | path

Searched refs:newptr (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/
H A Dcrypt.c59 char_u **newptr, int last);
61 char_u **newptr, int last);
468 char_u **newptr, in crypt_encode_alloc() argument
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()
[all …]
H A Dtextprop.c1055 char_u *newptr = alloc(buf->b_ml.ml_line_len); in f_prop_remove() local
1058 if (newptr == NULL) in f_prop_remove()
1060 mch_memmove(newptr, buf->b_ml.ml_line_ptr, in f_prop_remove()
1062 buf->b_ml.ml_line_ptr = newptr; in f_prop_remove()
H A Dfileio.c1328 char_u *newptr = NULL; in readfile() local
1333 &newptr, eof); in readfile()
1339 vim_free(newptr); in readfile()
1351 new_buffer = newptr; in readfile()
1368 if (newptr != NULL) in readfile()
1369 mch_memmove(new_buffer + linerest, newptr, in readfile()
1371 vim_free(newptr); in readfile()
/vim-8.2.3635/src/proto/
H A Dcrypt.pro16 long crypt_encode_alloc(cryptstate_T *state, char_u *from, size_t len, char_u **newptr, int last);
17 long crypt_decode_alloc(cryptstate_T *state, char_u *ptr, long len, char_u **newptr, int last);