HomeSort by: relevance | last modified time | path
    Searched defs:IN_RANGE (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/aarch64/aarch64/
aarch64_machdep.c 647 #define IN_RANGE(addr,sta,end) (((sta) <= (addr)) && ((addr) < (end)))
650 if (IN_RANGE(v, kernstart, kernend)) {
654 } else if (IN_RANGE(v, AARCH64_DIRECTMAP_START, AARCH64_DIRECTMAP_END)) {
662 if (IN_RANGE(pa, kernstart_phys,
pmap.c 289 #define IN_RANGE(va, sta, end) (((sta) <= (va)) && ((va) < (end)))
292 IN_RANGE((va), AARCH64_DIRECTMAP_START, AARCH64_DIRECTMAP_END)
295 IN_RANGE((va), EFI_RUNTIME_VA, EFI_RUNTIME_VA + EFI_RUNTIME_SIZE)
298 #define IN_MODULE_VA(va) IN_RANGE((va), module_start, module_end)
306 (IN_RANGE((va), VM_MIN_KERNEL_ADDRESS, VM_MAX_KERNEL_ADDRESS) || \
326 KASSERTMSG(IN_RANGE((va), \
729 if (IN_RANGE(va, (vaddr_t)__kernel_text, (vaddr_t)_end)) {
1220 KDASSERT(IN_RANGE(va, VM_MIN_KERNEL_ADDRESS, VM_MAX_KERNEL_ADDRESS));
2408 !(IN_RANGE(va, VM_MIN_KERNEL_ADDRESS, VM_MAX_KERNEL_ADDRESS))) ||
2410 !(IN_RANGE(va, VM_MIN_ADDRESS, VM_MAX_ADDRESS))))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
system.h 326 #define IN_RANGE(VALUE, LOWER, UPPER) \
  /src/external/gpl3/gcc.old/dist/gcc/
system.h 326 #define IN_RANGE(VALUE, LOWER, UPPER) \
  /src/external/gpl3/binutils/dist/gas/config/
bfin-parse.c 274 #define IN_RANGE(x, low, high) \
6154 && IN_RANGE ((yyvsp[-5].expr), 0, 7)
6156 && IN_RANGE ((yyvsp[-1].expr), 0, 5))
6173 if ((yyvsp[-3].reg).regno == REG_R7 && IN_RANGE ((yyvsp[-1].expr), 0, 7))
6178 else if ((yyvsp[-3].reg).regno == REG_P5 && IN_RANGE ((yyvsp[-1].expr), 0, 6))
6194 if ((yyvsp[-9].reg).regno == REG_R7 && (IN_RANGE ((yyvsp[-7].expr), 0, 7))
6195 && (yyvsp[-5].reg).regno == REG_P5 && (IN_RANGE ((yyvsp[-3].expr), 0, 6)))
6212 if ((yyvsp[-5].reg).regno == REG_R7 && IN_RANGE ((yyvsp[-3].expr), 0, 7))
6217 else if ((yyvsp[-5].reg).regno == REG_P5 && IN_RANGE ((yyvsp[-3].expr), 0, 6))
  /src/external/gpl3/binutils.old/dist/gas/config/
bfin-parse.c 274 #define IN_RANGE(x, low, high) \
6154 && IN_RANGE ((yyvsp[-5].expr), 0, 7)
6156 && IN_RANGE ((yyvsp[-1].expr), 0, 5))
6173 if ((yyvsp[-3].reg).regno == REG_R7 && IN_RANGE ((yyvsp[-1].expr), 0, 7))
6178 else if ((yyvsp[-3].reg).regno == REG_P5 && IN_RANGE ((yyvsp[-1].expr), 0, 6))
6194 if ((yyvsp[-9].reg).regno == REG_R7 && (IN_RANGE ((yyvsp[-7].expr), 0, 7))
6195 && (yyvsp[-5].reg).regno == REG_P5 && (IN_RANGE ((yyvsp[-3].expr), 0, 6)))
6212 if ((yyvsp[-5].reg).regno == REG_R7 && IN_RANGE ((yyvsp[-3].expr), 0, 7))
6217 else if ((yyvsp[-5].reg).regno == REG_P5 && IN_RANGE ((yyvsp[-3].expr), 0, 6))
  /src/external/gpl3/binutils.old/dist/binutils/
readelf.c 15095 #define IN_RANGE(START,END,ADDR,NELEM) \
15259 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
15319 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
15372 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
15382 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
16350 if (!IN_RANGE (start, end, rloc, reloc_size))

Completed in 57 milliseconds