Lines Matching refs:pp
425 char_u **pp; in stuff_yank() local
441 pp = &(y_current->y_array[y_current->y_size - 1]); in stuff_yank()
442 lp = alloc(STRLEN(*pp) + STRLEN(p) + 1); in stuff_yank()
448 STRCPY(lp, *pp); in stuff_yank()
451 vim_free(*pp); in stuff_yank()
452 *pp = lp; in stuff_yank()
2898 char_u **pp; in str_to_reg() local
2944 pp = lalloc_clear((y_ptr->y_size + newlines) * sizeof(char_u *), TRUE); in str_to_reg()
2945 if (pp == NULL) // out of memory in str_to_reg()
2948 pp[lnum] = y_ptr->y_array[lnum]; in str_to_reg()
2950 y_ptr->y_array = pp; in str_to_reg()
2958 pp[lnum] = vim_strsave(*ss); in str_to_reg()