end               815 src/dps8/dps8_cpu.c     char * end;
end               816 src/dps8/dps8_cpu.c     n = strtol (cptr, & end, 0);
end               817 src/dps8/dps8_cpu.c     if (* end != '=')
end               822 src/dps8/dps8_cpu.c     s = strtol (end + 1, & end, 8);
end               823 src/dps8/dps8_cpu.c     if (* end != ':')
end               828 src/dps8/dps8_cpu.c     o = strtol (end + 1, & end, 8);
end               829 src/dps8/dps8_cpu.c     if (* end != '=')
end               834 src/dps8/dps8_cpu.c     t = strtol (end + 1, & end, 0);
end               835 src/dps8/dps8_cpu.c     if (* end != 0)
end              3738 src/dps8/dps8_cpu.c     char * end;
end              3739 src/dps8/dps8_cpu.c     long int n = strtol (buf, & end, 0);
end              3740 src/dps8/dps8_cpu.c     if (* end || n < 0 || n >= MEMSIZE)
end              2092 src/dps8/dps8_fnp2.c         char * end;
end              2093 src/dps8/dps8_fnp2.c         unsigned long cidr = strtoul (tok, & end, 10);
end              2094 src/dps8/dps8_fnp2.c         if (tok == end || * end != 0 || cidr > 32)
end              2417 src/dps8/dps8_fnp2.c 
end              2418 src/dps8/dps8_fnp2.c 
end              2419 src/dps8/dps8_fnp2.c 
end               155 src/dps8/udplib.c     char * end;
end               177 src/dps8/udplib.c     lportno = (int) strtoul (premote, & end, 10);
end               178 src/dps8/udplib.c     if ((* end == ':') && (lportno > 0))
end               182 src/dps8/udplib.c         premote = end + 1;
end               719 src/libsir/src/sirfilesystem.c         const char* end = separator ? separator : cursor + strnlen(cursor, SIR_MAXPATH);
end               720 src/libsir/src/sirfilesystem.c         if (end - cursor > 0) {
end               721 src/libsir/src/sirfilesystem.c             if (*(end - 1) == '/')
end               722 src/libsir/src/sirfilesystem.c                 --end;
end               723 src/libsir/src/sirfilesystem.c             if (((end - cursor) + 1UL + pathlen + 1UL) <= sizeof(tmp)) {
end               724 src/libsir/src/sirfilesystem.c                 (void)memcpy(tmp, cursor, end - cursor);
end               725 src/libsir/src/sirfilesystem.c                 tmp[end - cursor] = '/';
end               726 src/libsir/src/sirfilesystem.c                 (void)memcpy(tmp + (end - cursor) + 1, path, pathlen + 1);
end               958 src/prt2pdf/prt2pdf.c read_u16_be_from_mem (const unsigned char * * p, const unsigned char * end)
end               960 src/prt2pdf/prt2pdf.c   if (* p + 2 > end)
end               975 src/prt2pdf/prt2pdf.c read_u32_be_from_mem (const unsigned char * * p, const unsigned char * end)
end               977 src/prt2pdf/prt2pdf.c   if (* p + 4 > end)
end              1461 src/prt2pdf/prt2pdf.c   const unsigned char * end = p + cff_length;
end              1463 src/prt2pdf/prt2pdf.c   if (p + 4 > end)
end              1469 src/prt2pdf/prt2pdf.c   if (p + 3 > end)
end              1472 src/prt2pdf/prt2pdf.c   uint16_t count = read_u16_be_from_mem (& p, end);
end              1484 src/prt2pdf/prt2pdf.c   if (offsets_end > end)
end              1493 src/prt2pdf/prt2pdf.c           if (p >= end)
end              1517 src/prt2pdf/prt2pdf.c   if (name_ptr + len > end)
end              1746 src/prt2pdf/prt2pdf.c   const unsigned char * end = font_data + font_size;
end              1749 src/prt2pdf/prt2pdf.c   uint16_t numTables = read_u16_be_from_mem (& p, end);
end              1764 src/prt2pdf/prt2pdf.c       if (p + 16 > end)
end              1771 src/prt2pdf/prt2pdf.c       uint32_t offset = read_u32_be_from_mem (& p, end);
end              1772 src/prt2pdf/prt2pdf.c       uint32_t length = read_u32_be_from_mem (& p, end);
end              2062 src/prt2pdf/prt2pdf.c   const unsigned char * end = font_data + font_size;
end              2068 src/prt2pdf/prt2pdf.c   uint16_t num_tables = read_u16_be_from_mem (& p, end);
end              2081 src/prt2pdf/prt2pdf.c       if (p + 16 > end)
end              2087 src/prt2pdf/prt2pdf.c       uint32_t offset = read_u32_be_from_mem (& p, end);
end              2088 src/prt2pdf/prt2pdf.c       (void)read_u32_be_from_mem (& p, end); /* length */
end              2104 src/prt2pdf/prt2pdf.c       x_min = (int16_t)read_u16_be_from_mem (& head_p, end);
end              2105 src/prt2pdf/prt2pdf.c       y_min = (int16_t)read_u16_be_from_mem (& head_p, end);
end              2106 src/prt2pdf/prt2pdf.c       x_max = (int16_t)read_u16_be_from_mem (& head_p, end);
end              2107 src/prt2pdf/prt2pdf.c       y_max = (int16_t)read_u16_be_from_mem (& head_p, end);
end              2113 src/prt2pdf/prt2pdf.c       num_h_metrics = read_u16_be_from_mem (& hhea_p, end);
end              2127 src/prt2pdf/prt2pdf.c               advance_width = read_u16_be_from_mem (& hmtx_p, end);
end              2128 src/prt2pdf/prt2pdf.c               (void)read_u16_be_from_mem (& hmtx_p, end); /* lsb */
end               455 src/punutil/cardutil.c       char * end = buffer + strlen (buffer) - 1;
end               457 src/punutil/cardutil.c       while (dot < end && '0' == * end)
end               458 src/punutil/cardutil.c         * end-- = '\0';
end              3584 src/punutil/miniz.c         mz_uint32 start, end;
end              3611 src/punutil/miniz.c         end = size - 1;
end              3612 src/punutil/miniz.c         while (end > 0)
end              3615 src/punutil/miniz.c             MZ_SWAP_UINT32(pIndices[end], pIndices[0]);
end              3618 src/punutil/miniz.c                 if ((child = (root << 1U) + 1U) >= end)
end              3620 src/punutil/miniz.c                 child += (((child + 1U) < end) && mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[child], pIndices[child + 1U]));
end              3626 src/punutil/miniz.c             end--;
end              10916 src/simh/scp.c char *end;
end              11101 src/simh/scp.c                 end = vstrings[n-1];            /* Check for True */
end              11102 src/simh/scp.c                 if (!end || !(toupper (*end) == 'T' || *end == '1')) {