Searched defs:qty (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DMove.java172 private long qty; field in class:QuantityMove
179 * @param qty The quantity of the resources.
181 * @throws IllegalArgumentException if the qty is negative.
183 QuantityMove(Resource from, Resource to, long qty) argument
186 if (qty < 0)
188 "The resource quantity supplied (" + qty +
190 this.qty = qty;
201 getTo().transfer(getFrom(), qty);
210 return (qty);
[all...]
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DResource.java89 * @param qty Amount of resource to be donated.
93 public void transfer(Resource donor, long qty) throws PoolsException argument
96 donor.getResource(), getResource(), qty) !=
/illumos-gate/usr/src/uts/common/os/
H A Dpool.c639 pool_transfer(int type, id_t src, id_t dst, uint64_t qty) argument
H A Dproject.c930 rctl_qty_t shmmni, shmmax, qty; local
981 qty = availrmem_initial << (PAGESHIFT - 2);
982 rctl_add_default_limit("project.max-crypto-memory", qty,
1023 qty = availrmem_initial << (PAGESHIFT - 2);
1026 qty = UINT64_MAX;
1027 else if (shmmni * shmmax > qty)
1028 qty = shmmni * shmmax;
1030 rctl_add_default_limit("project.max-shm-memory", qty,
H A Drctl.c501 rctl_qty_t qty; local
503 if (!mod_sysvar(mname, lname, &qty) || (qty < dflt))
504 qty = dflt;
506 if (qty > max)
507 qty = max;
509 rctl_add_default_limit(name, qty, RCPRIV_PRIVILEGED, RCTL_LOCAL_DENY);
/illumos-gate/usr/src/uts/common/io/rge/
H A Drge_main.c210 * is given by the product of the <qty> and <size> parameters.
214 uint32_t qty, uint32_t size)
219 totsize = qty*size;
223 slice->nslots = qty;
213 rge_slice_chunk(dma_area_t *slice, dma_area_t *chunk, uint32_t qty, uint32_t size) argument
/illumos-gate/usr/src/uts/common/io/nge/
H A Dnge_main.c270 * is given by the product of the <qty> and <size> parameters.
274 uint32_t qty, uint32_t size)
278 totsize = qty*size;
283 slice->nslots = qty;
273 nge_slice_chunk(dma_area_t *slice, dma_area_t *chunk, uint32_t qty, uint32_t size) argument
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge_main2.c2174 * is given by the product of the <qty> and <size> parameters.
2178 uint32_t qty, uint32_t size)
2183 totsize = qty*size;
2187 slice->nslots = qty;
2177 bge_slice_chunk(dma_area_t *slice, dma_area_t *chunk, uint32_t qty, uint32_t size) argument

Completed in 93 milliseconds