| /external/llvm/test/Object/Inputs/COFF/ |
| D | section-aux-symbol.yaml | 19 NumberOfRelocations: 1 31 NumberOfRelocations: 1 43 NumberOfRelocations: 1 55 NumberOfRelocations: 1 67 NumberOfRelocations: 0 79 NumberOfRelocations: 0 91 NumberOfRelocations: 0 103 NumberOfRelocations: 0 115 NumberOfRelocations: 1 127 NumberOfRelocations: 0 [all …]
|
| D | i386.yaml | 45 NumberOfRelocations: 3 59 NumberOfRelocations: 0
|
| D | x86-64.yaml | 54 NumberOfRelocations: 3 68 NumberOfRelocations: 0
|
| D | weak-external.yaml | 30 NumberOfRelocations: 1
|
| /external/llvm/test/Object/ |
| D | obj2yaml-coff-section-aux-symbol.test | 11 COFF-I386-NEXT: NumberOfRelocations: 1 18 COFF-I386-NEXT: NumberOfRelocations: 1 25 COFF-I386-NEXT: NumberOfRelocations: 1 32 COFF-I386-NEXT: NumberOfRelocations: 1 39 COFF-I386-NEXT: NumberOfRelocations: 0 46 COFF-I386-NEXT: NumberOfRelocations: 0 53 COFF-I386-NEXT: NumberOfRelocations: 0 60 COFF-I386-NEXT: NumberOfRelocations: 0 67 COFF-I386-NEXT: NumberOfRelocations: 1 74 COFF-I386-NEXT: NumberOfRelocations: 0 [all …]
|
| D | yaml2obj-coff-multi-doc.test | 33 NumberOfRelocations: 3 73 NumberOfRelocations: 3
|
| D | obj2yaml.test | 46 COFF-I386-NEXT: NumberOfRelocations: 3 59 COFF-I386-NEXT: NumberOfRelocations: 0 139 COFF-X86-64-NEXT: NumberOfRelocations: 3 152 COFF-X86-64-NEXT: NumberOfRelocations: 0
|
| /external/llvm/test/tools/llvm-ar/Inputs/ |
| D | coff.yaml | 27 NumberOfRelocations: 0 39 NumberOfRelocations: 0 51 NumberOfRelocations: 0
|
| /external/angle/build/toolchain/win/ |
| D | ml.py | 74 'PointerToLineNumbers', 'H', 'NumberOfRelocations', 100 assert section_headers[debug_section_index].NumberOfRelocations == 0 193 for j in range(0, header.NumberOfRelocations): 226 if header.NumberOfRelocations: 238 if header.NumberOfRelocations:
|
| /external/cronet/build/toolchain/win/ |
| D | ml.py | 74 'PointerToLineNumbers', 'H', 'NumberOfRelocations', 100 assert section_headers[debug_section_index].NumberOfRelocations == 0 193 for j in range(0, header.NumberOfRelocations): 226 if header.NumberOfRelocations: 238 if header.NumberOfRelocations:
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
| D | COFFImportFile.cpp | 183 const uint32_t NumberOfRelocations = 3; in createImportDescriptor() local 193 NumberOfRelocations * sizeof(coff_relocation) + in createImportDescriptor() 212 u16(NumberOfRelocations), in createImportDescriptor() 222 NumberOfRelocations * sizeof(coff_relocation)), in createImportDescriptor() 238 const coff_relocation RelocationTable[NumberOfRelocations] = { in createImportDescriptor()
|
| D | XCOFFObjectFile.cpp | 585 // sections as their raw "NumberOfRelocations" field value. 591 if (Sec.NumberOfRelocations < RELOC_OVERFLOW) in getLogicalNumberOfRelocationEntries() 592 return Sec.NumberOfRelocations; in getLogicalNumberOfRelocationEntries() 595 Sec.NumberOfRelocations == SectionIndex) in getLogicalNumberOfRelocationEntries()
|
| D | WindowsResource.cpp | 754 SectionOneHeader->NumberOfRelocations = Data.size(); in writeFirstSectionHeader() 772 SectionTwoHeader->NumberOfRelocations = 0; in writeSecondSectionHeader() 823 Aux->NumberOfRelocations = Data.size(); in writeSymbolTable() 842 Aux->NumberOfRelocations = 0; in writeSymbolTable()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
| D | WinCOFFObjectWriter.cpp | 538 W.write<uint16_t>(i.Aux.SectionDefinition.NumberOfRelocations); in WriteAuxiliarySymbols() 578 W.write<uint16_t>(S.NumberOfRelocations); in writeSectionHeaders() 916 // Signal overflow by setting NumberOfRelocations to max value. Actual in assignFileOffsets() 918 Sec->Header.NumberOfRelocations = 0xffff; in assignFileOffsets() 920 Sec->Header.NumberOfRelocations = Sec->Relocations.size(); in assignFileOffsets() 943 Aux.Aux.SectionDefinition.NumberOfRelocations = in assignFileOffsets() 944 Sec->Header.NumberOfRelocations; in assignFileOffsets()
|
| /external/llvm/lib/MC/ |
| D | WinCOFFObjectWriter.cpp | 573 writeLE16(i.Aux.SectionDefinition.NumberOfRelocations); in WriteAuxiliarySymbols() 596 writeLE16(S.NumberOfRelocations); in writeSectionHeader() 946 // Signal overflow by setting NumberOfRelocations to max value. Actual in writeObject() 948 Sec->Header.NumberOfRelocations = 0xffff; in writeObject() 950 Sec->Header.NumberOfRelocations = Sec->Relocations.size(); in writeObject() 973 Aux.Aux.SectionDefinition.NumberOfRelocations = in writeObject() 974 Sec->Header.NumberOfRelocations; in writeObject()
|
| /external/llvm/tools/yaml2obj/ |
| D | yaml2coff.cpp | 195 S.Header.NumberOfRelocations = S.Relocations.size(); in layoutCOFF() 197 S.Header.NumberOfRelocations * COFF::RelocationSize; in layoutCOFF() 436 << binary_le(i->Header.NumberOfRelocations) in writeCOFF() 513 << binary_le(i->SectionDefinition->NumberOfRelocations) in writeCOFF()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
| D | COFFEmitter.cpp | 264 S.Header.NumberOfRelocations = 0xffff; in layoutCOFF() 267 S.Header.NumberOfRelocations = S.Relocations.size(); in layoutCOFF() 488 << binary_le(i->Header.NumberOfRelocations) in writeCOFF() 578 << binary_le(i->SectionDefinition->NumberOfRelocations) in writeCOFF()
|
| D | COFFYAML.cpp | 528 IO.mapRequired("NumberOfRelocations", ASD.NumberOfRelocations); in mapping()
|
| /external/llvm/tools/obj2yaml/ |
| D | coff2yaml.cpp | 180 YAMLASD.NumberOfRelocations = ObjSD->NumberOfRelocations; in dumpSectionDefinition()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
| D | XCOFFObjectFile.h | 77 support::ubig16_t NumberOfRelocations; 90 support::ubig32_t NumberOfRelocations;
|
| /external/llvm/lib/ObjectYAML/ |
| D | COFFYAML.cpp | 452 IO.mapRequired("NumberOfRelocations", ASD.NumberOfRelocations); in mapping()
|
| /external/llvm/include/llvm/Object/ |
| D | COFF.h | 427 support::ulittle16_t NumberOfRelocations; member 435 NumberOfRelocations == UINT16_MAX; in hasExtendedRelocations() 490 support::ulittle16_t NumberOfRelocations; member
|
| /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| D | COFF.h | 248 uint16_t NumberOfRelocations; member 393 uint16_t NumberOfRelocations; member
|
| /external/llvm/include/llvm/Support/ |
| D | COFF.h | 243 uint16_t NumberOfRelocations; member 388 uint16_t NumberOfRelocations; member
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
| D | COFF.h | 278 uint16_t NumberOfRelocations; member 446 uint16_t NumberOfRelocations; member
|