Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 3244) sorted by relevance

12345678910>>...130

/external/swiftshader/src/Reactor/
DNucleus.hpp26 class Value;
58 static Value *allocateStackVariable(Type *type, int arraySize = 0);
64 static Value *getArgument(unsigned int index);
68 static void createRet(Value *V);
70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse);
73 static Value *createAdd(Value *lhs, Value *rhs);
74 static Value *createSub(Value *lhs, Value *rhs);
75 static Value *createMul(Value *lhs, Value *rhs);
76 static Value *createUDiv(Value *lhs, Value *rhs);
77 static Value *createSDiv(Value *lhs, Value *rhs);
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.h53 Value *VIMMED1(int i);
54 Value *VIMMED1(uint32_t i);
55 Value *VIMMED1(float i);
56 Value *VIMMED1(bool i);
57 Value *VUNDEF(Type* t);
58 Value *VUNDEF_F();
59 Value *VUNDEF_I();
60 Value *VUNDEF(Type* ty, uint32_t size);
61 Value *VUNDEF_IPTR();
63 Value *VINSERT(Value *vec, Value *val, uint64_t index);
[all …]
Dbuilder_misc.cpp194 Value *Builder::VIMMED1(int i) in VIMMED1()
199 Value *Builder::VIMMED1(uint32_t i) in VIMMED1()
204 Value *Builder::VIMMED1(float i) in VIMMED1()
209 Value *Builder::VIMMED1(bool i) in VIMMED1()
214 Value *Builder::VUNDEF_IPTR() in VUNDEF_IPTR()
219 Value *Builder::VUNDEF_I() in VUNDEF_I()
224 Value *Builder::VUNDEF(Type *ty, uint32_t size) in VUNDEF()
229 Value *Builder::VUNDEF_F() in VUNDEF_F()
234 Value *Builder::VUNDEF(Type* t) in VUNDEF()
240 Value *Builder::VINSERT(Value *vec, Value *val, uint64_t index) in VINSERT()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DInstructionSimplify.h25 class Value; variable
32 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
37 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
47 Value *SimplifySDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
52 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
57 Value *SimplifyFDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
62 Value *SimplifySRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
67 Value *SimplifyURemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
72 Value *SimplifyFRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
[all …]
/external/llvm/include/llvm/Support/
DScopedPrinter.h34 T Value; member
35 EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {} in EnumEntry()
36 EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {} in EnumEntry()
44 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber()
45 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber()
46 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) {} in HexNumber()
47 HexNumber(signed int Value) : Value(static_cast<unsigned int>(Value)) {} in HexNumber()
48 HexNumber(signed long Value) : Value(static_cast<unsigned long>(Value)) {} in HexNumber()
49 HexNumber(signed long long Value) in HexNumber()
50 : Value(static_cast<unsigned long long>(Value)) {} in HexNumber()
[all …]
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp21 VariantValue Value = kUnsigned; in TEST() local
23 EXPECT_TRUE(Value.isUnsigned()); in TEST()
24 EXPECT_EQ(kUnsigned, Value.getUnsigned()); in TEST()
26 EXPECT_TRUE(Value.hasValue()); in TEST()
27 EXPECT_FALSE(Value.isString()); in TEST()
28 EXPECT_FALSE(Value.isMatcher()); in TEST()
33 VariantValue Value = kString; in TEST() local
35 EXPECT_TRUE(Value.isString()); in TEST()
36 EXPECT_EQ(kString, Value.getString()); in TEST()
37 EXPECT_EQ("String", Value.getTypeAsString()); in TEST()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DBuildLibCalls.h21 class Value; variable
33 Value *castToCStr(Value *V, IRBuilder<> &B);
38 Value *emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL,
44 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
50 Value *emitStrChr(Value *Ptr, char C, IRBuilder<> &B,
54 Value *emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
59 Value *emitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
64 Value *emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
75 Value *emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
[all …]
DSimplifyLibCalls.h24 class Value; variable
51 Value *optimizeCall(CallInst *CI);
54 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
55 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
77 function_ref<void(Instruction *, Value *)> Replacer;
83 static void replaceAllUsesWithDefault(Instruction *I, Value *With);
86 void replaceAllUsesWith(Instruction *I, Value *With);
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMathExtras.h26 inline uint32_t Hi_32(uint64_t Value) { in Hi_32() argument
27 return static_cast<uint32_t>(Value >> 32); in Hi_32()
31 inline uint32_t Lo_32(uint64_t Value) { in Lo_32() argument
32 return static_cast<uint32_t>(Value); in Lo_32()
88 inline bool isMask_32(uint32_t Value) { in isMask_32() argument
89 return Value && ((Value + 1) & Value) == 0; in isMask_32()
95 inline bool isMask_64(uint64_t Value) { in isMask_64() argument
96 return Value && ((Value + 1) & Value) == 0; in isMask_64()
102 inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() argument
103 return isMask_32((Value - 1) | Value); in isShiftedMask_32()
[all …]
DIRBuilder.h178 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
275 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align,
280 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
286 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
291 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
297 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
302 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
307 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = 0);
311 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = 0);
314 Value *getCastedInt8PtrValue(Value *Ptr);
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
DBuildLibCalls.h21 class Value; variable
25 Value *CastToCStr(Value *V, IRBuilder<> &B);
30 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD);
35 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD);
38 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
43 Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
48 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
54 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
59 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
63 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
DARMAsmBackend.cpp170 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) { in adjustFixupValue() argument
177 return Value; in adjustFixupValue()
179 Value >>= 16; in adjustFixupValue()
184 unsigned Hi4 = (Value & 0xF000) >> 12; in adjustFixupValue()
185 unsigned Lo12 = Value & 0x0FFF; in adjustFixupValue()
188 Value = (Hi4 << 16) | (Lo12); in adjustFixupValue()
189 return Value; in adjustFixupValue()
192 Value >>= 16; in adjustFixupValue()
198 unsigned Hi4 = (Value & 0xF000) >> 12; in adjustFixupValue()
199 unsigned i = (Value & 0x800) >> 11; in adjustFixupValue()
[all …]
/external/llvm/include/llvm/Analysis/
DInstructionSimplify.h47 class Value; variable
51 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
60 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
69 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF,
78 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF,
87 Value *SimplifyFMulInst(Value *LHS, Value *RHS, FastMathFlags FMF,
96 Value *SimplifyMulInst(Value *LHS, Value *RHS, const DataLayout &DL,
104 Value *SimplifySDivInst(Value *LHS, Value *RHS, const DataLayout &DL,
112 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const DataLayout &DL,
120 Value *SimplifyFDivInst(Value *LHS, Value *RHS, FastMathFlags FMF,
[all …]
/external/llvm/lib/DebugInfo/CodeView/
DTypeRecordBuilder.cpp24 void TypeRecordBuilder::writeUInt8(uint8_t Value) { in writeUInt8() argument
25 Writer.write(Value); in writeUInt8()
28 void TypeRecordBuilder::writeInt16(int16_t Value) { in writeInt16() argument
29 Writer.write(Value); in writeInt16()
32 void TypeRecordBuilder::writeUInt16(uint16_t Value) { in writeUInt16() argument
33 Writer.write(Value); in writeUInt16()
36 void TypeRecordBuilder::writeInt32(int32_t Value) { in writeInt32() argument
37 Writer.write(Value); in writeInt32()
40 void TypeRecordBuilder::writeUInt32(uint32_t Value) { in writeUInt32() argument
41 Writer.write(Value); in writeUInt32()
[all …]
/external/llvm/tools/llvm-readobj/
DARMAttributeParser.cpp77 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local
79 return Value; in ParseInteger()
107 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute() argument
113 SW.printNumber("Value", Value); in PrintAttribute()
128 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local
130 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in CPU_arch()
131 PrintAttribute(Tag, Value, ValueDesc); in CPU_arch()
155 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local
157 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in ARM_ISA_use()
158 PrintAttribute(Tag, Value, ValueDesc); in ARM_ISA_use()
[all …]
/external/llvm/include/llvm/Object/
DRelocVisitor.h33 int64_t Value; member
38 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} in RelocToApply()
39 RelocToApply() : Value(0), Width(0) {} in RelocToApply()
51 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t Value = 0) {
53 return visitELF(RelocType, R, Value);
55 return visitCOFF(RelocType, R, Value);
57 return visitMachO(RelocType, R, Value);
69 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() argument
77 return visitELF_X86_64_64(R, Value); in visitELF()
79 return visitELF_X86_64_PC32(R, Value); in visitELF()
[all …]
/external/swiftshader/third_party/LLVM/lib/Object/
DMachOObject.cpp25 static void SwapValue(T &Value) { in SwapValue() argument
26 Value = sys::SwapByteOrder(Value); in SwapValue()
30 static void SwapStruct(T &Value);
170 void SwapStruct(macho::SegmentLoadCommand &Value) { in SwapStruct() argument
171 SwapValue(Value.Type); in SwapStruct()
172 SwapValue(Value.Size); in SwapStruct()
173 SwapValue(Value.VMAddress); in SwapStruct()
174 SwapValue(Value.VMSize); in SwapStruct()
175 SwapValue(Value.FileOffset); in SwapStruct()
176 SwapValue(Value.FileSize); in SwapStruct()
[all …]
/external/llvm/include/llvm/IR/
DIRBuilder.h387 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align,
395 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
405 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
414 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
426 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
434 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
442 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = nullptr);
447 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = nullptr);
450 CallInst *CreateMaskedLoad(Value *Ptr, unsigned Align, Value *Mask,
451 Value *PassThru = nullptr, const Twine &Name = "");
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 Instruction *mkLoad(DataType, Value *dst, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 LValue *mkLoadv(DataType, Symbol *, Value *ptr);
[all …]
/external/regex-re2/util/
Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray() in SparseArray()
237 template<typename Value>
238 class SparseArray<Value>::IndexValue {
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/
DValue.h35 template <typename ValueTy = Value>
37 typedef StringMapEntry<Value*> ValueName;
63 class Value {
86 void operator=(const Value &); // Do not implement
87 Value(const Value &); // Do not implement
94 Value(Type *Ty, unsigned scid);
96 virtual ~Value();
142 void takeName(Value *V);
148 void replaceAllUsesWith(Value *V);
257 bool hasSameSubclassOptionalData(const Value *V) const { in hasSameSubclassOptionalData()
[all …]
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DWrappers.cs92 public double Value { property in Google.Protobuf.WellKnownTypes.DoubleValue
110 if (Value != other.Value) return false; in Equals()
116 if (Value != 0D) hash ^= Value.GetHashCode(); in GetHashCode()
125 if (Value != 0D) { in WriteTo()
127 output.WriteDouble(Value); in WriteTo()
133 if (Value != 0D) { in CalculateSize()
143 if (other.Value != 0D) { in MergeFrom()
144 Value = other.Value; in MergeFrom()
156 Value = input.ReadDouble(); in MergeFrom()
203 public float Value { property in Google.Protobuf.WellKnownTypes.FloatValue
[all …]
/external/jsoncpp/src/lib_json/
Djson_value.cpp36 static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = { 0 };
38 const Value& Value::null = reinterpret_cast<const Value&>(kNullRef);
40 const Int Value::minInt = Int(~(UInt(-1) / 2));
41 const Int Value::maxInt = Int(UInt(-1) / 2);
42 const UInt Value::maxUInt = UInt(-1);
44 const Int64 Value::minInt64 = Int64(~(UInt64(-1) / 2));
45 const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2);
46 const UInt64 Value::maxUInt64 = UInt64(-1);
52 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));
53 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);
[all …]
/external/tcpdump/tests/
Dpimv2_dm-v.out4 Hold Time Option (1), length 2, Value: 1m45s
5 Generation ID Option (20), length 4, Value: 0xd76852f6
6 DR Priority Option (19), length 4, Value: 1
7 State Refresh Capability Option (21), length 4, Value: v1
11 Hold Time Option (1), length 2, Value: 1m45s
12 Generation ID Option (20), length 4, Value: 0xd767b714
13 DR Priority Option (19), length 4, Value: 1
14 State Refresh Capability Option (21), length 4, Value: v1
26 Hold Time Option (1), length 2, Value: 1m45s
27 Generation ID Option (20), length 4, Value: 0xd76852f6
[all …]
/external/r8/src/test/java/com/android/tools/r8/debug/
DLocalsTest.java10 import org.apache.harmony.jpda.tests.framework.jdwp.Value;
50 checkLocal("i", Value.createInt(Integer.MAX_VALUE)), in testUnusedLocal()
58 Value pValue = Value.createInt(10); in testConstantLocal()
59 Value cValue = Value.createInt(5); in testConstantLocal()
60 Value vValue = Value.createInt(pValue.getIntValue() + cValue.getIntValue()); in testConstantLocal()
84 Value pValue = Value.createInt(10); in testConstantLocalWithUpdate()
85 Value cValue = Value.createInt(5); in testConstantLocalWithUpdate()
86 Value newValue = Value.createInt(5); in testConstantLocalWithUpdate()
87 Value vValue = Value.createInt(pValue.getIntValue() + newValue.getIntValue()); in testConstantLocalWithUpdate()
113 final Value newValueForI = Value.createInt(10); in testZeroLocals()
[all …]

12345678910>>...130