OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:uboundary
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/arch/xen/x86/
xen_bus_dma.c
222
bus_size_t
uboundary
;
local
241
uboundary
= 0;
243
uboundary
= boundary;
244
while (
uboundary
< size)
245
uboundary
=
uboundary
<< 1;
247
error = uvm_pglistalloc(size, 0, avail_end, alignment,
uboundary
,
/src/sys/arch/x86/x86/
bus_dma.c
205
bus_size_t
uboundary
;
local
221
uboundary
= 0;
223
uboundary
= boundary;
224
while (
uboundary
< size)
225
uboundary
=
uboundary
<< 1;
227
error = uvm_pglistalloc(size, low, high, alignment,
uboundary
,
/src/sys/arch/arm/arm32/
bus_dma.c
1763
bus_size_t
uboundary
= boundary;
local
1764
if (
uboundary
<= PAGE_SIZE) {
1765
uboundary
= 0;
1767
while (
uboundary
< size) {
1768
uboundary
<<= 1;
1775
error = uvm_pglistalloc(size, low, high, alignment,
uboundary
,
/src/sys/arch/riscv/riscv/
bus_dma.c
1663
bus_size_t
uboundary
= boundary;
local
1664
if (
uboundary
<= PAGE_SIZE) {
1665
uboundary
= 0;
1667
while (
uboundary
< size) {
1668
uboundary
<<= 1;
1675
error = uvm_pglistalloc(size, low, high, alignment,
uboundary
,
Completed in 46 milliseconds
Indexes created Fri Mar 06 19:51:54 UTC 2026