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             12156 src/dps8/dps8_eis.c 
last             12164 src/dps8/dps8_eis.c 
last             12170 src/dps8/dps8_eis.c 
last             12171 src/dps8/dps8_eis.c 
last             12194 src/dps8/dps8_eis.c 
last             12195 src/dps8/dps8_eis.c 
last             12208 src/dps8/dps8_eis.c 
last              486 src/dps8/libtelnet.c         char *c, *last, *out;
last              562 src/dps8/libtelnet.c                 last = out;
last              581 src/dps8/libtelnet.c                 values[eindex].var   = last;
last              588 src/dps8/libtelnet.c                         last = out;
last              606 src/dps8/libtelnet.c                         values[eindex].value = last;
last             3883 src/simh/sim_tmxr.c int32 i, j, low, last;
last             3895 src/simh/sim_tmxr.c     low = last = *iptr++;                               /* set first line value */
last             3903 src/simh/sim_tmxr.c         if (i != last + 1) {                            /* end of a range? */
last             3912 src/simh/sim_tmxr.c             if (low == last)                            /* range null? */
last             3913 src/simh/sim_tmxr.c                 fprintf (st, "%d", last);               /* print single line value */
last             3916 src/simh/sim_tmxr.c                 fprintf (st, "%d-%d", low, last);       /* print start and end line */
last             3921 src/simh/sim_tmxr.c         last = i;                                       /* note value for range check */