/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSectionCOFF.h | 31 /// This is the Characteristics field of a section, drawn from the enums 33 mutable unsigned Characteristics; variable 47 /// section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0 53 MCSectionCOFF(StringRef Name, unsigned Characteristics, in MCSectionCOFF() argument 55 : MCSection(SV_COFF, Name, Characteristics & COFF::IMAGE_SCN_CNT_CODE, in MCSectionCOFF() 56 Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA, in MCSectionCOFF() 58 Characteristics(Characteristics), COMDATSymbol(COMDATSymbol), in MCSectionCOFF() 60 assert((Characteristics & 0x00F00000) == 0 && in MCSectionCOFF() 69 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics()
|
H A D | MCSymbolCOFF.h | 54 void setWeakExternalCharacteristics(COFF::WeakExternalCharacteristics Characteristics) const { in setWeakExternalCharacteristics() argument 55 modifyFlags(Characteristics << SF_WeakExternalCharacteristicsShift, in setWeakExternalCharacteristics()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | COFFYAML.cpp | 249 void ScalarBitSetTraits<COFF::Characteristics>::bitset( in bitset() 250 IO &IO, COFF::Characteristics &Value) { in bitset() 325 : Characteristics(COFFYAML::WeakExternalCharacteristics(0)) {} in NWeakExternalCharacteristics() 327 : Characteristics(COFFYAML::WeakExternalCharacteristics(C)) {} in NWeakExternalCharacteristics() 329 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 331 COFFYAML::WeakExternalCharacteristics Characteristics; member 336 : Characteristics(COFF::SectionCharacteristics(0)) {} in NSectionCharacteristics() 338 : Characteristics(COFF::SectionCharacteristics(C)) {} in NSectionCharacteristics() 340 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 342 COFF::SectionCharacteristics Characteristics; member [all …]
|
H A D | COFFEmitter.cpp | 93 Sec.Header.Characteristics |= (Log2_32(Sec.Alignment) + 1) << 20; in parseSections() 255 if (S.Header.Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) { in layoutCOFF() 356 if (S.Header.Characteristics & COFF::IMAGE_SCN_CNT_CODE) in initializeOptionalHeader() 358 if (S.Header.Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in initializeOptionalHeader() 360 if (S.Header.Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in initializeOptionalHeader() 440 << binary_le(CP.Obj.Header.Characteristics); in writeCOFF() 481 << binary_le(S.Header.Characteristics); in writeCOFF() 504 if (S.Header.Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) in writeCOFF() 555 << binary_le(i->WeakExternal->Characteristics) in writeCOFF()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
H A D | COFFObjcopy.cpp | 62 uint32_t Characteristics) { in addSection() argument 63 bool NeedVA = Characteristics & (IMAGE_SCN_MEM_EXECUTE | IMAGE_SCN_MEM_READ | in addSection() 80 Sec.Header.Characteristics = Characteristics; in addSection() 109 // Setup new section characteristics based on the flags provided in command in flagsToCharacteristics() 175 (Sec.Header.Characteristics & IMAGE_SCN_MEM_DISCARDABLE) != 0) in handleArgs() 190 ((Sec.Header.Characteristics & in handleArgs() 259 Sec.Header.Characteristics = flagsToCharacteristics( in handleArgs() 260 It->second.NewFlags, Sec.Header.Characteristics); in handleArgs() 264 uint32_t Characteristics; in handleArgs() local [all...] |
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | isa_defs.h | 34 * be divided into two groups; characteristics of the processor and 37 * Processor Characteristics: 236 * Define the appropriate "processor characteristics" 303 * Define the appropriate "processor characteristics" 352 * Define the appropriate "processor characteristics" 394 * Define the appropriate "processor characteristics" 436 * Define the appropriate "processor characteristics" 481 * Define the appropriate "processor characteristics" 594 * Define the appropriate "processor characteristics" shared between 632 * Define the appropriate "processor characteristics" [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | WindowsResource.h | 89 support::ulittle32_t Characteristics; member 112 uint32_t getCharacteristics() const { return Suffix->Characteristics; } in getCharacteristics() 177 uint32_t getCharacteristics() const { return Characteristics; } in getCharacteristics() 193 uint32_t Characteristics, 199 uint32_t Characteristics, uint32_t Origin, uint32_t DataIndex); 213 uint32_t Characteristics, uint32_t Origin, 227 uint32_t Characteristics = 0; variable
|
H A D | COFF.h | 82 support::ulittle16_t Characteristics; member 178 support::ulittle32_t Characteristics; member 211 // dumpbin reports this field as "Characteristics" instead of "Attributes". 450 support::ulittle32_t Characteristics; member 455 return (Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) && in hasExtendedRelocations() 462 if (Characteristics & COFF::IMAGE_SCN_TYPE_NO_PAD) in getAlignment() 467 uint32_t Shift = (Characteristics >> 20) & 0xF; in getAlignment() 504 support::ulittle32_t Characteristics; member 575 support::ulittle32_t Characteristics; member 579 uint32_t Shift = (Characteristics & COFF::IMAGE_SCN_ALIGN_MASK) >> 20; in getAlignment() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | COFFYAML.h | 31 inline Characteristics operator|(Characteristics a, Characteristics b) { 33 return static_cast<Characteristics>(Ret); 198 struct ScalarBitSetTraits<COFF::Characteristics> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 199 static void bitset(IO &IO, COFF::Characteristics &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/ |
H A D | ObjectFileCOFF.cpp | 210 if (Section->Characteristics & COFF::IMAGE_SCN_CNT_CODE) in CreateSections() 212 if (Section->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in CreateSections() 214 if (Section->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in CreateSections() 220 if (Section->Characteristics & COFF::IMAGE_SCN_MEM_EXECUTE) in CreateSections() 222 if (Section->Characteristics & COFF::IMAGE_SCN_MEM_READ) in CreateSections() 224 if (Section->Characteristics & COFF::IMAGE_SCN_MEM_WRITE) in CreateSections()
|
/freebsd/share/doc/papers/diskperf/ |
H A D | equip.ms | 124 The physical characteristics of the RA81 are shown in the 131 DEC RA81 Disk Drive Characteristics 151 The 2351A has the following physical characteristics: 157 Fujitsu 2351A Disk Drive Characteristics
|
H A D | methodology.ms | 44 In this case, the disk I/O characteristics of VMS were measured 64 exhibit strong locality characteristics. 102 as it may change the characteristics of the memory contention
|
/freebsd/stand/efi/loader/arch/arm/ |
H A D | start.S | 63 .short 0 /* Characteristics TODO: Fill in */ 91 .short 0 /* DLL Characteristics */ 121 IMAGE_SCN_MEM_DISCARDABLE) /* Characteristics */ 137 IMAGE_SCN_MEM_READ) /* Characteristics */
|
/freebsd/stand/efi/loader/arch/arm64/ |
H A D | start.S | 64 .short IMAGE_FILE_EXECUTABLE /* Characteristics */ 91 .short 0 /* DLL Characteristics */ 121 IMAGE_SCN_MEM_READ) /* Characteristics */ 136 IMAGE_SCN_MEM_WRITE) /* Characteristics */
|
/freebsd/stand/efi/loader/arch/riscv/ |
H A D | start.S | 64 .short 0 /* Characteristics TODO: Fill in */ 91 .short 0 /* DLL Characteristics */ 121 IMAGE_SCN_MEM_DISCARDABLE) /* Characteristics */ 137 IMAGE_SCN_MEM_READ) /* Characteristics */
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFFLinkGraphBuilder.cpp | 69 return Section->Characteristics & COFF::IMAGE_SCN_LNK_COMDAT; in isComdatSection() 153 if ((*Sec)->Characteristics & COFF::IMAGE_SCN_MEM_EXECUTE) in graphifySections() 155 if ((*Sec)->Characteristics & COFF::IMAGE_SCN_MEM_READ) in graphifySections() 157 if ((*Sec)->Characteristics & COFF::IMAGE_SCN_MEM_WRITE) in graphifySections() 164 if ((*Sec)->Characteristics & COFF::IMAGE_SCN_LNK_REMOVE) in graphifySections() 171 if ((*Sec)->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in graphifySections() 244 uint32_t Characteristics = WeakExternal->Characteristics; in graphifySymbols() 246 {SymIndex, TagIndex, Characteristics, SymbolName}); in graphifySymbols() 331 WeakExternal.Characteristics in flushWeakAliasRequests() 243 uint32_t Characteristics = WeakExternal->Characteristics; graphifySymbols() local [all...] |
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Writer.h | 28 : name(n), characteristics(chars) {} in PartialSection() 30 unsigned characteristics; variable 42 header.Characteristics = chars; in OutputSection() 68 return (header.Characteristics & llvm::COFF::IMAGE_SCN_CNT_CODE) && 69 (header.Characteristics & llvm::COFF::IMAGE_SCN_MEM_READ) && 70 (header.Characteristics & llvm::COFF::IMAGE_SCN_MEM_EXECUTE);
|
H A D | Writer.cpp | 127 d->Characteristics = 0; in fillEntry() 173 ExtendedDllCharacteristicsChunk(uint32_t c) : characteristics(c) {} in ExtendedDllCharacteristicsChunk() 177 void writeTo(uint8_t *buf) const override { write32le(buf, characteristics); } in writeTo() 179 uint32_t characteristics = 0; member in __anon87c184950111::ExtendedDllCharacteristicsChunk 184 // characteristics constitutes the OutputSection. 188 unsigned characteristics; member in __anon87c184950111::PartialSectionKey 195 return characteristics < other.characteristics; in operator <() 353 header.Characteristics &= ~permMask; in setPermissions() 354 header.Characteristics |= c; in setPermissions() 366 if (other->header.Characteristics & IMAGE_SCN_CNT_CODE) { in merge() [all …]
|
/freebsd/bin/stty/ |
H A D | stty.1 | 47 characteristics for the device that is its standard input. 49 of characteristics as well as additional ones if they differ from their 88 characteristics: 90 Control mode flags affect hardware characteristics associated with the 260 Local mode flags (lflags) affect various and sundry characteristics of terminal 425 characteristics to the saved settings
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | WindowsResource.cpp | 432 Table.MinorVersion, Table.Characteristics, in addChildren() 456 uint32_t Characteristics, in TreeNode() argument 459 MinorVersion(MinorVersion), Characteristics(Characteristics), in TreeNode() 475 uint32_t Characteristics, in createDataNode() argument 479 MajorVersion, MinorVersion, Characteristics, Origin, DataIndex)); in createDataNode() 513 uint32_t Characteristics, uint32_t Origin, uint32_t DataIndex, in addDataChild() argument 515 auto NewChild = createDataNode(MajorVersion, MinorVersion, Characteristics, in addDataChild() 740 Header->Characteristics = COFF::IMAGE_FILE_32BIT_MACHINE; in writeCOFFHeader() 757 SectionOneHeader->Characteristics += COFF::IMAGE_SCN_CNT_INITIALIZED_DATA; in writeFirstSectionHeader() 758 SectionOneHeader->Characteristics += COFF::IMAGE_SCN_MEM_READ; in writeFirstSectionHeader() [all …]
|
/freebsd/share/doc/smm/05.fastfs/ |
H A D | 3.t | 347 It has no information about either the physical characteristics 352 mass storage characteristics 357 and the characteristics of the mass storage devices. 362 adapted to the characteristics of the disk on which 373 depending on system characteristics. 385 The physical characteristics of each disk include 390 The characteristics of the processor include 442 characteristics of the new host.
|
/freebsd/sbin/comcontrol/ |
H A D | comcontrol.8 | 15 utility is used to examine and modify some of the special characteristics 19 it prints the settings of all controllable characteristics.
|
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | COFFMasmParser.cpp | 38 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics); 40 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics, 214 unsigned Characteristics) { in ParseSectionSwitch() argument 215 return ParseSectionSwitch(SectionName, Characteristics, "", in ParseSectionSwitch() 220 unsigned Characteristics, in ParseSectionSwitch() argument 228 MCSection *Section = getContext().getCOFFSection(SectionName, Characteristics, in ParseSectionSwitch() 260 // Default flags are used only if no characteristics are set. in ParseDirectiveSegment()
|
/freebsd/lib/libdpv/ |
H A D | dialogrc.h | 37 /* dialog(1) characteristics */ 42 /* dialog(1) `.dialogrc' characteristics */
|
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | adc.yaml | 68 In some cases, the desired filtering characteristics are a function the 69 device design and can interact with other characteristics such as
|