sp 555 src/editor/edit.c unsigned long sp = edit->undo_stack_pointer; sp 557 src/editor/edit.c if (sp == edit->undo_stack_bottom) sp 560 src/editor/edit.c sp = (sp - 1) & edit->undo_stack_size_mask; sp 561 src/editor/edit.c c = edit->undo_stack[sp]; sp 569 src/editor/edit.c if (sp == edit->undo_stack_bottom) sp 572 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; sp 573 src/editor/edit.c if (edit->undo_stack[sp] == -2) sp 576 src/editor/edit.c edit->undo_stack_pointer = sp; sp 579 src/editor/edit.c edit->undo_stack[sp]++; sp 590 src/editor/edit.c unsigned long sp = edit->redo_stack_pointer; sp 592 src/editor/edit.c if (sp == edit->redo_stack_bottom) sp 595 src/editor/edit.c sp = (sp - 1) & edit->redo_stack_size_mask; sp 596 src/editor/edit.c c = edit->redo_stack[sp]; sp 603 src/editor/edit.c if (sp == edit->redo_stack_bottom) sp 606 src/editor/edit.c c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask]; sp 607 src/editor/edit.c if (edit->redo_stack[sp] == -2) sp 608 src/editor/edit.c edit->redo_stack_pointer = sp; sp 610 src/editor/edit.c edit->redo_stack[sp]++; sp 621 src/editor/edit.c unsigned long sp = edit->undo_stack_pointer; sp 623 src/editor/edit.c if (sp == edit->undo_stack_bottom) sp 626 src/editor/edit.c sp = (sp - 1) & edit->undo_stack_size_mask; sp 627 src/editor/edit.c c = edit->undo_stack[sp]; sp 631 src/editor/edit.c if (sp == edit->undo_stack_bottom) sp 634 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; sp 2390 src/editor/edit.c unsigned long sp = edit->undo_stack_pointer; sp 2394 src/editor/edit.c if (sp > edit->undo_stack_size - 10) sp 2422 src/editor/edit.c if (edit->undo_stack_bottom != sp sp 2424 src/editor/edit.c && ((sp - 2) & edit->undo_stack_size_mask) != edit->undo_stack_bottom) sp 2430 src/editor/edit.c d = edit->undo_stack[(sp - 2) & edit->undo_stack_size_mask]; sp 2445 src/editor/edit.c edit->undo_stack[sp] = -2; sp 2450 src/editor/edit.c edit->undo_stack[sp] = c; sp 2481 src/editor/edit.c unsigned long sp = edit->redo_stack_pointer; sp 2484 src/editor/edit.c if (sp > edit->redo_stack_size - 10) sp 2503 src/editor/edit.c if (edit->redo_stack_bottom != sp sp 2505 src/editor/edit.c && ((sp - 2) & edit->redo_stack_size_mask) != edit->redo_stack_bottom) sp 2511 src/editor/edit.c d = edit->redo_stack[(sp - 2) & edit->redo_stack_size_mask]; sp 2526 src/editor/edit.c edit->redo_stack[sp] = -2; sp 2531 src/editor/edit.c edit->redo_stack[sp] = c; sp 1857 src/filemanager/file.c char *sp; sp 1907 src/filemanager/file.c sp = format_string; sp 1908 src/filemanager/file.c format_string = str_replace_all (sp, "%n", cp); sp 1909 src/filemanager/file.c g_free (sp); sp 1919 src/filemanager/file.c sp = format_string; sp 1920 src/filemanager/file.c format_string = str_replace_all (sp, "%f", cp); sp 1921 src/filemanager/file.c g_free (sp); sp 1925 src/filemanager/file.c sp = format_string; sp 1926 src/filemanager/file.c format_string = str_replace_all (sp, "%m", cp); sp 1927 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 357 src/vfs/tar/tar-sparse.c sparse_add_map (struct tar_stat_info *st, struct sp_array *sp) sp 361 src/vfs/tar/tar-sparse.c g_array_append_val (st->sparse_map, *sp); sp 372 src/vfs/tar/tar-sparse.c struct sp_array sp; sp 378 src/vfs/tar/tar-sparse.c sp.offset = OFF_FROM_HEADER (s->offset); sp 379 src/vfs/tar/tar-sparse.c sp.numbytes = OFF_FROM_HEADER (s->numbytes); sp 381 src/vfs/tar/tar-sparse.c if (sp.offset < 0 || sp.numbytes < 0 || ckd_add (&size, sp.offset, sp.numbytes) sp 385 src/vfs/tar/tar-sparse.c sparse_add_map (file->stat_info, &sp); sp 434 src/vfs/tar/tar-sparse.c rc = oldgnu_add_sparse (file, &h->oldgnu_header.sp[i]); sp 449 src/vfs/tar/tar-sparse.c rc = oldgnu_add_sparse (file, &h->sparse_header.sp[i]); sp 497 src/vfs/tar/tar-sparse.c if (h->star_in_header.prefix[0] == '\0' && h->star_in_header.sp[0].offset[10] != '\0') sp 502 src/vfs/tar/tar-sparse.c rc = oldgnu_add_sparse (file, &h->star_in_header.sp[i]); sp 519 src/vfs/tar/tar-sparse.c rc = oldgnu_add_sparse (file, &h->star_ext_header.sp[i]); sp 576 src/vfs/tar/tar-sparse.c struct sp_array sp; sp 585 src/vfs/tar/tar-sparse.c sp.offset = u; sp 587 src/vfs/tar/tar-sparse.c if (!decode_num (&u, nbuf, TYPE_MAXIMUM (off_t)) || ckd_add (&size, sp.offset, u) sp 593 src/vfs/tar/tar-sparse.c sp.numbytes = u; sp 594 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));