sp                545 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp                547 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                550 src/editor/edit.c     sp = (sp - 1) & edit->undo_stack_size_mask;
sp                551 src/editor/edit.c     c = edit->undo_stack[sp];
sp                559 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                562 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
sp                563 src/editor/edit.c     if (edit->undo_stack[sp] == -2)
sp                566 src/editor/edit.c         edit->undo_stack_pointer = sp;
sp                569 src/editor/edit.c         edit->undo_stack[sp]++;
sp                580 src/editor/edit.c     unsigned long sp = edit->redo_stack_pointer;
sp                582 src/editor/edit.c     if (sp == edit->redo_stack_bottom)
sp                585 src/editor/edit.c     sp = (sp - 1) & edit->redo_stack_size_mask;
sp                586 src/editor/edit.c     c = edit->redo_stack[sp];
sp                593 src/editor/edit.c     if (sp == edit->redo_stack_bottom)
sp                596 src/editor/edit.c     c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask];
sp                597 src/editor/edit.c     if (edit->redo_stack[sp] == -2)
sp                598 src/editor/edit.c         edit->redo_stack_pointer = sp;
sp                600 src/editor/edit.c         edit->redo_stack[sp]++;
sp                611 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp                613 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                616 src/editor/edit.c     sp = (sp - 1) & edit->undo_stack_size_mask;
sp                617 src/editor/edit.c     c = edit->undo_stack[sp];
sp                621 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                624 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
sp               2372 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp               2376 src/editor/edit.c     if (sp > edit->undo_stack_size - 10)
sp               2404 src/editor/edit.c     if (edit->undo_stack_bottom != sp
sp               2406 src/editor/edit.c         && ((sp - 2) & edit->undo_stack_size_mask) != edit->undo_stack_bottom)
sp               2412 src/editor/edit.c             d = edit->undo_stack[(sp - 2) & edit->undo_stack_size_mask];
sp               2427 src/editor/edit.c                 edit->undo_stack[sp] = -2;
sp               2432 src/editor/edit.c     edit->undo_stack[sp] = c;
sp               2463 src/editor/edit.c     unsigned long sp = edit->redo_stack_pointer;
sp               2466 src/editor/edit.c     if (sp > edit->redo_stack_size - 10)
sp               2485 src/editor/edit.c     if (edit->redo_stack_bottom != sp
sp               2487 src/editor/edit.c         && ((sp - 2) & edit->redo_stack_size_mask) != edit->redo_stack_bottom)
sp               2493 src/editor/edit.c             d = edit->redo_stack[(sp - 2) & edit->redo_stack_size_mask];
sp               2508 src/editor/edit.c                 edit->redo_stack[sp] = -2;
sp               2513 src/editor/edit.c     edit->redo_stack[sp] = c;
sp               1884 src/filemanager/file.c     char *sp;
sp               1934 src/filemanager/file.c     sp = format_string;
sp               1935 src/filemanager/file.c     format_string = str_replace_all (sp, "%n", cp);
sp               1936 src/filemanager/file.c     g_free (sp);
sp               1946 src/filemanager/file.c     sp = format_string;
sp               1947 src/filemanager/file.c     format_string = str_replace_all (sp, "%f", cp);
sp               1948 src/filemanager/file.c     g_free (sp);
sp               1952 src/filemanager/file.c     sp = format_string;
sp               1953 src/filemanager/file.c     format_string = str_replace_all (sp, "%m", cp);
sp               1954 src/filemanager/file.c     g_free (sp);
sp                113 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_SPARSE_HEADER];
sp                134 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_OLDGNU_HEADER];
sp                172 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_STAR_HEADER]; /* 356  */
sp                183 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_STAR_EXT_HEADER];
sp                355 src/vfs/tar/tar-sparse.c sparse_add_map (struct tar_stat_info *st, struct sp_array *sp)
sp                359 src/vfs/tar/tar-sparse.c     g_array_append_val (st->sparse_map, *sp);
sp                370 src/vfs/tar/tar-sparse.c     struct sp_array sp;
sp                376 src/vfs/tar/tar-sparse.c     sp.offset = OFF_FROM_HEADER (s->offset);
sp                377 src/vfs/tar/tar-sparse.c     sp.numbytes = OFF_FROM_HEADER (s->numbytes);
sp                379 src/vfs/tar/tar-sparse.c     if (sp.offset < 0 || sp.numbytes < 0 || ckd_add (&size, sp.offset, sp.numbytes)
sp                383 src/vfs/tar/tar-sparse.c     sparse_add_map (file->stat_info, &sp);
sp                432 src/vfs/tar/tar-sparse.c         rc = oldgnu_add_sparse (file, &h->oldgnu_header.sp[i]);
sp                447 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->sparse_header.sp[i]);
sp                495 src/vfs/tar/tar-sparse.c     if (h->star_in_header.prefix[0] == '\0' && h->star_in_header.sp[0].offset[10] != '\0')
sp                500 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->star_in_header.sp[i]);
sp                517 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->star_ext_header.sp[i]);
sp                574 src/vfs/tar/tar-sparse.c             struct sp_array sp;
sp                583 src/vfs/tar/tar-sparse.c             sp.offset = u;
sp                585 src/vfs/tar/tar-sparse.c             if (!decode_num (&u, nbuf, TYPE_MAXIMUM (off_t)) || ckd_add (&size, sp.offset, u)
sp                591 src/vfs/tar/tar-sparse.c             sp.numbytes = u;
sp                592 src/vfs/tar/tar-sparse.c             sparse_add_map (file->stat_info, &sp);
sp                260 src/vfs/tar/tar.c         struct sp_array *sp;
sp                262 src/vfs/tar/tar.c         sp = &g_array_index (sm, struct sp_array, i);
sp                263 src/vfs/tar/tar.c         sp->arch_offset = begin;
sp                264 src/vfs/tar/tar.c         begin += BLOCKSIZE * (sp->numbytes / BLOCKSIZE + sp->numbytes % BLOCKSIZE);
sp                157 src/viewer/growbuf.c             mc_pipe_t *sp = view->ds_stdio_pipe;
sp                163 src/viewer/growbuf.c             sp->out.len = bytesfree;
sp                164 src/viewer/growbuf.c             sp->err.len = MC_PIPE_BUFSIZE;
sp                166 src/viewer/growbuf.c             mc_pread (sp, &error);
sp                176 src/viewer/growbuf.c             if (view->pipe_first_err_msg && sp->err.len > 0)
sp                185 src/viewer/growbuf.c                 mcview_show_error (view, sp->err.buf);
sp                198 src/viewer/growbuf.c             if (sp->out.len > 0)
sp                200 src/viewer/growbuf.c                 memmove (p, sp->out.buf, sp->out.len);
sp                201 src/viewer/growbuf.c                 nread = sp->out.len;
sp                203 src/viewer/growbuf.c             else if (sp->out.len == MC_PIPE_STREAM_EOF || sp->out.len == MC_PIPE_ERROR_READ)
sp                205 src/viewer/growbuf.c                 if (sp->out.len == MC_PIPE_ERROR_READ)
sp                210 src/viewer/growbuf.c                                                unix_error_string (sp->out.error));