Home
last modified time | relevance | path

Searched refs:dindex (Results 1 – 7 of 7) sorted by relevance

/haiku/src/system/boot/arch/m68k/
H A Dmmu_040.cpp269 uint32 rindex, dindex, pindex; in lookup_pte() local
276 dindex = VADDR_TO_PDENT(virtualAddress); in lookup_pte()
277 if (PDE_TYPE(pd[dindex]) != DT_DIR) in lookup_pte()
278 panic("lookup_pte: invalid entry pgrt[%d] prdir[%d]", rindex, dindex); in lookup_pte()
279 pt = (page_table_entry *)PDE_TO_TA(pd[dindex]); in lookup_pte()
285 rindex, dindex, pindex); in lookup_pte()
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.cpp229 uint32 rindex, dindex, pindex; in Map() local
284 dindex = VADDR_TO_PDENT(va); in Map()
285 if (PDE_TYPE(pd[dindex]) != DT_DIR) { in Map()
302 uint32 aindex = dindex & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */ in Map()
323 pt = (page_table_entry*)MapperGetPageTableAt(PDE_TO_PA(pd[dindex])); in Map()
/haiku/src/system/kernel/arch/m68k/
H A Darch_vm_translation_map_impl.cpp523 unsigned int rindex, dindex, pindex; in map_tmap() local
584 dindex = VADDR_TO_PDENT(va); in map_tmap()
585 if (pd[dindex].type != DT_DIR) { in map_tmap()
601 unsigned aindex = dindex & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */ in map_tmap()
619 err = get_physical_page_tmap_internal(PDE_TO_PA(pd[dindex]), in map_tmap()
624 pt += (dindex % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL; in map_tmap()
/haiku/src/add-ons/translators/raw/
H A DRAW.h121 int _LosslessJPEGDiff(struct decode *dindex);
H A DRAW.cpp2285 DCRaw::_LosslessJPEGDiff(struct decode *dindex) in _LosslessJPEGDiff() argument
2287 while (dindex->branch[0]) { in _LosslessJPEGDiff()
2288 dindex = dindex->branch[_GetDecodeBits(1)]; in _LosslessJPEGDiff()
2291 int length = dindex->leaf; in _LosslessJPEGDiff()
2504 struct decode* dindex = decode; in _LoadRAWCanonCompressed() local
2505 while (dindex->branch[0]) { in _LoadRAWCanonCompressed()
2506 dindex = dindex->branch[_GetDecodeBits(1)]; in _LoadRAWCanonCompressed()
2508 int leaf = dindex->leaf; in _LoadRAWCanonCompressed()
/haiku/headers/os/drivers/pcmcia/
H A Dcistpl.h518 u_short dindex; member
/haiku/src/bin/pcmcia-cs/
H A Ddump_cis.c776 indent, v2->vers, v2->comply, v2->dindex); in print_vers_2()