Lines Matching refs:sptr
314 ff_stack_T *sptr; in vim_findfile_init() local
622 sptr = ff_create_stack_element(ff_expand_buffer, in vim_findfile_init()
628 if (sptr == NULL) in vim_findfile_init()
631 ff_push(search_ctx, sptr); in vim_findfile_init()
1146 ff_stack_T *sptr; in vim_findfile() local
1178 sptr = ff_create_stack_element(file_path, in vim_findfile()
1180 if (sptr == NULL) in vim_findfile()
1182 ff_push(search_ctx, sptr); in vim_findfile()
1529 ff_stack_T *sptr; in ff_pop() local
1531 sptr = search_ctx->ffsc_stack_ptr; in ff_pop()
1535 return sptr; in ff_pop()
1562 ff_stack_T *sptr; in ff_clear() local
1565 while ((sptr = ff_pop(search_ctx)) != NULL) in ff_clear()
1566 ff_free_stack_element(sptr); in ff_clear()