Searched refs:last (Results 101 - 125 of 999) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/dist/IO/
H A DMakefile.PL17 last;
/openbsd-current/gnu/usr.bin/perl/cpan/libnet/t/
H A Dnntp.t43 last if @grp;
/openbsd-current/gnu/usr.bin/perl/dist/IO/t/
H A Dio_sock.t108 last SERVER_LOOP unless my $sock = $listen->accept;
110 last SERVER_LOOP if /^quit/;
111 last if /^done/;
312 last;
346 last SERVER_LOOP unless my $sock = $listen->accept;
351 last SERVER_LOOP if /^quit/;
352 last if /^done/;
367 last;
/openbsd-current/sys/arch/armv7/marvell/
H A Dmvortc.c129 int i, j, last; local
133 last = 0;
137 for (j = 0; j < last; j++) {
142 if (j < last) {
145 samples[last] = sample;
146 counts[last] = 1;
147 last++;
153 for (i = 0; i < last; i++) {
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DEnvironment.cpp44 void Environment::insert(iterator first, iterator last) { argument
45 while (first != last) {
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Duser-regs.c57 struct user_reg **last; member in struct:gdb_user_regs
71 (*regs->last) = reg;
72 regs->last = &(*regs->last)->next;
96 regs->last = &regs->first;
H A Dreggroups.c74 struct reggroup_el **last; member in struct:reggroups
84 groups->last = &groups->first;
98 (*groups->last) = el;
99 groups->last = &el->next;
125 reggroup_next (struct gdbarch *gdbarch, struct reggroup *last) argument
138 if (last == NULL)
142 if (el->group == last)
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dindex.t22 my $last = substr($foo,rindex($foo,'the'),100);
23 is($last, "their country.");
25 $last = substr($foo,index($foo,'Now'),2);
26 is($last, "No");
28 $last = substr($foo,rindex($foo,'Now'),2);
29 is($last, "No");
31 $last = substr($foo,index($foo,'.'),100);
32 is($last, ".");
34 $last = substr($foo,rindex($foo,'.'),100);
35 is($last, "
[all...]
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp89 unsigned last = Depth - 1; local
90 while ((last > 0) && ((*this)[last] == 0))
91 last--;
93 for (unsigned i = 0; i <= last; i++) {
/openbsd-current/usr.bin/lex/
H A Dnfa.c164 int last = lastst[mach]; local
166 for (i = firstst[mach]; i <= last; ++i) {
309 * new = link_machines( first, last );
311 * new - a machine constructed by connecting first to last
312 * first - the machine whose successor is to be last
313 * last - the machine whose predecessor is to be first
316 * last to produce a machine new which will pattern-match first first
317 * and then last, and will fail if either of the sub-patterns fails.
318 * FIRST is set to new by the operation. last is unmolested.
322 link_machines(first, last)
[all...]
/openbsd-current/usr.bin/mandoc/
H A Dtbl_layout.c248 if (rp->last == NULL)
250 else if (rp->last->pos == TBL_CELL_HORIZ ||
251 rp->last->pos == TBL_CELL_DHORIZ)
252 c = rp->last->pos;
313 if (rp->last != NULL &&
314 rp->last->col + 1 == tbl->opts.cols &&
315 tbl->opts.rvert < rp->last->vert)
316 tbl->opts.rvert = rp->last->vert;
318 /* If the last line is empty, drop it. */
333 * If the last lin
[all...]
H A Dman_validate.c107 /* Validate the subtree rooted at man->last. */
119 n = man->last;
120 man->last = man->last->child;
121 while (man->last != NULL) {
123 if (man->last == n)
124 man->last = man->last->child;
126 man->last = man->last
[all...]
H A Dmdoc.c63 if (mdoc->last->type != ROFFT_EQN || ln > mdoc->last->line)
169 n = mdoc->last;
239 switch (mdoc->last->type) {
241 sp = mdoc->last->string;
256 mdoc->last->flags |= NODE_VALID | NODE_ENDED;
267 * End-of-sentence check. If the last character is an unescaped
275 mdoc->last->flags |= NODE_EOS;
359 n = mdoc->last;
389 SEC_NAME != mdoc->last
[all...]
H A Dmdoc_macro.c224 n = mdoc->last->flags & NODE_VALID ?
225 mdoc->last->parent : mdoc->last;
272 while (mdoc->last != to) {
273 mdoc_state(mdoc, mdoc->last);
274 mdoc->last->flags |= NODE_VALID | NODE_ENDED;
275 mdoc->last = mdoc->last->parent;
277 mdoc_state(mdoc, mdoc->last);
278 mdoc->last
[all...]
/openbsd-current/lib/libcurses/tinfo/
H A Dalloc_ttype.c208 * Returns the last index in ext_Names[] for the given token-type
213 unsigned last; local
217 last = tp->ext_Booleans;
220 last = (unsigned) (tp->ext_Booleans + tp->ext_Numbers);
224 last = NUM_EXT_NAMES(tp);
227 return last;
238 unsigned last = _nc_last_ext_name(tp, token_type); local
240 for (j = first; j < last; j++) {
282 int last = (int) NUM_EXT_NAMES(tp) - 1; local
284 for (j = first; j < last;
324 unsigned last = _nc_last_ext_name(tp, token_type); local
379 int last = first + to->ext_Strings; local
[all...]
/openbsd-current/gnu/gcc/libdecnumber/
H A DdecUtility.c233 Unit *last = uout; /* will be unit containing msd */ local
275 last = uout; /* record most significant unit */
294 /* If this is the last bunch and it is an odd one, we only have one */
299 last = uout;
316 last = uout;
331 last = uout;
348 /* here, last points to the most significant unit with digits */
350 dn->digits = (last - dn->lsu) * DECDPUN; /* floor of digits */
353 if (*last < powers[cut])
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cpp89 SymbolizedStack *last; member in struct:__sanitizer::__anon122::SymbolizeCodeCallbackArg
93 CHECK(last);
99 last->next = cur;
100 last = cur;
103 CHECK_EQ(addr, last->info.address);
104 return &last->info;
161 data.last = stack;
/openbsd-current/usr.bin/tmux/
H A Dgrid-view.c69 u_int yy, last; local
71 /* Find the last used line. */
72 last = 0;
76 last = yy + 1;
78 if (last == 0) {
84 for (yy = 0; yy < last; yy++) {
88 if (last < gd->sy)
89 grid_view_clear(gd, 0, 0, gd->sx, gd->sy - last, bg);
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dwhere.c68 ffewhereLL_ last; local
74 ffewhereLine last; member in struct:_ffewhere_root_line_
101 for (ll = ffewhere_root_ll_->last;
137 ll->previous = ffewhere_root_ll_->last;
167 ffewhere_root_line_.first = ffewhere_root_line_.last
175 ffewhere_root_ll_->first = ffewhere_root_ll_->last
245 ffewhereLine wl = ffewhere_root_line_.last;
263 wl->previous = ffewhere_root_line_.last;
302 wl->previous = ffewhere_root_line_.last;
/openbsd-current/usr.bin/cdio/
H A Dcddb.c182 char *last, *host; local
186 last = strrchr(host_port, ':');
187 if (last != 0 && !(last != host && last[-1] == ':')) {
188 port = last + 1;
189 host = malloc(last - host_port + 1);
192 memcpy(host, host_port, last-host_port);
193 host[last-host_port] = 0;
/openbsd-current/lib/libcurses/base/
H A Dnew_pair.c198 colorpair_t *last; local
204 last = &(sp->_color_pairs[pair]);
206 if (last->mode > cpFREE &&
207 (last->fg != next->fg || last->bg != next->bg)) {
209 tdelete(last, &sp->_ordered_pairs, compare_data);
212 used = (last->mode != cpFREE);
216 *last = *next;
217 tsearch(last, &sp->_ordered_pairs, compare_data);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Demit-rtl.c2313 /* Install new pointers to the first and last insns in the chain.
2314 Also, set cur_insn_uid to one higher than the last in use.
2318 set_new_first_and_last_insn (first, last)
2319 rtx first, last;
2324 last_insn = last;
2337 set_new_first_and_last_label_num (first, last)
2338 int first, last;
2342 last_label_num = last;
2345 /* Set the last label number found in the current function.
2349 set_new_last_label_num (last)
4009 rtx last = before; local
4060 rtx insn, last = NULL_RTX; local
4107 rtx last = NULL_RTX, insn; local
4205 rtx last; local
4244 rtx last = after; local
4309 rtx last; local
4349 rtx last; local
4462 rtx last = emit_insn_after (pattern, after); local
4482 rtx last = emit_jump_insn_after (pattern, after); local
4502 rtx last = emit_call_insn_after (pattern, after); local
4523 rtx last = emit_insn_before (pattern, before); local
4546 rtx last = last_insn; local
4592 rtx last = NULL_RTX, insn; local
4933 rtx last; local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h89 SymbolTableListTraits &L2, iterator first, iterator last) {
105 for (; first != last; ++first) {
117 for (; first != last; ++first)
88 transferNodesFromList( SymbolTableListTraits &L2, iterator first, iterator last) argument
/openbsd-current/lib/libskey/
H A Dskeylogin.c96 char *cp, filename[PATH_MAX], *last; local
149 if ((mp->logname = strtok_r(mp->buf, " \t\n\r", &last)) == NULL ||
152 if ((cp = strtok_r(NULL, " \t\n\r", &last)) == NULL)
156 if ((cp = strtok_r(NULL, " \t\n\r", &last)) == NULL)
161 if ((mp->seed = strtok_r(NULL, " \t\n\r", &last)) == NULL)
163 if ((mp->val = strtok_r(NULL, " \t\n\r", &last)) == NULL)
252 char filekey[SKEY_BINKEY_SIZE], *cp, *last; local
283 if ((mp->logname = strtok_r(mp->buf, " \t\r\n", &last)) == NULL)
285 if ((cp = strtok_r(NULL, " \t\r\n", &last)) == NULL)
287 if ((cp = strtok_r(NULL, " \t\r\n", &last))
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Demit-rtl.c2080 /* Install new pointers to the first and last insns in the chain.
2081 Also, set cur_insn_uid to one higher than the last in use.
2085 set_new_first_and_last_insn (rtx first, rtx last)
2090 last_insn = last;
2695 /* Return the last insn emitted in current sequence or current function. */
2703 /* Specify a new insn as the last in the chain. */
2712 /* Return the last insn emitted, even if it is in a sequence now pushed. */
2721 if (stack->last != 0)
2722 return stack->last;
2752 /* Return the last nonnot
2075 set_new_first_and_last_insn(rtx first, rtx last) argument
3103 try_split(rtx pat, rtx trial, int last) argument
3713 rtx last = before; local
3760 rtx insn, last = NULL_RTX; local
3803 rtx last = NULL_RTX, insn; local
3895 rtx last; local
3933 rtx last = after; local
3989 rtx last; local
4025 rtx last; local
4128 rtx last = emit_insn_after_noloc (pattern, after); local
4159 rtx last = emit_jump_insn_after_noloc (pattern, after); local
4190 rtx last = emit_call_insn_after_noloc (pattern, after); local
4222 rtx last = emit_insn_before_noloc (pattern, before); local
4254 rtx last = emit_jump_insn_before_noloc (pattern, before); local
4286 rtx last = emit_call_insn_before_noloc (pattern, before); local
4322 rtx last = last_insn; local
4367 rtx last = NULL_RTX, insn; local
4701 rtx last; local
[all...]

Completed in 178 milliseconds

1234567891011>>