/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 | 618 extent_alloc_subregion1(struct extent *ex, u_long substart, u_long subend, 640 (subend > ex->ex_end) || (subend < ex->ex_start)) { 643 printf("extent_alloc_subregion: substart 0x%lx, subend 0x%lx\n", 644 substart, subend); 647 if ((size < 1) || ((size - 1) > (subend - substart))) { 650 printf("extent_alloc_subregion: substart 0x%lx, subend 0x%lx\n", 651 substart, subend); 712 * or the start of a region past the subend. 758 * 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 in typeref:typename:unsigned char[4096]** 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 in typeref:typename:unsigned char[]** 74 #define SB_TERM() { subend = subpointer; SB_CLEAR(); } 81 #define SB_EOF() (subpointer >= subend) 82 #define SB_LEN() (subend - subpointer)
|