Home
last modified time | relevance | path

Searched refs:previous (Results 1 – 25 of 905) sorted by relevance

12345678910>>...37

/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dstt.c84 new->next = list->previous->next; in ffestt_caselist_append()
85 new->previous = list->previous; in ffestt_caselist_append()
86 new->next->previous = new; in ffestt_caselist_append()
87 new->previous->next = new; in ffestt_caselist_append()
109 new->next = new->previous = new; in ffestt_caselist_create()
156 new->next = list->previous->next; in ffestt_dimlist_append()
157 new->previous = list->previous; in ffestt_dimlist_append()
158 new->next->previous = new; in ffestt_dimlist_append()
159 new->previous->next = new; in ffestt_dimlist_append()
405 new->next = new->previous = new; in ffestt_dimlist_create()
[all …]
H A Dwhere.c59 ffewhereLL_ previous; member
102 ll = ll->previous) in ffewhere_ll_lookup_()
136 ll->previous = ffewhere_root_ll_->last; in ffewhere_file_set()
137 ll->next->previous = ll; in ffewhere_file_set()
138 ll->previous->next = ll; in ffewhere_file_set()
141 if (ll->previous == ll->next) in ffewhere_file_set()
144 ll->wf = ll->previous->wf; in ffewhere_file_set()
153 if (ll->previous == ll->next) in ffewhere_file_set()
157 = ll->line_no - ll->previous->line_no + ll->previous->offset; in ffewhere_file_set()
225 wl->previous->next = wl->next; in ffewhere_line_kill()
[all …]
H A Dmalloc.c105 a->next->previous = a->previous; in malloc_kill_area_()
106 a->previous->next = a->next; in malloc_kill_area_()
198 assert (p->next->previous == p); in malloc_pool_kill()
199 assert (p->previous->next == p); in malloc_pool_kill()
218 p->next->previous = p->previous; in malloc_pool_kill()
219 p->previous->next = p->next; in malloc_pool_kill()
247 p->previous = parent->youngest; in malloc_pool_new()
417 a->previous = a->next->previous; in malloc_new_inpool_()
418 a->next->previous = a; in malloc_new_inpool_()
419 a->previous->next = a; in malloc_new_inpool_()
H A Dname.c110 newn->previous = n->previous; in ffename_find()
111 n->previous = newn; in ffename_find()
112 newn->previous->next = newn; in ffename_find()
134 n->next->previous = n->previous; in ffename_kill()
135 n->previous->next = n->next; in ffename_kill()
H A Dstt.h60 ffesttCaseList previous; member
71 ffesttDimList previous; member
80 ffesttExprList previous; member
88 ffesttTokenItem previous; member
120 ffesttFormatList previous; member
H A Dequiv.h52 ffeequiv previous; member
86 #define ffeequiv_previous(e) ((e)->previous)
/openbsd-src/gnu/llvm/llvm/docs/AMDGPU/
H A Dgfx11_delay.rst50 VALU_DEP_1 Dependency on a previous VALU instruction, 1 opcode back.
51 VALU_DEP_2 Dependency on a previous VALU instruction, 2 opcodes back.
52 VALU_DEP_3 Dependency on a previous VALU instruction, 3 opcodes back.
53 VALU_DEP_4 Dependency on a previous VALU instruction, 4 opcodes back.
54 TRANS32_DEP_1 Dependency on a previous TRANS32 instruction, 1 opcode back.
55 TRANS32_DEP_2 Dependency on a previous TRANS32 instruction, 2 opcodes back.
56 TRANS32_DEP_3 Dependency on a previous TRANS32 instruction, 3 opcodes back.
/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dcorelist.pl375 for my $previous (reverse sort { $a <=> $b } keys %$existing) {
377 next if $previous > $version || $previous == $version;
378 my $delta = $deltas{$previous} = {};
380 $existing->{$previous}, \%versions);
408 for my $previous (reverse sort { $a <=> $b } keys %Module::CoreList::Utils::utilities) {
410 next if $previous > $version || $previous == $version;
412 my $delta = $deltas{$previous} = {};
414 $Module::CoreList::Utils::utilities{$previous}, \%utilities);
/openbsd-src/usr.bin/tmux/
H A Dcmd-select-window.c93 int next, previous, last, activity; in cmd_select_window_exec() local
98 previous = (cmd_get_entry(self) == &cmd_previous_window_entry); in cmd_select_window_exec()
100 previous = 1; in cmd_select_window_exec()
105 if (next || previous || last) { in cmd_select_window_exec()
112 } else if (previous) { in cmd_select_window_exec()
H A Dcmd-select-layout.c81 int next, previous, layout; in cmd_select_layout_exec() local
88 previous = (cmd_get_entry(self) == &cmd_previous_layout_entry); in cmd_select_layout_exec()
90 previous = 1; in cmd_select_layout_exec()
95 if (next || previous) { in cmd_select_layout_exec()
H A Dlayout.c483 /* Merge the space into the previous or next cell. */ in layout_init()
758 layout_new_pane_size(struct window *w, u_int previous, struct layout_cell *lc, in layout_set_size_check()
772 * proportionate to the previous size. in layout_set_size_check()
778 new_size = (lc->sx * size) / previous; in layout_set_size_check()
782 new_size = (lc->sy * size) / previous; in layout_set_size_check()
800 u_int new_size, available, previous, count, idx; in layout_set_size_check()
818 previous = lc->sx; in layout_resize_child_cells()
820 previous = lc->sy; in layout_resize_child_cells()
824 new_size = layout_new_pane_size(w, previous, lcchild, in layout_resize_child_cells()
856 u_int previous, availabl in layout_resize_child_cells()
719 layout_new_pane_size(struct window * w,u_int previous,struct layout_cell * lc,enum layout_type type,u_int size,u_int count_left,u_int size_left) layout_new_pane_size() argument
761 u_int new_size, available, previous, count, idx; layout_set_size_check() local
817 u_int previous, available, count, idx; layout_resize_child_cells() local
[all...]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash43.C10 ErrorHandler *previous; variable
16 error_stack = error_stack->previous; in pop()
21 previous = error_stack; in push()
/openbsd-src/usr.bin/vi/docs/internals/
H A Dcontext5 In historic vi, the previous context mark was always set:
18 In historic vi, the previous context mark was set if the
24 In historic vi, the previous context mark was set if the
32 In historic vi, the previous context mark was set in non-visual
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dclass-1.m7 /* { dg-error "previous declaration of" "" { target *-*-* } 4 } */
13 /* { dg-error "previous declaration of" "" { target *-*-* } 9 } */
19 /* { dg-error "previous declaration of" "" { target *-*-* } 15 } */
/openbsd-src/regress/lib/libcrypto/evp/
H A Devp_test.c530 const char *previous; member
538 const char *previous = arg->previous; in evp_do_all_cb_common() local
541 arg->previous = from; in evp_do_all_cb_common()
554 if (previous == NULL) in evp_do_all_cb_common()
557 if (strcmp(previous, from) >= 0) { in evp_do_all_cb_common()
560 previous, from); in evp_do_all_cb_common()
658 const char *previous = arg->previous; in obj_name_cb() local
662 arg->previous = obj_name->name; in obj_name_cb()
716 if (previous != NULL && strcmp(previous, obj_name->name) >= 0) { in obj_name_cb()
719 previous, obj_name->name); in obj_name_cb()
/openbsd-src/distrib/special/more/
H A Dmore.help13 ' Go to place where previous search started
21 :p Go to kth previous file [1]
23 . Repeat previous command
/openbsd-src/usr.sbin/pkg_add/OpenBSD/
H A DState.pm198 my $previous;
201 $h->{$previous} = 1;
203 $previous = $letter;
204 $h->{$previous} = 0;
/openbsd-src/gnu/gcc/gcc/config/rs6000/
H A Dppc-asm.h107 .previous; \
133 .previous; \
163 .previous
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dm68k-stub.c164 struct FrameStruct *previous; member
966 if (frame == frame->previous) in handle_exception()
971 frame = frame->previous; in handle_exception()
1020 frame->previous = lastFrame; in handle_exception()
1044 lastFrame->previous = lastFrame; in initializeRemcomErrorFrame()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp161 sptr diff = v - previous; in operator =()
163 previous = v; in operator =()
174 uptr previous = 0; member in __sanitizer::SLeb128Encoder
192 previous += diff; in operator *()
193 return previous; in operator *()
202 uptr previous = 0; member in __sanitizer::SLeb128Decoder
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/
H A DPerl.pm86 # previous semantics: we used to execute everything via Perl and
226 my $previous = $ENV{PERL5LIB};
228 if ( defined $previous ) {
229 $ENV{PERL5LIB} = $previous;
/openbsd-src/gnu/llvm/llvm/utils/vim/indent/
H A Dllvm.vim5 " - If no other rule matches copy indent from previous non-empty,
8 " - If previous line ends with ':' increase indentation
13 " - If there is an opening+unclosed parenthesis on previous line indent to that
/openbsd-src/usr.bin/less/
H A Dmore.hlp32 n * Repeat previous search (for _N-th occurrence).
33 N Repeat previous search in reverse direction.
47 '' Go to the previous position.
56 :p * Examine the (_N-th) previous file from the command line.
/openbsd-src/gnu/gcc/gcc/
H A Dggc-page.c1662 page_entry *p, *previous; in sweep_pages() local
1669 previous = NULL; in sweep_pages()
1696 if (! previous) in sweep_pages()
1699 previous->next = next; in sweep_pages()
1703 next->prev = previous; in sweep_pages()
1707 G.page_tails[order] = previous; in sweep_pages()
1709 p = previous; in sweep_pages()
1727 if (! previous) in sweep_pages()
1730 previous->next = next; in sweep_pages()
1734 next->prev = previous; in sweep_pages()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dggc-page.c1554 page_entry *p, *previous; in sweep_pages() local
1561 previous = NULL; in sweep_pages()
1583 if (! previous) in sweep_pages()
1586 previous->next = next; in sweep_pages()
1590 G.page_tails[order] = previous; in sweep_pages()
1592 p = previous; in sweep_pages()
1609 if (! previous) in sweep_pages()
1612 previous->next = next; in sweep_pages()
1613 p = previous; in sweep_pages()
1623 previous->next = p->next; in sweep_pages()
[all …]

12345678910>>...37