last 438 src/decNumber/decNumber.c const char *last=NULL; // -> last digit of decimal part last 450 src/decNumber/decNumber.c last=c; last 471 src/decNumber/decNumber.c if (last==NULL) { // no digits yet last 510 src/decNumber/decNumber.c last=c; last 563 src/decNumber/decNumber.c for (c=cfirst; c<last; c++, cfirst++) { last 578 src/decNumber/decNumber.c if (dotchar!=NULL && dotchar<last) // non-trailing '.' found? last 579 src/decNumber/decNumber.c exponent-=(last-dotchar); // adjust exponent last 605 src/decNumber/decNumber.c if (c==last) break; // done [never get to trailing '.'] last 618 src/decNumber/decNumber.c for (c=last; c>=cfirst; c--) { // over each character, from least last 99 src/dps8/dps8_decimal.c const word9 *last=bcd+length-1; // -> last byte last 116 src/dps8/dps8_decimal.c for (first=bcd; *first==0 && first <= last;) last 119 src/dps8/dps8_decimal.c digits=(Int)(last-first)+1; // calculate digits .. last 154 src/dps8/dps8_decimal.c for (;last >= bcd;) // forever last 156 src/dps8/dps8_decimal.c nib=(unsigned)(*last & 0x0f); last 175 src/dps8/dps8_decimal.c last--; // ready for next last 12157 src/dps8/dps8_eis.c last 12165 src/dps8/dps8_eis.c last 12171 src/dps8/dps8_eis.c last 12172 src/dps8/dps8_eis.c last 12195 src/dps8/dps8_eis.c last 12196 src/dps8/dps8_eis.c last 12209 src/dps8/dps8_eis.c last 480 src/dps8/libtelnet.c char *c, *last, *out; last 556 src/dps8/libtelnet.c last = out; last 575 src/dps8/libtelnet.c values[eindex].var = last; last 582 src/dps8/libtelnet.c last = out; last 600 src/dps8/libtelnet.c values[eindex].value = last; last 3784 src/simh/sim_tmxr.c int32 i, j, low, last; last 3796 src/simh/sim_tmxr.c low = last = *iptr++; /* set first line value */ last 3804 src/simh/sim_tmxr.c if (i != last + 1) { /* end of a range? */ last 3813 src/simh/sim_tmxr.c if (low == last) /* range null? */ last 3814 src/simh/sim_tmxr.c fprintf (st, "%d", last); /* print single line value */ last 3817 src/simh/sim_tmxr.c fprintf (st, "%d-%d", low, last); /* print start and end line */ last 3822 src/simh/sim_tmxr.c last = i; /* note value for range check */