Lines Matching defs:page
240 // the page offset from the current instruction to the target.
263 // Add the 12 bit page offset to the existing immediate.
270 // page offset.
982 // .reloc are grouped by page where the page size is 12 bits, and
983 // offsets sharing the same page address are stored consecutively to
984 // represent them with less space. This is very similar to the page
992 // 0x00000 -- page address (4 bytes)
998 // 0x20000 -- page address (4 bytes)
1003 // Usually we have a lot of relocations for each page, so the number of
1005 BaserelChunk::BaserelChunk(uint32_t page, Baserel *begin, Baserel *end) {
1006 // Block header consists of 4 byte page RVA and 4 byte block size.
1010 write32le(p, page);
1014 write16le(p, (i->type << 12) | (i->rva - page));
1240 uint32_t page = entry.offset.get() & ~0xfff;
1241 if (page != prevPage) {
1244 prevPage = page;
1276 uint32_t page = entry.offset.get() & ~0xfff;
1277 if (!pageHeader || page != pageHeader->PageRVA) {
1284 pageHeader->PageRVA = page;