Searched refs:last (Results 26 - 50 of 999) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D13478.C17 enum { first = 1, last }; enumerator in enum:Agent::__anon6615
29 {last, &(hand)Agent::foo} // ERROR - no match
/openbsd-current/gnu/usr.bin/perl/t/base/
H A Dwhile.t16 last if $x == 3;
/openbsd-current/sys/sys/
H A Dstdarg.h34 #define va_start(ap, last) __builtin_va_start((ap), last)
/openbsd-current/lib/libc/gen/
H A Dfstab.c56 char *last; local
64 _fs_fstab.fs_spec = strtok_r(cp, ":\n", &last);
67 _fs_fstab.fs_file = strtok_r(NULL, ":\n", &last);
68 _fs_fstab.fs_type = strtok_r(NULL, ":\n", &last);
76 if ((cp = strtok_r(NULL, ":\n", &last))) {
82 ":\n", &last))) {
95 _fs_fstab.fs_spec = strtok_r(cp, " \t\n", &last);
98 _fs_fstab.fs_file = strtok_r(NULL, " \t\n", &last);
99 _fs_fstab.fs_vfstype = strtok_r(NULL, " \t\n", &last);
100 _fs_fstab.fs_mntops = strtok_r(NULL, " \t\n", &last);
[all...]
/openbsd-current/usr.bin/mandoc/
H A Dman_macro.c97 n = man->last;
119 man->last = n;
121 roff_node_delete(man, man->last);
132 * We might delete the man->last node
138 man->last = n;
140 man->last->flags |= NODE_VALID;
150 man->next = (man->last == to) ?
166 n = man->last;
192 n = man->last;
215 for (nn = man->last
[all...]
H A Dman.c45 if (man->last->type != ROFFT_EQN || ln > man->last->line)
80 while (man->last->parent->type != ROFFT_ROOT &&
81 man_macro(man->last->parent->tok)->flags & MAN_ESCOPED)
82 man_unscope(man, man->last->parent);
95 man_unscope(man, man->last->parent);
96 roff_body_alloc(man, line, offs, man->last->tok);
128 if (man->last->tok == MAN_SH || man->last->tok == MAN_SS)
130 if (man->last
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dcfg1.C22 void foo(S first, S last) { argument
23 try { memmove(0, 0, last.q - first.q); }
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dreg_posixcc.t57 my $last= $ary->[0];
60 if ( $ary->[$idx] != $last + 1) {
61 if ($last!=$first) {
62 $ret.=sprintf "%s$fmt",$rng, $last;
64 $first= $last= $ary->[$idx];
67 $last= $ary->[$idx];
70 if ( $last != $first) {
71 $ret.=sprintf "%s$fmt",$rng, $last;
/openbsd-current/usr.sbin/mtree/
H A Dspec.c53 NODE *centry, *last; local
60 last = root = NULL;
126 if (last->type != F_DIR || last->flags & F_DONE) {
127 if (last == root)
129 last = last->parent;
131 last->flags |= F_DONE;
152 last = root = centry;
154 } else if (last
[all...]
/openbsd-current/lib/libcurses/tinfo/
H A Dentries.c58 * | NULL |<--+---- |<--+---- | last
73 ENTRY *ep, *last; local
75 for (last = 0, ep = headp; ep != 0; last = ep, ep = ep->next) {
77 if (last != 0) {
78 last->next = ep->next;
81 ep->next->last = last;
87 _nc_tail = last;
/openbsd-current/gnu/gcc/gcc/
H A Dtree-ssa-loop-ch.c55 tree last; local
74 last = last_stmt (header);
75 if (TREE_CODE (last) != COND_EXPR)
82 last = bsi_stmt (bsi);
84 if (TREE_CODE (last) == LABEL_EXPR)
87 if (get_call_expr_in (last))
90 *limit -= estimate_num_insns (last);
220 tree last; local
222 last = last_stmt (copied_bbs[i]);
223 if (TREE_CODE (last)
[all...]
H A Dcfgexpand.c43 /* Verify that there is exactly single jump instruction since last and attach
49 add_reg_br_prob_note (rtx last, int probability) argument
53 for (last = NEXT_INSN (last); last && NEXT_INSN (last); last = NEXT_INSN (last))
54 if (JUMP_P (last))
58 if (!any_condjump_p (last)
383 size_t i, last; local
1201 rtx last2, last; local
1283 rtx last2, last; local
1384 rtx note, last; local
[all...]
/openbsd-current/usr.bin/seq/
H A Dseq.c90 double last = 0.0; local
147 last = e_atof(argv[argc - 1]);
156 errx(1, "zero %screment", (first < last) ? "in" : "de");
161 incr = (first < last) ? 1.0 : -1.0;
163 if (incr <= 0.0 && first < last)
166 if (incr >= 0.0 && first > last)
177 fmt = generate_format(first, incr, last, equalize, pad);
179 for (step = 1, cur = first; incr > 0 ? cur <= last : cur >= last;
188 * Did we miss the last valu
368 generate_format(double first, double incr, double last, int equalize, char pad) argument
[all...]
/openbsd-current/gnu/llvm/llvm/bindings/python/llvm/
H A Dobject.py131 last = None
136 last = Section(sections)
138 last.cache()
140 yield last
143 last.expire()
145 if last is not None:
146 last.expire()
159 last = None
164 last = Symbol(symbols, self)
166 last
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dvbase3.C14 d0_List (Input_Iterator first, Input_Iterator last)
/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Dss_dup.t19 last if /^Perl_$func/;
23 last if /^}/;
/openbsd-current/regress/usr.sbin/pkg_add/
H A Dextract_chunks53 last;
64 last;
/openbsd-current/usr.sbin/ldapd/
H A Dattributes.c86 struct ber_element *elm, *a, *last; local
102 last = entry->be_sub;
103 if (last == NULL)
104 last = entry;
105 else while (last != NULL && last->be_next != NULL)
106 last = last->be_next;
108 if ((elm = ober_add_sequence(last)) == NULL)
148 struct ber_element *old_vals, *last; local
[all...]
/openbsd-current/lib/libcurses/widechar/
H A Dlib_inwstr.c57 int last = 0; local
74 if (last == 0) {
77 count = last; /* only store complete chars */
84 last = count;
/openbsd-current/sys/dev/pci/drm/i915/gt/uc/
H A Dselftest_guc.c54 struct i915_request *last[3] = {NULL, NULL, NULL}, *rq; local
95 last[i] = rq;
99 ret = i915_request_wait(last[i], 0, HZ);
104 i915_request_put(last[i]);
105 last[i] = NULL;
124 if (last[i])
125 i915_request_put(last[i]);
139 * another request which should successfully steal a guc_id. Wait on last
153 struct i915_request *spin_rq = NULL, *rq, *last = NULL; local
207 if ((ret != -EAGAIN) || !last) {
[all...]
/openbsd-current/gnu/usr.bin/perl/t/test_pl/
H A Dtempfile.t16 my($last,$check);
21 $last = $_;
24 last;
31 if( $last == $skip ){
41 diag( "only skipped $last out of $skip files" );
/openbsd-current/usr.bin/cvs/
H A Dgetlog.c427 char *first, *last, delim; local
438 last = strchr(args->argv[i], '<');
439 if (last != NULL) {
440 delim = *last;
441 *last++ = '\0';
443 if (*last == '=') {
444 last++;
448 last = strchr(args->argv[i], '>');
449 if (last != NULL) {
450 delim = *last;
[all...]
/openbsd-current/usr.bin/rcs/
H A Drlog.c204 char *first, *last, delim; local
215 last = strchr(args->argv[i], '<');
216 if (last != NULL) {
217 delim = *last;
218 *last++ = '\0';
220 if (*last == '=') {
221 last++;
225 last = strchr(args->argv[i], '>');
226 if (last != NULL) {
227 delim = *last;
[all...]
/openbsd-current/usr.bin/dig/lib/isc/
H A Dheap.c60 unsigned int last; member in struct:isc_heap
84 heap->last = 0;
147 size = heap->last;
173 new_last = heap->last + 1;
177 heap->last = new_last;
189 REQUIRE(idx >= 1 && idx <= heap->last);
193 if (idx == heap->last) {
194 heap->array[heap->last] = NULL;
195 heap->last--;
197 elt = heap->array[heap->last];
[all...]
/openbsd-current/games/hack/
H A Dhack.o_init.c86 int i, j, first, last, sum, end; local
95 last = first+1;
96 while(last < end && objects[last].oc_olet == let
97 && objects[last].oc_name != NULL)
98 last++;
108 for(j = first; j < last; j++) sum += objects[j].oc_prob;
110 for(j = first; j < last; j++)
111 objects[j].oc_prob = (100+j-first)/(last-first);
119 while(last < en
[all...]

Completed in 209 milliseconds

1234567891011>>