| /netbsd-src/external/bsd/mdocml/dist/ |
| H A D | dbm_map.c | 52 static int32_t max_offset; variable 101 max_offset = be32toh(*dbm_getint(3)) + sizeof(int32_t); in dbm_map() 102 if (st.st_size != max_offset) { in dbm_map() 104 fname, (long long)st.st_size, max_offset); in dbm_map() 150 if (offset >= max_offset) { in dbm_get() 152 offset, max_offset); in dbm_get()
|
| /netbsd-src/external/gpl3/gcc/dist/libbacktrace/ |
| H A D | pecoff.c | 608 off_t max_offset; in coff_add() local 816 max_offset = 0; in coff_add() 826 if (end > max_offset) in coff_add() 827 max_offset = end; in coff_add() 829 if (min_offset == 0 || max_offset == 0) in coff_add() 838 max_offset - min_offset, in coff_add()
|
| H A D | xcoff.c | 1089 off_t max_offset; in xcoff_add() local 1240 max_offset = 0; in xcoff_add() 1274 if (end > max_offset) in xcoff_add() 1275 max_offset = end; in xcoff_add() 1279 if (min_offset != 0 && max_offset != 0) in xcoff_add() 1282 max_offset - min_offset, in xcoff_add()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libbacktrace/ |
| H A D | pecoff.c | 605 off_t max_offset; in coff_add() local 808 max_offset = 0; in coff_add() 818 if (end > max_offset) in coff_add() 819 max_offset = end; in coff_add() 821 if (min_offset == 0 || max_offset == 0) in coff_add() 830 max_offset - min_offset, in coff_add()
|
| H A D | xcoff.c | 1090 off_t max_offset; in xcoff_add() local 1233 max_offset = 0; in xcoff_add() 1267 if (end > max_offset) in xcoff_add() 1268 max_offset = end; in xcoff_add() 1272 if (min_offset != 0 && max_offset != 0) in xcoff_add() 1275 max_offset - min_offset, in xcoff_add()
|
| H A D | elf.c | 2661 off_t max_offset; in elf_add() local 3133 max_offset = 0; in elf_add() 3143 if (end > max_offset) in elf_add() 3144 max_offset = end; in elf_add() 3151 if (end > max_offset) in elf_add() 3152 max_offset = end; in elf_add() 3155 if (min_offset == 0 || max_offset == 0) in elf_add() 3163 max_offset - min_offset, in elf_add()
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/io/ |
| H A D | unit.c | 100 gfc_offset max_offset; variable 600 if (sizeof (max_offset) == 8) in init_units() 602 max_offset = GFC_INTEGER_8_HUGE; in init_units() 609 default_recl = max_offset & ~(1LL<<31); in init_units() 611 else if (sizeof (max_offset) == 4) in init_units() 612 max_offset = default_recl = GFC_INTEGER_4_HUGE; in init_units()
|
| H A D | open.c | 637 u->recl_subrecord = max_offset - 16; in new_unit() 652 u->maxrec = max_offset / u->recl; in new_unit() 656 u->maxrec = max_offset; in new_unit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgfortran/io/ |
| H A D | unit.c | 100 gfc_offset max_offset; variable 601 if (sizeof (max_offset) == 8) in init_units() 603 max_offset = GFC_INTEGER_8_HUGE; in init_units() 610 default_recl = max_offset & ~(1LL<<31); in init_units() 612 else if (sizeof (max_offset) == 4) in init_units() 613 max_offset = default_recl = GFC_INTEGER_4_HUGE; in init_units()
|
| H A D | open.c | 615 u->recl_subrecord = max_offset - 16; in new_unit() 630 u->maxrec = max_offset / u->recl; in new_unit() 634 u->maxrec = max_offset; in new_unit()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| H A D | zfs_context.h | 126 #ifdef max_offset 127 #undef max_offset
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | gimple-loop-versioning.cc | 200 HOST_WIDE_INT min_offset, max_offset; member in __anonf27950b40111::address_info 445 address.min_offset, address.max_offset - 1); in dump_address_info() 841 unsigned HOST_WIDE_INT access_size = address.max_offset - address.min_offset; in analyze_stride() 1281 address->max_offset = address->min_offset + type_size; in record_address_fragment() 1312 if (old_address->max_offset < address->max_offset) in record_address_fragment() 1313 old_address->max_offset = address->max_offset; in record_address_fragment()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | gimple-loop-versioning.cc | 202 HOST_WIDE_INT min_offset, max_offset; member in __anon21b817810111::address_info 451 address.min_offset, address.max_offset - 1); in dump_address_info() 862 unsigned HOST_WIDE_INT access_size = address.max_offset - address.min_offset; in analyze_stride() 1302 address->max_offset = address->min_offset + type_size; in record_address_fragment() 1333 if (old_address->max_offset < address->max_offset) in record_address_fragment() 1334 old_address->max_offset = address->max_offset; in record_address_fragment()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
| H A D | i915_vma.c | 524 unsigned int n, max_offset; in igt_vma_rotate_remap() local 526 max_offset = max(a->stride * a->height, in igt_vma_rotate_remap() 528 GEM_BUG_ON(max_offset > max_pages); in igt_vma_rotate_remap() 529 max_offset = max_pages - max_offset; in igt_vma_rotate_remap() 535 for_each_prime_number_from(view.rotated.plane[0].offset, 0, max_offset) { in igt_vma_rotate_remap() 536 for_each_prime_number_from(view.rotated.plane[1].offset, 0, max_offset) { in igt_vma_rotate_remap()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/radeon/ |
| H A D | radeon_object.c | 335 int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset, in radeon_bo_pin_restricted() argument 349 if (max_offset != 0) { in radeon_bo_pin_restricted() 356 WARN_ON_ONCE(max_offset < in radeon_bo_pin_restricted() 372 (!max_offset || max_offset > bo->rdev->mc.visible_vram_size)) in radeon_bo_pin_restricted() 376 bo->placements[i].lpfn = max_offset >> PAGE_SHIFT; in radeon_bo_pin_restricted()
|
| H A D | radeon_object.h | 139 u64 max_offset, u64 *gpu_addr);
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/v850/ |
| H A D | v850.cc | 993 int max_offset = 0; in ep_memory_offset() local 999 max_offset = (1 << 4); in ep_memory_offset() 1002 max_offset = (1 << 4); in ep_memory_offset() 1004 max_offset = (1 << 7); in ep_memory_offset() 1009 max_offset = (1 << 5); in ep_memory_offset() 1012 max_offset = (1 << 5); in ep_memory_offset() 1014 max_offset = (1 << 8); in ep_memory_offset() 1019 max_offset = (1 << 8); in ep_memory_offset() 1026 return max_offset; in ep_memory_offset() 1035 int max_offset; in ep_memory_operand() local [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/v850/ |
| H A D | v850.c | 993 int max_offset = 0; in ep_memory_offset() local 999 max_offset = (1 << 4); in ep_memory_offset() 1002 max_offset = (1 << 4); in ep_memory_offset() 1004 max_offset = (1 << 7); in ep_memory_offset() 1009 max_offset = (1 << 5); in ep_memory_offset() 1012 max_offset = (1 << 5); in ep_memory_offset() 1014 max_offset = (1 << 8); in ep_memory_offset() 1019 max_offset = (1 << 8); in ep_memory_offset() 1026 return max_offset; in ep_memory_offset() 1035 int max_offset; in ep_memory_operand() local [all …]
|
| /netbsd-src/usr.sbin/installboot/ |
| H A D | evboards.c | 1870 off_t max_offset = 0; in evb_uboot_setboot() local 1923 if (max_offset < this_max) in evb_uboot_setboot() 1924 max_offset = this_max; in evb_uboot_setboot() 1933 off_t rounded_max_offset = (off_t)(max_offset / params->sectorsize) * in evb_uboot_setboot() 1935 if (rounded_max_offset != max_offset) in evb_uboot_setboot() 1940 (long long)max_offset, (long long)rounded_max_offset); in evb_uboot_setboot()
|
| /netbsd-src/sys/dev/isa/ |
| H A D | nca_isa.c | 169 bus_size_t max_offset, struct nca_isa_probe_data *epd) in nca_isa_find() argument 191 for (base_offset = 0; base_offset < max_offset; base_offset += 0x08) { in nca_isa_find()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| H A D | amdgpu_object.c | 893 u64 min_offset, u64 max_offset) in amdgpu_bo_pin_restricted() argument 902 if (WARN_ON_ONCE(min_offset > max_offset)) in amdgpu_bo_pin_restricted() 926 if (max_offset != 0) { in amdgpu_bo_pin_restricted() 928 WARN_ON_ONCE(max_offset < in amdgpu_bo_pin_restricted() 944 lpfn = max_offset >> PAGE_SHIFT; in amdgpu_bo_pin_restricted()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/ft32/ |
| H A D | ft32.c | 859 int max_offset = TARGET_FT32B ? 16384 : 128; in ft32_addr_space_legitimate_address_p() local 870 && (-max_offset <= INTVAL (op2)) in ft32_addr_space_legitimate_address_p() 871 && (INTVAL (op2) < max_offset) in ft32_addr_space_legitimate_address_p()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/ft32/ |
| H A D | ft32.cc | 859 int max_offset = TARGET_FT32B ? 16384 : 128; in ft32_addr_space_legitimate_address_p() local 870 && (-max_offset <= INTVAL (op2)) in ft32_addr_space_legitimate_address_p() 871 && (INTVAL (op2) < max_offset) in ft32_addr_space_legitimate_address_p()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | vdev_cache.c | 348 uint64_t max_offset = P2ROUNDUP(io_end, VCBS); in vdev_cache_write() local 361 while (ve != NULL && ve->ve_offset < max_offset) { in vdev_cache_write()
|
| /netbsd-src/external/bsd/nsd/dist/ |
| H A D | query.h | 185 void query_clear_dname_offsets(struct query *query, size_t max_offset);
|