Lines Matching refs:module
58 RSOObjectHeader* module; in RsoLoad() local
65 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
66 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
71 if (module->bssSize > 0) in RsoLoad()
73 bss = OSAllocFromArenaLo(module->bssSize, 32); // alloc bss area in RsoLoad()
75 RSOLinkList(module, bss); in RsoLoad()
77 return module; in RsoLoad()
86 RSOObjectHeader* module; in StaticRsoLoad() local
92 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
93 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
98 RSOListInit(module); in StaticRsoLoad()
100 return module; in StaticRsoLoad()