/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
peephole.c | 307 int *addrmap = NULL;
local 346 addrmap = PyMem_New(int, codelen);
347 if (addrmap == NULL) {
601 addrmap[i] = i - nops;
609 new_line = addrmap[cum_orig_line];
629 j = addrmap[GETARG(codestr, i)];
639 j = addrmap[GETARG(codestr, i) + i + 3] - addrmap[i] - 3;
650 PyMem_Free(addrmap);
661 if (addrmap != NULL) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
peephole.c | 318 int *addrmap = NULL;
local 357 addrmap = (int *)PyMem_Malloc(codelen * sizeof(int));
358 if (addrmap == NULL)
614 addrmap[i] = i - nops;
622 new_line = addrmap[cum_orig_line];
642 j = addrmap[GETARG(codestr, i)];
652 j = addrmap[GETARG(codestr, i) + i + 3] - addrmap[i] - 3;
663 PyMem_Free(addrmap);
674 if (addrmap != NULL) [all...] |
/external/python/cpython2/Python/ |
peephole.c | 307 int *addrmap = NULL; local 346 addrmap = PyMem_New(int, codelen); 347 if (addrmap == NULL) { 601 addrmap[i] = i - nops; 609 new_line = addrmap[cum_orig_line]; 629 j = addrmap[GETARG(codestr, i)]; 639 j = addrmap[GETARG(codestr, i) + i + 3] - addrmap[i] - 3; 650 PyMem_Free(addrmap); 661 if (addrmap != NULL [all...] |
/external/llvm/lib/DebugInfo/PDB/Raw/ |
PublicsStream.cpp | 53 ulittle32_t AddrMap; 81 uint32_t PublicsStream::getAddrMap() const { return Header->AddrMap; } 137 uint32_t NumAddressMapEntries = Header->AddrMap / sizeof(uint32_t);
|
/external/google-breakpad/src/processor/ |
static_address_map_unittest.cc | 49 typedef google_breakpad::AddressMap<int, string> AddrMap; 148 AddrMap addr_map[kNumberTestCases];
|
/external/llvm/tools/llvm-objdump/ |
MachODump.cpp | 614 SymbolAddressMap *AddrMap) { 639 (*AddrMap)[Address] = SymName; 647 static const char *GuessSymbolName(uint64_t value, SymbolAddressMap *AddrMap) { 651 StringRef name = AddrMap->lookup(value); [all...] |
/external/llvm/tools/llvm-pdbdump/ |
LLVMOutputStyle.cpp | 698 P.printNumber("AddrMap", Publics->getAddrMap());
|
/external/llvm/test/DebugInfo/PDB/ |
pdbdump-headers.test | [all...] |
/external/c-ares/ |
ares_platform.c | [all...] |