Searched defs:bound (Results 26 - 33 of 33) sorted by relevance

12

/illumos-gate/usr/src/uts/common/vm/
H A Dvm_usage.c176 * Each bound is either entirely incore, entirely not in core, or
184 pgcnt_t vmb_start; /* page offset in vnode/amp on which bound starts */
185 pgcnt_t vmb_end; /* page offset in vnode/amp on which bound ends */
327 * Save a bound on the free list.
330 vmu_free_bound(vmu_bound_t *bound) argument
332 bound->vmb_next = vmu_data.vmu_free_bounds;
333 bound->vmb_start = 0;
334 bound->vmb_end = 0;
335 bound->vmb_type = 0;
336 vmu_data.vmu_free_bounds = bound;
347 vmu_bound_t *bound; local
577 vmu_bound_t *bound; local
[all...]
/illumos-gate/usr/src/cmd/sgs/dump/common/
H A Ddump.c176 * bound and an upper bound. This function converts
178 * setting the first value as the lower bound, and
179 * the second value as the upper bound. If more values
714 * a lower bound, an upper bound, a boundary condition,
716 * than the bound are invalid. low must be smaller than hi.
721 check_range(int low, int hi, size_t bound, char *filename) argument
723 if (((size_t)low > bound) || (low <= 0)) {
729 if (((size_t)hi > bound) || (h
[all...]
/illumos-gate/usr/src/uts/sun/io/
H A Dsocal.c2491 int bound = 0; local
2519 bound = 1;
2561 if (bound)
4766 int retval, bound = 0; local
4803 bound = 1;
4838 if (bound)
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c695 int bound; member in struct:stream
811 while (s->bound || s->blocks.head != NULL)
1108 int bound; local
1112 bound = 0;
1114 if (s->bound || s->blocks.head == NULL)
1116 s->bound = 1;
1117 bound = 1;
1136 s->bound = 0;
1139 if (!bound && !threads_stop)
1252 if (!s->bound)
[all...]
/illumos-gate/usr/src/cmd/syslogd/
H A Dsyslogd.c3728 * being bound to the network.
3843 struct t_bind bind, *bound; local
3858 bound = (struct t_bind *)t_alloc(Nfd[cnt].fd, T_BIND, T_ADDR);
3862 if (t_bind(Nfd[cnt].fd, &bind, bound) == 0) {
3863 if (same_addr(&bind.addr, &bound->addr)) {
3864 (void) t_free((char *)bound, T_BIND);
3872 (void) t_free((char *)bound, T_BIND);
4002 struct t_bind bind, *bound; local
4053 bound = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR);
4057 if (t_bind(fd, &bind, bound)
[all...]
/illumos-gate/usr/src/uts/common/io/drm/
H A DdrmP.h543 unsigned long bound; /* address */ member in struct:drm_agp_mem
/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcp.c1104 0x00ffffff, /* counter upper bound */
5961 int bound = 0; local
6027 bound++;
6060 if (bound) {
10561 * also be bound. DMA resources are allocated in the process.
10616 /* The buffer allocated is DMA bound. */
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/qlc/
H A Dexioct.h1104 UINT32 bound; member in struct:_EXT_VPORT_INFO

Completed in 115 milliseconds

12