Home
last modified time | relevance | path

Searched refs:modptr (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Ddynload_aix.c38 register ModulePtr modptr, prevmodptr; in aix_getoldmodules() local
83 if ((modptr = (ModulePtr)malloc(sizeof(Module))) == NULL) { in aix_getoldmodules()
86 modptr = (ModulePtr)*modlistptr; in aix_getoldmodules()
87 *modlistptr = (void *)modptr->next; in aix_getoldmodules()
88 free(modptr); in aix_getoldmodules()
92 modptr->entry = ldiptr->ldinfo_dataorg; in aix_getoldmodules()
93 modptr->next = NULL; in aix_getoldmodules()
95 *modlistptr = (void *)modptr; in aix_getoldmodules()
97 prevmodptr->next = modptr; in aix_getoldmodules()
98 prevmodptr = modptr; in aix_getoldmodules()
/external/swiftshader/third_party/LLVM/lib/Archive/
DArchiveReader.cpp481 const char* modptr = base + fileOffset; in findModuleDefiningSymbol() local
482 ArchiveMember* mbr = parseMemberHeader(modptr, mapfile->getBufferEnd(), in findModuleDefiningSymbol()