Searched defs:page (Results 1 - 3 of 3) sorted by relevance

/system/core/toolbox/
H A Dr.c18 void *page; local
63 page = mmap(0, mmap_size, PROT_READ | PROT_WRITE,
66 if(page == MAP_FAILED){
74 unsigned *x = (unsigned*) (((unsigned) page) + (addr & 4095));
80 unsigned short *x = (unsigned short*) (((unsigned) page) + (addr & 4095));
86 unsigned char *x = (unsigned char*) (((unsigned) page) + (addr & 4095));
H A Dsyren.c15 unsigned long page; member in struct:syren_io_args
21 u_char page; member in struct:__anon257
57 fprintf(stderr, "usage: syren [r/w] [REGNAME | page:addr] (value)\n");
111 sio.page = registers[i].page;
131 sio.page = strtoul(argv[2], 0, 0);
135 sio.page = r->page;
/system/core/libutils/
H A DLinearAllocator.cpp34 // The ideal size of a page allocation (these need to be multiples of 8)
38 // The maximum amount of wasted space we can have per page
39 // Allocations exceeding this will have their own dedicated page
167 // Allocation is too large, create a dedicated page for the allocation
168 Page* page = newPage(size); local
170 page->setNext(mPages);
171 mPages = page;
174 return start(page);

Completed in 234 milliseconds