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

  /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...]
  /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);
  /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) {
  /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...]
  /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...]
  /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 */
eso.c 399 * if the latter's mapping base address is aligned on a 1K boundary.
1471 size_t boundary, int direction, struct eso_dma *ed)
1477 error = bus_dmamem_alloc(ed->ed_dmat, ed->ed_size, align, boundary,
1540 size_t boundary; local in function:eso_allocm
1548 * register can't roll over a 64K address boundary, so we have to
1550 * controller needs a 1M address boundary.
1553 boundary = 0x10000;
1555 boundary = 0x100000;
1579 error = eso_allocmem(sc, size, 32, boundary, direction, ed);
if_tl.c 594 bus_size_t boundary; local in function:tl_init
644 "tl-dma-page-boundary");
647 boundary
650 boundary = 0;
660 sizeof(struct tl_Tx_list) * TL_NBUF, boundary,
664 ETHER_MIN_TX, boundary, BUS_DMA_WAITOK,
692 1, MCLBYTES, boundary, BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW,
696 TL_NSEG, MCLBYTES, 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);
arn5008.c 2529 uint8_t lovpd, hivpd, boundary; local in function:ar5008_get_pdadcs
2619 boundary = AR9285_PD_GAIN_BOUNDARY_DEFAULT;
2621 boundary = boundaries[nxpdgains - 1];
2624 boundaries[nxpdgains] = 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,
  /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)));
if_axe.c 1131 int length, boundary; local in function:axe_uno_tx_prepare
1138 boundary = (un->un_udev->ud_speed == USB_SPEED_HIGH) ? 512 : 64;
1146 if ((length % boundary) == 0) {
1260 * header on 4 byte boundary is not needed when
  /src/sys/arch/sparc64/dev/
iommu.c 506 * we're not on a cache line boundary (64-bits):
562 bus_size_t align, boundary, len; local in function:iommu_dvmamap_load
592 * A boundary presented to bus_dmamem_alloc() takes precedence
593 * over boundary in the map.
595 if ((boundary = (map->dm_segs[0]._ds_boundary)) == 0)
596 boundary = map->_dm_boundary;
600 * If our segment size is larger than the boundary we need to
607 (sgsize > boundary) ? 0 : boundary,
634 * the boundary
785 bus_size_t boundary, align; local in function:iommu_dvmamap_load_raw
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/selftests/
test-drm_mm.c 335 const struct boundary { struct in function:check_reserve_boundaries
367 pr_err("boundary[%d:%s] failed, count=%u, size=%lld\n",
  /src/sys/arch/hppa/dev/
astro.c 363 bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamap)
371 boundary, flags, &map);
417 bus_size_t align, boundary; local in function:iommu_iomap_load_map
423 boundary = map->_dm_boundary;
451 boundary, /* nocross */
557 bus_size_t boundary, bus_dma_segment_t *segs,
562 return (bus_dmamem_alloc(sc->sc_dmat, size, alignment, boundary,
uturn.c 501 bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamap)
509 boundary, flags, &map);
555 bus_size_t align, boundary; local in function:uturn_iomap_load_map
561 boundary = map->_dm_boundary;
589 boundary, /* nocross */
696 bus_size_t boundary, bus_dma_segment_t *segs,
701 return (bus_dmamem_alloc(sc->sc_dmat, size, alignment, boundary,
  /src/lib/libc/time/
zdump.c 883 time_t t, boundary = hunt(tz, lo, hi, true); local in function:showextrema
885 hi = (SECSPERDAY < hi - boundary
886 ? boundary + SECSPERDAY
888 if (SECSPERDAY < boundary - lo) {
889 lo = boundary - SECSPERDAY;
  /src/usr.bin/mail/
mime_decode.c 81 (void)fprintf(fp, "** boundary: %s\n", XX(mip->mi_boundary));
248 mip->mi_boundary = cparam("boundary", mime_type_field, 0);
325 const char *boundary; local in function:split_multipart
339 boundary = top_mip->mi_boundary;
340 boundary_len = boundary ? strlen(boundary) : 0;
363 strncmp(line + 2, boundary, boundary_len) == 0)) {
369 /* the boundary belongs to the next part */

Completed in 31 milliseconds