HomeSort by: relevance | last modified time | path
    Searched refs:subend (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/dev/cardbus/
rbus.c 70 rbus_space_alloc_subregion(rbus_tag_t rbt, bus_addr_t substart, bus_addr_t subend, bus_addr_t addr, bus_size_t size, bus_addr_t mask, bus_addr_t align, int flags, bus_addr_t *addrp, bus_space_handle_t *bshp)
96 * sanity check: the subregion [substart, subend] should be
100 || subend > rbt->rb_ext->ex_end) {
107 subend, size, align, 0, exflags, &result)) {
128 for (; search_addr + size <= subend;
  /src/tests/kernel/
t_extent.c 62 h_alloc_subregion(u_long substart, u_long subend, u_long size,
69 "%#lx, 0, &result): " fmt, substart, subend, size, alignment, \
72 ret = extent_alloc_subregion1(ex, substart, subend, size,
  /src/sys/kern/
subr_extent.c 622 extent_alloc_subregion1(struct extent *ex, u_long substart, u_long subend,
644 (subend > ex->ex_end) || (subend < ex->ex_start)) {
647 printf("extent_alloc_subregion: substart 0x%lx, subend 0x%lx\n",
648 substart, subend);
651 if ((size < 1) || ((size - 1) > (subend - substart))) {
654 printf("extent_alloc_subregion: substart 0x%lx, subend 0x%lx\n",
655 substart, subend);
716 * or the start of a region past the subend.
762 * If the region pasts the subend, bail out and se
    [all...]
  /src/libexec/telnetd/
state.c 54 unsigned char subbuffer[4096], *subpointer= subbuffer, *subend= subbuffer; variable
57 #define SB_TERM() { subend = subpointer; SB_CLEAR(); }
62 #define SB_EOF() (subpointer >= subend)
63 #define SB_LEN() (subend - subpointer)
  /src/usr.bin/telnet/
telnet.c 72 *subpointer, *subend; /* buffer for sub-options */ variable
74 #define SB_TERM() { subend = subpointer; SB_CLEAR(); }
81 #define SB_EOF() (subpointer >= subend)
82 #define SB_LEN() (subend - subpointer)
  /src/external/gpl3/gcc.old/dist/gcc/
stor-layout.cc 2964 unsigned HOST_WIDE_INT subend = substart + m_bitsize;
2965 if (subend > unit)
2955 unsigned HOST_WIDE_INT subend = substart + m_bitsize; local

Completed in 39 milliseconds