sp                539 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp                541 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                544 src/editor/edit.c     sp = (sp - 1) & edit->undo_stack_size_mask;
sp                545 src/editor/edit.c     c = edit->undo_stack[sp];
sp                553 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                556 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
sp                557 src/editor/edit.c     if (edit->undo_stack[sp] == -2)
sp                560 src/editor/edit.c         edit->undo_stack_pointer = sp;
sp                563 src/editor/edit.c         edit->undo_stack[sp]++;
sp                574 src/editor/edit.c     unsigned long sp = edit->redo_stack_pointer;
sp                576 src/editor/edit.c     if (sp == edit->redo_stack_bottom)
sp                579 src/editor/edit.c     sp = (sp - 1) & edit->redo_stack_size_mask;
sp                580 src/editor/edit.c     c = edit->redo_stack[sp];
sp                587 src/editor/edit.c     if (sp == edit->redo_stack_bottom)
sp                590 src/editor/edit.c     c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask];
sp                591 src/editor/edit.c     if (edit->redo_stack[sp] == -2)
sp                592 src/editor/edit.c         edit->redo_stack_pointer = sp;
sp                594 src/editor/edit.c         edit->redo_stack[sp]++;
sp                605 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp                607 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                610 src/editor/edit.c     sp = (sp - 1) & edit->undo_stack_size_mask;
sp                611 src/editor/edit.c     c = edit->undo_stack[sp];
sp                615 src/editor/edit.c     if (sp == edit->undo_stack_bottom)
sp                618 src/editor/edit.c     c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask];
sp               2345 src/editor/edit.c     unsigned long sp = edit->undo_stack_pointer;
sp               2349 src/editor/edit.c     if (sp > edit->undo_stack_size - 10)
sp               2377 src/editor/edit.c     if (edit->undo_stack_bottom != sp && spm1 != edit->undo_stack_bottom
sp               2378 src/editor/edit.c         && ((sp - 2) & edit->undo_stack_size_mask) != edit->undo_stack_bottom)
sp               2384 src/editor/edit.c             d = edit->undo_stack[(sp - 2) & edit->undo_stack_size_mask];
sp               2399 src/editor/edit.c                 edit->undo_stack[sp] = -2;
sp               2404 src/editor/edit.c     edit->undo_stack[sp] = c;
sp               2436 src/editor/edit.c     unsigned long sp = edit->redo_stack_pointer;
sp               2439 src/editor/edit.c     if (sp > edit->redo_stack_size - 10)
sp               2458 src/editor/edit.c     if (edit->redo_stack_bottom != sp && spm1 != edit->redo_stack_bottom
sp               2459 src/editor/edit.c         && ((sp - 2) & edit->redo_stack_size_mask) != edit->redo_stack_bottom)
sp               2465 src/editor/edit.c             d = edit->redo_stack[(sp - 2) & edit->redo_stack_size_mask];
sp               2480 src/editor/edit.c                 edit->redo_stack[sp] = -2;
sp               2485 src/editor/edit.c     edit->redo_stack[sp] = c;
sp               1865 src/filemanager/file.c     char *sp;
sp               1915 src/filemanager/file.c     sp = format_string;
sp               1916 src/filemanager/file.c     format_string = str_replace_all (sp, "%n", cp);
sp               1917 src/filemanager/file.c     g_free (sp);
sp               1927 src/filemanager/file.c     sp = format_string;
sp               1928 src/filemanager/file.c     format_string = str_replace_all (sp, "%f", cp);
sp               1929 src/filemanager/file.c     g_free (sp);
sp               1933 src/filemanager/file.c     sp = format_string;
sp               1934 src/filemanager/file.c     format_string = str_replace_all (sp, "%m", cp);
sp               1935 src/filemanager/file.c     g_free (sp);
sp                110 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_SPARSE_HEADER];
sp                131 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_OLDGNU_HEADER];
sp                169 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_STAR_HEADER];  // 356
sp                180 src/vfs/tar/tar-internal.h     struct sparse sp[SPARSES_IN_STAR_EXT_HEADER];
sp                350 src/vfs/tar/tar-sparse.c sparse_add_map (struct tar_stat_info *st, struct sp_array *sp)
sp                354 src/vfs/tar/tar-sparse.c     g_array_append_val (st->sparse_map, *sp);
sp                365 src/vfs/tar/tar-sparse.c     struct sp_array sp;
sp                371 src/vfs/tar/tar-sparse.c     sp.offset = OFF_FROM_HEADER (s->offset);
sp                372 src/vfs/tar/tar-sparse.c     sp.numbytes = OFF_FROM_HEADER (s->numbytes);
sp                374 src/vfs/tar/tar-sparse.c     if (sp.offset < 0 || sp.numbytes < 0 || ckd_add (&size, sp.offset, sp.numbytes)
sp                378 src/vfs/tar/tar-sparse.c     sparse_add_map (file->stat_info, &sp);
sp                427 src/vfs/tar/tar-sparse.c         rc = oldgnu_add_sparse (file, &h->oldgnu_header.sp[i]);
sp                442 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->sparse_header.sp[i]);
sp                490 src/vfs/tar/tar-sparse.c     if (h->star_in_header.prefix[0] == '\0' && h->star_in_header.sp[0].offset[10] != '\0')
sp                495 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->star_in_header.sp[i]);
sp                512 src/vfs/tar/tar-sparse.c             rc = oldgnu_add_sparse (file, &h->star_ext_header.sp[i]);
sp                569 src/vfs/tar/tar-sparse.c             struct sp_array sp;
sp                578 src/vfs/tar/tar-sparse.c             sp.offset = u;
sp                580 src/vfs/tar/tar-sparse.c             if (!decode_num (&u, nbuf, TYPE_MAXIMUM (off_t)) || ckd_add (&size, sp.offset, u)
sp                586 src/vfs/tar/tar-sparse.c             sp.numbytes = u;
sp                587 src/vfs/tar/tar-sparse.c             sparse_add_map (file->stat_info, &sp);
sp                250 src/vfs/tar/tar.c         struct sp_array *sp;
sp                252 src/vfs/tar/tar.c         sp = &g_array_index (sm, struct sp_array, i);
sp                253 src/vfs/tar/tar.c         sp->arch_offset = begin;
sp                254 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));