HomeSort by: relevance | last modified time | path
    Searched defs:boundary (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/usr.sbin/mrouted/
cfparse.y 86 %token METRIC THRESHOLD RATE_LIMIT BOUNDARY NETMASK ALTNET
95 %type <addrmask> bound boundary addrmask
203 | NAME STRING boundary { if (numbounds >= MAXBOUNDS) {
317 | BOUNDARY bound {
327 warn("Boundary spec %s/%d has host bits set",
333 | BOUNDARY {
335 warn("Expected boundary spec after boundary keyword, ignored");
362 bound : boundary { $$ = $1; }
372 fatal("Invalid boundary name %s",$1)
377 boundary : ADDRMASK { label
    [all...]
cfparse.y 86 %token METRIC THRESHOLD RATE_LIMIT BOUNDARY NETMASK ALTNET
95 %type <addrmask> bound boundary addrmask
203 | NAME STRING boundary { if (numbounds >= MAXBOUNDS) {
317 | BOUNDARY bound {
327 warn("Boundary spec %s/%d has host bits set",
333 | BOUNDARY {
335 warn("Expected boundary spec after boundary keyword, ignored");
362 bound : boundary { $$ = $1; }
372 fatal("Invalid boundary name %s",$1)
377 boundary : ADDRMASK { label
    [all...]
cfparse.y 86 %token METRIC THRESHOLD RATE_LIMIT BOUNDARY NETMASK ALTNET
95 %type <addrmask> bound boundary addrmask
203 | NAME STRING boundary { if (numbounds >= MAXBOUNDS) {
317 | BOUNDARY bound {
327 warn("Boundary spec %s/%d has host bits set",
333 | BOUNDARY {
335 warn("Expected boundary spec after boundary keyword, ignored");
362 bound : boundary { $$ = $1; }
372 fatal("Invalid boundary name %s",$1)
377 boundary : ADDRMASK { label
    [all...]
  /src/sys/arch/x68k/stand/boot/
dp8390.c 115 * Set current page pointer to one page after the boundary pointer, as
206 u_char boundary, current; local in function:EtherReceive
227 /* Set NIC to page 0 registers to update boundary register. */
290 * Update NIC boundary pointer - being careful to keep it one
293 boundary = next_packet - 1;
294 if (boundary < rec_page_start)
295 boundary = rec_page_stop - 1;
296 NIC_PUT(ED_P0_BNRY, boundary);
dp8390.c 115 * Set current page pointer to one page after the boundary pointer, as
206 u_char boundary, current; local in function:EtherReceive
227 /* Set NIC to page 0 registers to update boundary register. */
290 * Update NIC boundary pointer - being careful to keep it one
293 boundary = next_packet - 1;
294 if (boundary < rec_page_start)
295 boundary = rec_page_stop - 1;
296 NIC_PUT(ED_P0_BNRY, boundary);
dp8390.c 115 * Set current page pointer to one page after the boundary pointer, as
206 u_char boundary, current; local in function:EtherReceive
227 /* Set NIC to page 0 registers to update boundary register. */
290 * Update NIC boundary pointer - being careful to keep it one
293 boundary = next_packet - 1;
294 if (boundary < rec_page_start)
295 boundary = rec_page_stop - 1;
296 NIC_PUT(ED_P0_BNRY, boundary);
  /src/sys/dev/cardbus/
rbus.c 73 bus_addr_t boundary, search_addr; local in function:rbus_space_alloc_subregion
119 boundary = decodesize > align ? decodesize : align;
121 search_addr = (substart & ~(boundary - 1)) + addr;
124 search_addr += boundary;
129 search_addr += boundary) {
rbus.c 73 bus_addr_t boundary, search_addr; local in function:rbus_space_alloc_subregion
119 boundary = decodesize > align ? decodesize : align;
121 search_addr = (substart & ~(boundary - 1)) + addr;
124 search_addr += boundary;
129 search_addr += boundary) {
rbus.c 73 bus_addr_t boundary, search_addr; local in function:rbus_space_alloc_subregion
119 boundary = decodesize > align ? decodesize : align;
121 search_addr = (substart & ~(boundary - 1)) + addr;
124 search_addr += boundary;
129 search_addr += boundary) {
  /src/sys/arch/alpha/common/
sgmap_typedep.c 74 bus_size_t sgvalen, extra_sgvalen, boundary, alignment; local in function:__C
118 boundary = map->_dm_boundary;
122 * their own boundary constraint.
124 if (__predict_false(boundary != 0 && buflen > boundary)) {
141 * If we have a boundary constraint, it's possible to end up in
142 * a situation where sgvalen > boundary if the caller's buffer
146 if (__predict_false(boundary != 0 && boundary < sgvalen)) {
157 extra_sgvalen = sgvalen - boundary;
    [all...]
sgmap_typedep.c 74 bus_size_t sgvalen, extra_sgvalen, boundary, alignment; local in function:__C
118 boundary = map->_dm_boundary;
122 * their own boundary constraint.
124 if (__predict_false(boundary != 0 && buflen > boundary)) {
141 * If we have a boundary constraint, it's possible to end up in
142 * a situation where sgvalen > boundary if the caller's buffer
146 if (__predict_false(boundary != 0 && boundary < sgvalen)) {
157 extra_sgvalen = sgvalen - boundary;
    [all...]
sgmap_typedep.c 74 bus_size_t sgvalen, extra_sgvalen, boundary, alignment; local in function:__C
118 boundary = map->_dm_boundary;
122 * their own boundary constraint.
124 if (__predict_false(boundary != 0 && buflen > boundary)) {
141 * If we have a boundary constraint, it's possible to end up in
142 * a situation where sgvalen > boundary if the caller's buffer
146 if (__predict_false(boundary != 0 && boundary < sgvalen)) {
157 extra_sgvalen = sgvalen - boundary;
    [all...]
  /src/sys/dev/raidframe/
rf_paritylog.c 273 int boundary, offset = 0; local in function:rf_CreateParityLogData
304 /* disk address does not cross a region boundary */
312 /* disk address crosses a region boundary */
314 boundary = 0;
315 while (data->regionID == rf_MapRegionIDParityLogging(raidPtr, diskAddress->startSector + boundary))
316 boundary++;
318 /* enter data before the boundary */
320 data->diskAddress.numSector = boundary;
322 offset += boundary;
325 diskAddress->startSector += boundary;
    [all...]
rf_paritylog.c 273 int boundary, offset = 0; local in function:rf_CreateParityLogData
304 /* disk address does not cross a region boundary */
312 /* disk address crosses a region boundary */
314 boundary = 0;
315 while (data->regionID == rf_MapRegionIDParityLogging(raidPtr, diskAddress->startSector + boundary))
316 boundary++;
318 /* enter data before the boundary */
320 data->diskAddress.numSector = boundary;
322 offset += boundary;
325 diskAddress->startSector += boundary;
    [all...]
rf_paritylog.c 273 int boundary, offset = 0; local in function:rf_CreateParityLogData
304 /* disk address does not cross a region boundary */
312 /* disk address crosses a region boundary */
314 boundary = 0;
315 while (data->regionID == rf_MapRegionIDParityLogging(raidPtr, diskAddress->startSector + boundary))
316 boundary++;
318 /* enter data before the boundary */
320 data->diskAddress.numSector = boundary;
322 offset += boundary;
325 diskAddress->startSector += boundary;
    [all...]
  /src/sys/dev/pci/
btvmeii.c 293 unsigned long boundary, maplen; local in function:b3_2706_map_vme
315 boundary = (wnd & 3) ? 64*1024 : 4*1024;
318 vmebase = vmeaddr & ~(boundary - 1);
320 vmeend = (vmeaddr + len - 1) & ~(boundary - 1);
322 maplen = vmeend - vmebase + boundary;
326 boundary, /* align */
328 0, /* boundary */
btvmeii.c 293 unsigned long boundary, maplen; local in function:b3_2706_map_vme
315 boundary = (wnd & 3) ? 64*1024 : 4*1024;
318 vmebase = vmeaddr & ~(boundary - 1);
320 vmeend = (vmeaddr + len - 1) & ~(boundary - 1);
322 maplen = vmeend - vmebase + boundary;
326 boundary, /* align */
328 0, /* boundary */
btvmeii.c 293 unsigned long boundary, maplen; local in function:b3_2706_map_vme
315 boundary = (wnd & 3) ? 64*1024 : 4*1024;
318 vmebase = vmeaddr & ~(boundary - 1);
320 vmeend = (vmeaddr + len - 1) & ~(boundary - 1);
322 maplen = vmeend - vmebase + boundary;
326 boundary, /* align */
328 0, /* boundary */
  /src/sys/dev/ic/
dp8390.c 351 * Set current page pointer to one page after the boundary pointer, as
508 uint8_t boundary, current; local in function:dp8390_rint
530 /* Set NIC to page 0 registers to update boundary register. */
602 * Update NIC boundary pointer - being careful to keep it one
605 boundary = sc->next_packet - 1;
606 if (boundary < sc->rec_page_start)
607 boundary = sc->rec_page_stop - 1;
608 NIC_PUT(regt, regh, ED_P0_BNRY, boundary);
dp8390.c 351 * Set current page pointer to one page after the boundary pointer, as
508 uint8_t boundary, current; local in function:dp8390_rint
530 /* Set NIC to page 0 registers to update boundary register. */
602 * Update NIC boundary pointer - being careful to keep it one
605 boundary = sc->next_packet - 1;
606 if (boundary < sc->rec_page_start)
607 boundary = sc->rec_page_stop - 1;
608 NIC_PUT(regt, regh, ED_P0_BNRY, boundary);
dp8390.c 351 * Set current page pointer to one page after the boundary pointer, as
508 uint8_t boundary, current; local in function:dp8390_rint
530 /* Set NIC to page 0 registers to update boundary register. */
602 * Update NIC boundary pointer - being careful to keep it one
605 boundary = sc->next_packet - 1;
606 if (boundary < sc->rec_page_start)
607 boundary = sc->rec_page_stop - 1;
608 NIC_PUT(regt, regh, ED_P0_BNRY, boundary);
  /src/sys/dev/isa/
isadma.c 630 int error, boundary, rsegs; local in function:_isa_dmamem_alloc
637 boundary = (chan & 4) ? (1 << 17) : (1 << 16);
641 error = bus_dmamem_alloc(ids->ids_dmat, size, PAGE_SIZE, boundary,
isadma.c 630 int error, boundary, rsegs; local in function:_isa_dmamem_alloc
637 boundary = (chan & 4) ? (1 << 17) : (1 << 16);
641 error = bus_dmamem_alloc(ids->ids_dmat, size, PAGE_SIZE, boundary,
isadma.c 630 int error, boundary, rsegs; local in function:_isa_dmamem_alloc
637 boundary = (chan & 4) ? (1 << 17) : (1 << 16);
641 error = bus_dmamem_alloc(ids->ids_dmat, size, PAGE_SIZE, boundary,
  /src/sys/dev/usb/
if_axen.c 852 * as each packet will be aligned 8byte boundary,
868 u_int length, boundary; local in function:axen_uno_tx_prepare
877 boundary = 4096;
880 boundary = 512;
883 boundary = 64;
891 if ((length % boundary) == 0) {
892 DPRINTF(("%s: boundary hit\n", device_xname(un->un_dev)));

Completed in 46 milliseconds

1 2 3