| /external/llvm/include/llvm/ObjectYAML/ |
| MachOYAML.h | 83 : TerminalSize(0), NodeOffset(0), Name(), Flags(0), Address(0), Other(0), 89 llvm::yaml::Hex64 Address;
|
| /external/llvm/lib/CodeGen/SelectionDAG/ |
| FunctionLoweringInfo.cpp | 228 const Value *Address = DI->getAddress(); 229 if (Address) { 230 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) 231 Address = BCI->getOperand(0); 232 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) { 278 // Transfer the address-taken flag. This is necessary because there could
|
| /external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| RuntimeDyldImpl.h | 51 /// Address - address in the linker's memory where the section resides. 52 uint8_t *Address; 57 /// LoadAddress - the address of the section in the target process's memory. 58 /// Used for situations in which JIT-ed code is being executed in the address 59 /// space of a separate process. If the code executes in the same address 60 /// space where it was JIT-ed, this just equals Address. 71 /// ObjAddress - address of the section in the in-memory object file. Used 76 SectionEntry(StringRef name, uint8_t *address, size_t size, 78 : Name(name), Address(address), Size(size) [all...] |
| /external/llvm/tools/llvm-readobj/ |
| ARMWinEHPrinter.cpp | 19 // | Function Entry Address | 41 // | Function Entry Address | 43 // | Exception Data Entry Address | 47 // first resolve the exception data entry address. This structure 96 static std::string formatSymbol(StringRef Name, uint64_t Address, 105 OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address); 107 OS << format("(0x%" PRIX64 ")", Address); 109 OS << format("0x%" PRIX64, Address); 189 uint64_t Address = Section.getAddress(); 192 if (VA >= Address && (VA - Address) <= Size [all...] |
| /external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
| MemoryDependenceAnalysis.h | 214 /// (potentially phi translated) address that was live in the block. 217 Value *Address; 219 NonLocalDepResult(BasicBlock *bb, MemDepResult result, Value *address) 220 : Entry(bb, result), Address(address) {} 227 Address = Addr; 232 /// getAddress - Return the address of this pointer in this block. This can 233 /// be different than the address queried for the non-local result because 234 /// of phi translation. This returns null if the address was not available 236 /// result and that address was deleted [all...] |
| /external/swiftshader/third_party/LLVM/lib/MC/ |
| MachObjectWriter.cpp | 83 uint64_t Address = Target.getConstant(); 85 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( 88 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( 90 return Address; 206 Write64(getSectionAddress(&SD)); // address 209 Write32(getSectionAddress(&SD)); // address 294 uint64_t Address = 0; 315 // Compute the symbol address. 318 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue(); 320 Address = getSymbolAddress(&Data, Layout) [all...] |
| /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
| Local.cpp | 198 Value *Address = IBI->getAddress(); 201 RecursivelyDeleteTriviallyDeadInstructions(Address); 439 // Zap anything that took the address of DestBB. Not doing this will give the 440 // address an invalid value. [all...] |
| /external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
| MachODump.cpp | 90 uint64_t Address; 108 S.Address = Sect->Address; 125 // Print additional information about an address, if available. 126 static void DumpAddress(uint64_t Address, ArrayRef<Section> Sections, 129 uint64_t addr = Address-Sections[i].Address; 130 if (Sections[i].Address <= Address && 131 Sections[i].Address + Sections[i].Size > Address) [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugLine.h | 69 /// Version, address size (starting in v5), and DWARF32/64 format; these 79 /// program opcodes that alter the address register first multiply their 143 return LHS.Address < RHS.Address; 148 uint64_t Address; 172 /// A boolean indicating that the current address is that of the 176 /// A boolean indicating that the current address is one (of possibly 180 /// A boolean indicating that the current address is one (of possibly 188 /// guaranteed to be in the order of ascending instruction address. 192 /// Sequence describes instructions at address range [LowPC, HighPC [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
| ELFYAML.h | 122 llvm::yaml::Hex64 Address;
|
| MachOYAML.h | 94 llvm::yaml::Hex64 Address = 0;
|
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/ |
| CoverageMappingReader.cpp | 353 Address = Section.getAddress(); 358 if (Pointer < Address) 360 auto Offset = Pointer - Address; 363 return Data.substr(Pointer - Address, Size); 599 uint64_t Address = 606 if (Error E = ProfileNames.create(Data.substr(0, ProfileNamesSize), Address))
|
| /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
| DwarfStreamer.cpp | 148 /// uint8_t Address size 269 /// format is totally trivial, consisting just of pairs of address 282 warn("unsupported base address selection operation", 308 /// same thing with a different base address). 347 Asm->emitInt8(AddressSize); // Address size 411 // This is the quantity to add to the old location address to get 412 // the correct address for the new one. 459 // address in that case. 474 uint64_t Address = -1ULL; 482 if (Address == -1ULL) [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
| ARMWinEHPrinter.cpp | 19 // | Function Entry Address | 41 // | Function Entry Address | 43 // | Exception Data Entry Address | 47 // first resolve the exception data entry address. This structure 96 static std::string formatSymbol(StringRef Name, uint64_t Address, 105 OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address); 107 OS << format("(0x%" PRIX64 ")", Address); 109 OS << format("0x%" PRIX64, Address); 189 uint64_t Address = Section.getAddress(); 192 if (VA >= Address && (VA - Address) <= Size [all...] |
| /external/webrtc/webrtc/base/ |
| winping.cc | 32 ULONG Address; // Replying address 42 sockaddr_in6 Address;
|
| /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/XenonDxe/ |
| SdMmcPciHci.h | 89 UINT32 Address;
175 header to use as the base address for the memory
209 header to use as the base address for the memory
240 header to use as the base address for the memory
271 header to use as the base address for the memory
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/SmmBaseHelper/ |
| SmmBaseHelper.c | 51 @param[in] ImageBuffer Image base address.
69 @param[in] ImageBuffer Image base address.
274 @param[in] PageAddress The base address for a page.
449 UINT64 Address;
452 // Initialize physical address mask
453 // NOTE: Physical memory above virtual address limit is not supported !!!
474 Address = HookAddress & ~(SIZE_2MB-1);
476 PageTable[Index] = Address | BIT0 | BIT1; // Present and RW
477 Address += SIZE_4KB;
[all...] |
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/StatusCodeDataTypeId/ |
| StatusCodeDataTypeId.h | 257 EFI_PHYSICAL_ADDRESS Address;
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/ |
| EfiBootScript.h | 100 UINT64 Address;
107 UINT64 Address;
115 UINT64 Address;
122 UINT64 Address;
130 UINT64 Address;
138 UINT64 Address;
146 UINT64 Address;
153 UINT64 Address;
184 UINT64 Address;
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFvImage/ |
| GenFvImageLib.c | 160 // Read the FV base address
166 // Get the base address
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
| PciEnumeratorSupport.c | 42 UINT64 Address;
46 // Create PCI address map in terms of Bus, Device and Func
48 Address = EFI_PCI_ADDRESS (Bus, Device, Func, 0);
56 Address,
68 Address,
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/ |
| SdMmcPciHci.h | 89 UINT32 Address;
175 header to use as the base address for the memory
209 header to use as the base address for the memory
240 header to use as the base address for the memory
271 header to use as the base address for the memory
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcBlockIoPei/ |
| EmmcHci.c | 19 @param[in] Address The address of the mmio register to be read/written.
29 @retval EFI_INVALID_PARAMETER The Address or the Data or the Count is not valid.
37 IN UINTN Address,
43 if ((Address == 0) || (Data == NULL)) {
54 *(UINT8*)Data = MmioRead8 (Address);
56 MmioWrite8 (Address, *(UINT8*)Data);
61 *(UINT16*)Data = MmioRead16 (Address);
63 MmioWrite16 (Address, *(UINT16*)Data);
68 *(UINT32*)Data = MmioRead32 (Address);
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdBlockIoPei/ |
| SdHci.c | 19 @param[in] Address The address of the mmio register to be read/written.
29 @retval EFI_INVALID_PARAMETER The Address or the Data or the Count is not valid.
37 IN UINTN Address,
43 if ((Address == 0) || (Data == NULL)) {
54 *(UINT8*)Data = MmioRead8 (Address);
56 MmioWrite8 (Address, *(UINT8*)Data);
61 *(UINT16*)Data = MmioRead16 (Address);
63 MmioWrite16 (Address, *(UINT16*)Data);
68 *(UINT32*)Data = MmioRead32 (Address);
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
| UsbBus.h | 81 // Wait for set device address, refers to specification
177 UINT8 Address;
266 // for root hub. Device with address i is at Devices[i].
652 device with its address and current active configuration.
|