Home
last modified time | relevance | path

Searched defs:Value (Results 1 – 25 of 985) sorted by relevance

12345678910>>...40

/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go37 Value struct { struct
38 C C.LLVMValueRef
84 func (c Value) IsNil() bool { return c.C == nil }
96 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) }
110 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) {
706 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return }
707 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) }
708 func (v Value) SetName(name string) {
713 func (v Value) Dump() { C.LLVMDumpValue(v.C) }
714 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) }
[all …]
H A Danalysis.go54 func VerifyFunction(f Value, a VerifierFailureAction) error {
67 func ViewFunctionCFG(f Value) { C.LLVMViewFunctionCFG(f.C) }
68 func ViewFunctionCFGOnly(f Value) { C.LLVMViewFunctionCFGOnly(f.C) }
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DScopedPrinter.h34 T Value; member
56 uint64_t Value; member
62 template <class T> std::string to_string(const T &Value) { in to_string()
93 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } in hex()
96 void printEnum(StringRef Label, T Value, in printEnum()
150 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags()
163 void printNumber(StringRef Label, uint64_t Value) { in printNumber()
167 void printNumber(StringRef Label, uint32_t Value) { in printNumber()
171 void printNumber(StringRef Label, uint16_t Value) { in printNumber()
175 void printNumber(StringRef Label, uint8_t Value) { in printNumber()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParserCommon.h16 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value()
21 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value()
26 inline bool isImmSExti64i8Value(uint64_t Value) { in isImmSExti64i8Value()
30 inline bool isImmSExti64i32Value(uint64_t Value) { in isImmSExti64i32Value()
34 inline bool isImmUnsignedi8Value(uint64_t Value) { in isImmUnsignedi8Value()
38 inline bool isImmUnsignedi4Value(uint64_t Value) { in isImmUnsignedi4Value()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringSwitch.h67 StringSwitch &Case(StringLiteral S, T Value) { in Case()
74 StringSwitch& EndsWith(StringLiteral S, T Value) { in EndsWith()
81 StringSwitch& StartsWith(StringLiteral S, T Value) { in StartsWith()
88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases()
93 T Value) { in Cases()
98 StringLiteral S3, T Value) { in Cases()
103 StringLiteral S3, StringLiteral S4, T Value) { in Cases()
109 T Value) { in Cases()
115 StringLiteral S6, T Value) { in Cases()
121 StringLiteral S6, StringLiteral S7, T Value) { in Cases()
[all …]
H A DAny.h51 T Value; member
84 Any(T &&Value) { in Any()
119 template <typename T> bool any_isa(const Any &Value) { in any_isa()
125 template <class T> T any_cast(const Any &Value) { in any_cast()
129 template <class T> T any_cast(Any &Value) { in any_cast()
133 template <class T> T any_cast(Any &&Value) { in any_cast()
137 template <class T> const T *any_cast(const Any *Value) { in any_cast()
145 template <class T> T *any_cast(Any *Value) { in any_cast()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp37 static void signed_width(unsigned Width, uint64_t Value, in signed_width()
57 static void unsigned_width(unsigned Width, uint64_t Value, in unsigned_width()
77 static void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustBranch()
89 uint64_t &Value, MCContext *Ctx = nullptr) { in adjustRelativeBranch()
104 static void fixup_call(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_call()
120 static void fixup_7_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_7_pcrel()
134 static void fixup_13_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_13_pcrel()
147 static void fixup_6(const MCFixup &Fixup, uint64_t &Value, in fixup_6()
159 static void fixup_6_adiw(const MCFixup &Fixup, uint64_t &Value, in fixup_6_adiw()
170 static void fixup_port5(const MCFixup &Fixup, uint64_t &Value, in fixup_port5()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dx86_64.h250 inline bool isInRangeForImmU32(uint64_t Value) { in isInRangeForImmU32()
255 inline bool isInRangeForImmS32(int64_t Value) { in isInRangeForImmS32()
271 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() local
277 uint64_t Value = E.getTarget().getAddress() + E.getAddend(); in applyFixup() local
290 int64_t Value = in applyFixup() local
300 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() local
306 int64_t Value = E.getTarget().getAddress() - FixupAddress + E.getAddend(); in applyFixup() local
315 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() local
321 int64_t Value = FixupAddress - E.getTarget().getAddress() + E.getAddend(); in applyFixup() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TextAPI/
H A DTextStubCommon.cpp22 void ScalarTraits<FlowStringRef>::output(const FlowStringRef &Value, void *Ctx, in output()
26 StringRef ScalarTraits<FlowStringRef>::input(StringRef Value, void *Ctx, in input()
141 void ScalarTraits<Architecture>::output(const Architecture &Value, void *, in output()
146 Architecture &Value) { in input()
154 void ScalarTraits<PackedVersion>::output(const PackedVersion &Value, void *, in output()
159 PackedVersion &Value) { in input()
168 void ScalarTraits<SwiftVersion>::output(const SwiftVersion &Value, void *, in output()
189 SwiftVersion &Value) { in input()
219 void ScalarTraits<UUID>::output(const UUID &Value, void *, raw_ostream &OS) { in output()
222 StringRef ScalarTraits<UUID>::input(StringRef Scalar, void *, UUID &Value) { in input()
/netbsd-src/sys/dev/acpi/acpica/
H A DOsdHardware.c72 AcpiOsReadPort(ACPI_IO_ADDRESS Address, UINT32 *Value, UINT32 Width) in AcpiOsReadPort()
101 AcpiOsWritePort(ACPI_IO_ADDRESS Address, UINT32 Value, UINT32 Width) in AcpiOsWritePort()
130 AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width) in AcpiOsReadMemory()
171 AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width) in AcpiOsWriteMemory()
212 AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value, in AcpiOsReadPciConfiguration()
258 ACPI_INTEGER Value, UINT32 Width) in AcpiOsWritePciConfiguration()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp15 uint64_t Value) { in resolveRelocation()
30 uint64_t Value, in evaluateRelocation()
42 uint64_t Value) { in applyRelocation()
54 uint64_t Offset, uint64_t Value, in evaluateMIPS32Relocation()
109 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in evaluateMIPS64Relocation()
213 void RuntimeDyldELFMips::applyMIPSRelocation(uint8_t *TargetPtr, int64_t Value, in applyMIPSRelocation()
266 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN32Relocation()
275 const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, in resolveMIPSN64Relocation()
305 uint32_t Value, uint32_t Type, in resolveMIPSO32Relocation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp148 Error CodeViewRecordIO::mapEncodedInteger(int64_t &Value, in mapEncodedInteger()
173 Error CodeViewRecordIO::mapEncodedInteger(uint64_t &Value, in mapEncodedInteger()
189 Error CodeViewRecordIO::mapEncodedInteger(APSInt &Value, const Twine &Comment) { in mapEncodedInteger()
204 Error CodeViewRecordIO::mapStringZ(StringRef &Value, const Twine &Comment) { in mapStringZ()
249 Error CodeViewRecordIO::mapStringZVectorZ(std::vector<StringRef> &Value, in mapStringZVectorZ()
274 void CodeViewRecordIO::emitEncodedSignedInteger(const int64_t &Value, in emitEncodedSignedInteger()
299 void CodeViewRecordIO::emitEncodedUnsignedInteger(const uint64_t &Value, in emitEncodedUnsignedInteger()
323 Error CodeViewRecordIO::writeEncodedSignedInteger(const int64_t &Value) { in writeEncodedSignedInteger()
348 Error CodeViewRecordIO::writeEncodedUnsignedInteger(const uint64_t &Value) { in writeEncodedUnsignedInteger()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp34 IO &IO, COFFYAML::COMDATType &Value) { in enumeration()
47 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration()
55 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration()
60 IO &IO, COFF::MachineTypes &Value) { in enumeration()
86 IO &IO, COFF::SymbolBaseType &Value) { in enumeration()
106 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration()
137 IO &IO, COFF::SymbolComplexType &Value) { in enumeration()
145 IO &IO, COFF::RelocationTypeI386 &Value) { in enumeration()
160 IO &IO, COFF::RelocationTypeAMD64 &Value) { in enumeration()
181 IO &IO, COFF::RelocationTypesARM &Value) { in enumeration()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCInstPrinter.h113 void setUseMarkup(bool Value) { UseMarkup = Value; } in setUseMarkup()
119 void setPrintImmHex(bool Value) { PrintImmHex = Value; } in setPrintImmHex()
121 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; } in setPrintHexStyle()
123 void setPrintBranchImmAsAddress(bool Value) { in setPrintBranchImmAsAddress()
127 void setSymbolizeOperands(bool Value) { SymbolizeOperands = Value; } in setSymbolizeOperands()
128 void setMCInstrAnalysis(const MCInstrAnalysis *Value) { MIA = Value; } in setMCInstrAnalysis()
131 format_object<int64_t> formatImm(int64_t Value) const { in formatImm()
173 uint32_t Value; member
H A DMCSymbol.h139 const MCExpr *Value; member
205 void setIsRegistered(bool Value) const { IsRegistered = Value; } in setIsRegistered()
222 void setRedefinable(bool Value) { IsRedefinable = Value; } in setRedefinable()
311 void setIndex(uint32_t Value) const { in setIndex()
323 void setOffset(uint64_t Value) { in setOffset()
399 void setExternal(bool Value) const { IsExternal = Value; } in setExternal()
402 void setPrivateExtern(bool Value) { IsPrivateExtern = Value; } in setPrivateExtern()
415 void setFlags(uint32_t Value) const { in setFlags()
421 void modifyFlags(uint32_t Value, uint32_t Mask) const { in modifyFlags()
/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexregion.c76 UINT64 *Value, in AcpiExSystemMemorySpaceHandler() argument
363 AcpiExSystemIoSpaceHandler(UINT32 Function,ACPI_PHYSICAL_ADDRESS Address,UINT32 BitWidth,UINT64 * Value,void * HandlerContext,void * RegionContext) AcpiExSystemIoSpaceHandler() argument
428 AcpiExPciConfigSpaceHandler(UINT32 Function,ACPI_PHYSICAL_ADDRESS Address,UINT32 BitWidth,UINT64 * Value,void * HandlerContext,void * RegionContext) AcpiExPciConfigSpaceHandler() argument
509 AcpiExCmosSpaceHandler(UINT32 Function,ACPI_PHYSICAL_ADDRESS Address,UINT32 BitWidth,UINT64 * Value,void * HandlerContext,void * RegionContext) AcpiExCmosSpaceHandler() argument
546 AcpiExPciBarSpaceHandler(UINT32 Function,ACPI_PHYSICAL_ADDRESS Address,UINT32 BitWidth,UINT64 * Value,void * HandlerContext,void * RegionContext) AcpiExPciBarSpaceHandler() argument
583 AcpiExDataTableSpaceHandler(UINT32 Function,ACPI_PHYSICAL_ADDRESS Address,UINT32 BitWidth,UINT64 * Value,void * HandlerContext,void * RegionContext) AcpiExDataTableSpaceHandler() argument
[all...]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_arm.cc34 inline static uint32_t getMovwMask(const uint32_t Value) XRAY_NEVER_INSTRUMENT { in getMovwMask()
39 inline static uint32_t getMovtMask(const uint32_t Value) XRAY_NEVER_INSTRUMENT { in getMovtMask()
48 const uint32_t Value) XRAY_NEVER_INSTRUMENT { in write32bitLoadReg()
64 const uint32_t Value) XRAY_NEVER_INSTRUMENT { in write32bitLoadR0()
73 const uint32_t Value) XRAY_NEVER_INSTRUMENT { in write32bitLoadIP()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DFormatUtil.h33 #define PUSH_MASKED_FLAG(Enum, Mask, TheOpt, Value, Text) \ argument
37 #define PUSH_FLAG(Enum, TheOpt, Value, Text) \ argument
44 template <typename T> std::string formatUnknownEnum(T Value) { in formatUnknownEnum()
135 support::unaligned> in fmtle()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCInstPrinter.cpp326 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU1ImmOperand() local
334 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU2ImmOperand() local
342 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU3ImmOperand() local
350 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU4ImmOperand() local
358 int Value = MI->getOperand(OpNo).getImm(); in printS5ImmOperand() local
366 unsigned int Value = MI->getOperand(OpNo).getImm(); in printImmZeroOperand() local
374 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU5ImmOperand() local
382 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU6ImmOperand() local
390 unsigned int Value = MI->getOperand(OpNo).getImm(); in printU7ImmOperand() local
401 unsigned char Value = MI->getOperand(OpNo).getImm(); in printU8ImmOperand() local
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/hardware/
H A Dhwregs.c260 UINT64 *Value, in AcpiHwRead()
358 UINT64 Value, in AcpiHwWrite()
578 UINT32 Value = 0; in AcpiHwRegisterRead() local
686 UINT32 Value) in AcpiHwRegisterWrite()
807 UINT32 *Value, in AcpiHwReadMultiple()
869 UINT32 Value, in AcpiHwWriteMultiple()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp64 clang::attr::Kind>::getBestGuess(const VariantValue &Value) { in getBestGuess()
77 clang::CastKind>::getBestGuess(const VariantValue &Value) { in getBestGuess()
90 clang::OpenMPClauseKind>::getBestGuess(const VariantValue &Value) { in getBestGuess()
104 clang::UnaryExprOrTypeTrait>::getBestGuess(const VariantValue &Value) { in getBestGuess()
160 llvm::Regex::RegexFlags>::getBestGuess(const VariantValue &Value) { in getBestGuess()
/netbsd-src/sys/external/bsd/acpica/dist/resources/
H A Drsdump.c599 AcpiRsOutString(const char * Title,const char * Value) AcpiRsOutString() argument
613 AcpiRsOutInteger8(const char * Title,UINT8 Value) AcpiRsOutInteger8() argument
621 AcpiRsOutInteger16(const char * Title,UINT16 Value) AcpiRsOutInteger16() argument
630 AcpiRsOutInteger32(const char * Title,UINT32 Value) AcpiRsOutInteger32() argument
639 AcpiRsOutInteger64(const char * Title,UINT64 Value) AcpiRsOutInteger64() argument
[all...]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DPredicateExpander.h47 void setByRef(bool Value) { EmitCallsByRef = Value; } in setByRef()
49 void setNegatePredicate(bool Value) { NegatePredicate = Value; } in setNegatePredicate()
50 void setExpandForMC(bool Value) { ExpandForMC = Value; } in setExpandForMC()
119 void setExpandDefinition(bool Value) { ExpandDefinition = Value; } in setExpandDefinition()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DASTRecordWriter.h143 void writeBool(bool Value) { in writeBool()
147 void writeUInt32(uint32_t Value) { in writeUInt32()
151 void writeUInt64(uint64_t Value) { in writeUInt64()
156 void AddAPInt(const llvm::APInt &Value) { in AddAPInt()
161 void AddAPSInt(const llvm::APSInt &Value) { in AddAPSInt()
169 void AddAPValue(const APValue &Value) { writeAPValue(Value); } in AddAPValue()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h27 /* implicit */ APSIntType(const llvm::APSInt &Value) in APSIntType()
37 void apply(llvm::APSInt &Value) const { in apply()
48 llvm::APSInt convert(const llvm::APSInt &Value) const LLVM_READONLY { in convert()

12345678910>>...40