Home
last modified time | relevance | path

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

12345678910>>...95

/external/llvm/tools/llvm-readobj/
DStreamWriter.h29 T Value; member
37 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) { } in HexNumber()
38 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) { } in HexNumber()
39 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) { } in HexNumber()
40 HexNumber(signed int Value) : Value(static_cast<unsigned int>(Value)) { } in HexNumber()
41 HexNumber(signed long Value) : Value(static_cast<unsigned long>(Value)) { } in HexNumber()
42 HexNumber(signed long long Value) : Value(static_cast<unsigned long long>(Value)) { } in HexNumber()
43 HexNumber(unsigned char Value) : Value(Value) { } in HexNumber()
44 HexNumber(unsigned short Value) : Value(Value) { } in HexNumber()
45 HexNumber(unsigned int Value) : Value(Value) { } in HexNumber()
[all …]
DARMAttributeParser.cpp76 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local
78 return Value; in ParseInteger()
106 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute() argument
112 SW.printNumber("Value", Value); in PrintAttribute()
127 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local
129 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in CPU_arch()
130 PrintAttribute(Tag, Value, ValueDesc); in CPU_arch()
154 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local
156 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in ARM_ISA_use()
157 PrintAttribute(Tag, Value, ValueDesc); in ARM_ISA_use()
[all …]
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp24 VariantValue Value = kUnsigned; in TEST() local
26 EXPECT_TRUE(Value.isUnsigned()); in TEST()
27 EXPECT_EQ(kUnsigned, Value.getUnsigned()); in TEST()
29 EXPECT_TRUE(Value.hasValue()); in TEST()
30 EXPECT_FALSE(Value.isString()); in TEST()
31 EXPECT_FALSE(Value.isMatcher()); in TEST()
36 VariantValue Value = kString; in TEST() local
38 EXPECT_TRUE(Value.isString()); in TEST()
39 EXPECT_EQ(kString, Value.getString()); in TEST()
40 EXPECT_EQ("String", Value.getTypeAsString()); in TEST()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DBuildLibCalls.h21 class Value; variable
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL,
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
43 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B,
47 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
52 Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
57 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
63 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
69 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/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 …]
DValueTracking.h35 class Value; variable
45 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
56 bool haveNoCommonBitsSet(Value *LHS, Value *RHS, const DataLayout &DL,
63 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
74 bool isKnownToBeAPowerOfTwo(Value *V, const DataLayout &DL,
84 bool isKnownNonZero(Value *V, const DataLayout &DL, unsigned Depth = 0,
90 bool isKnownNonNegative(Value *V, const DataLayout &DL, unsigned Depth = 0,
97 bool isKnownNonEqual(Value *V1, Value *V2, const DataLayout &DL,
111 bool MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL,
124 unsigned ComputeNumSignBits(Value *Op, const DataLayout &DL,
[all …]
/external/llvm/include/llvm/IR/
DIRBuilder.h365 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align,
373 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
383 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
392 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
404 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
412 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
420 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = nullptr);
425 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = nullptr);
428 CallInst *CreateMaskedLoad(Value *Ptr, unsigned Align, Value *Mask,
429 Value *PassThru = nullptr, const Twine &Name = "");
[all …]
DIntrinsicInst.h54 static inline bool classof(const Value *V) { in classof()
73 static inline bool classof(const Value *V) { in classof()
77 static Value *StripCast(Value *C);
84 Value *getAddress() const;
103 static inline bool classof(const Value *V) { in classof()
112 const Value *getValue() const;
113 Value *getValue();
116 const_cast<Value*>(getArgOperand(1)))->getZExtValue(); in getOffset()
136 static inline bool classof(const Value *V) { in classof()
145 Value *getRawDest() const { return const_cast<Value*>(getArgOperand(0)); } in getRawDest()
[all …]
/external/llvm/include/llvm/Object/
DRelocVisitor.h34 int64_t Value; member
39 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} in RelocToApply()
40 RelocToApply() : Value(0), Width(0) {} in RelocToApply()
52 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t Value = 0) {
54 return visitELF(RelocType, R, Value);
56 return visitCOFF(RelocType, R, Value);
58 return visitMachO(RelocType, R, Value);
70 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() argument
78 return visitELF_X86_64_64(R, Value); in visitELF()
80 return visitELF_X86_64_PC32(R, Value); in visitELF()
[all …]
/external/mesa3d/src/gallium/drivers/nv50/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 LValue *mkLoad(DataType, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 Instruction *mkMov(Value *, Value *, DataType = TYPE_U32);
[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/skia/tools/json/
DSkJSONCanvas.cpp27 fRoot[SKJSONCANVAS_VERSION] = Json::Value(1); in SkJSONCanvas()
35 Json::Value SkJSONCanvas::makePoint(const SkPoint& point) { in makePoint()
36 Json::Value result(Json::arrayValue); in makePoint()
37 result.append(Json::Value(point.x())); in makePoint()
38 result.append(Json::Value(point.y())); in makePoint()
42 Json::Value SkJSONCanvas::makePoint(SkScalar x, SkScalar y) { in makePoint()
43 Json::Value result(Json::arrayValue); in makePoint()
44 result.append(Json::Value(x)); in makePoint()
45 result.append(Json::Value(y)); in makePoint()
49 Json::Value SkJSONCanvas::makeRect(const SkRect& rect) { in makeRect()
[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 …]
Dpimv2_sm-v.out4 Hold Time Option (1), length 2, Value: 1m45s
5 Generation ID Option (20), length 4, Value: 0xd76fc4dc
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: 0xd77051ab
13 DR Priority Option (19), length 4, Value: 1
14 State Refresh Capability Option (21), length 4, Value: v1
24 Hold Time Option (1), length 2, Value: 1m45s
25 Generation ID Option (20), length 4, Value: 0xd76fc4dc
[all …]
Dradius-v.out4 NAS-IP-Address Attribute (4), length: 6, Value: 10.0.0.1
5 NAS-Port Attribute (5), length: 6, Value: 50012
6 NAS-Port-Type Attribute (61), length: 6, Value: Ethernet
7 User-Name Attribute (1), length: 14, Value: John.McGuirk
8 Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C
9 Calling-Station-Id Attribute (31), length: 19, Value: 00-14-22-E9-54-5E
10 Service-Type Attribute (6), length: 6, Value: Framed
11 Framed-MTU Attribute (12), length: 6, Value: 1500
12 EAP-Message Attribute (79), length: 19, Value: .
13 Message-Authenticator Attribute (80), length: 18, Value: (....$..p.Q1o.x.
[all …]
/external/webrtc/webrtc/base/
Djson.h30 bool GetIntFromJson(const Json::Value& in, int* out);
31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
32 bool GetStringFromJson(const Json::Value& in, std::string* out);
33 bool GetBoolFromJson(const Json::Value& in, bool* out);
34 bool GetDoubleFromJson(const Json::Value& in, double* out);
37 bool GetValueFromJsonArray(const Json::Value& in, size_t n,
38 Json::Value* out);
39 bool GetIntFromJsonArray(const Json::Value& in, size_t n,
41 bool GetUIntFromJsonArray(const Json::Value& in, size_t n,
43 bool GetStringFromJsonArray(const Json::Value& in, size_t n,
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DSetValues002Test.java21 import org.apache.harmony.jpda.tests.framework.jdwp.Value;
35 Value oldValue = new Value(StackTrace002Debuggee.BOOLEAN_PARAM_VALUE); in testSetValues001_Boolean()
36 Value newValue = new Value(StackTrace002Debuggee.BOOLEAN_PARAM_VALUE_TO_SET); in testSetValues001_Boolean()
52 Value oldValue = new Value(StackTrace002Debuggee.BYTE_PARAM_VALUE); in testSetValues002_Byte()
53 Value newValue = new Value(StackTrace002Debuggee.BYTE_PARAM_VALUE_TO_SET); in testSetValues002_Byte()
69 Value oldValue = new Value(StackTrace002Debuggee.CHAR_PARAM_VALUE); in testSetValues003_Char()
70 Value newValue = new Value(StackTrace002Debuggee.CHAR_PARAM_VALUE_TO_SET); in testSetValues003_Char()
86 Value oldValue = new Value(StackTrace002Debuggee.SHORT_PARAM_VALUE); in testSetValues004_Short()
87 Value newValue = new Value(StackTrace002Debuggee.SHORT_PARAM_VALUE_TO_SET); in testSetValues004_Short()
103 Value oldValue = new Value(StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_Int()
[all …]
/external/llvm/bindings/go/llvm/
Dir.go37 Value struct { struct
75 func (c Value) IsNil() bool { return c.C == nil } argument
85 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } argument
99 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { argument
634 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } argument
635 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } argument
636 func (v Value) SetName(name string) { argument
641 func (v Value) Dump() { C.LLVMDumpValue(v.C) } argument
642 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } argument
643 func (v Value) HasMetadata() bool { return C.LLVMHasMetadata(v.C) != 0 } argument
[all …]
/external/jsoncpp/include/json/
Dvalue.h116 class JSON_API Value {
136 static const Value& null;
189 typedef std::map<CZString, Value> ObjectValues;
191 typedef CppTL::SmallMap<CZString, Value> ObjectValues;
212 Value(ValueType type = nullValue);
213 Value(Int value);
214 Value(UInt value);
216 Value(Int64 value);
217 Value(UInt64 value);
219 Value(double value);
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DNewInstanceStringTest.java23 import org.apache.harmony.jpda.tests.framework.jdwp.Value;
53 public void provideConstructorArguments(List<Value> constructorArguments) { in testNewInstanceString_ByteArrayArgConstructor()
56 Value byteArrayValue = getStaticFieldValue(debuggeeClassId, "BYTE_ARRAY"); in testNewInstanceString_ByteArrayArgConstructor()
69 public void provideConstructorArguments(List<Value> constructorArguments) { in testNewInstanceString_ByteArrayIntIntConstructor()
72 Value byteArrayValue = getStaticFieldValue(debuggeeClassId, "BYTE_ARRAY"); in testNewInstanceString_ByteArrayIntIntConstructor()
74 constructorArguments.add(new Value(0)); in testNewInstanceString_ByteArrayIntIntConstructor()
75 constructorArguments.add(new Value(1)); in testNewInstanceString_ByteArrayIntIntConstructor()
88 public void provideConstructorArguments(List<Value> constructorArguments) { in testNewInstanceString_ByteArrayIntIntStringConstructor()
92 Value byteArrayValue = getStaticFieldValue(debuggeeClassId, "BYTE_ARRAY"); in testNewInstanceString_ByteArrayIntIntStringConstructor()
93 Value stringCharsetValue = getStaticFieldValue(debuggeeClassId, "STRING_CHARSET"); in testNewInstanceString_ByteArrayIntIntStringConstructor()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMAsmBackend.cpp188 uint64_t Value) const { in reasonForFixupRelaxation()
197 int64_t Offset = int64_t(Value) - 4; in reasonForFixupRelaxation()
209 int64_t Offset = int64_t(Value) - 4; in reasonForFixupRelaxation()
218 int64_t Offset = int64_t(Value) - 4; in reasonForFixupRelaxation()
229 int64_t Offset = (Value & ~1); in reasonForFixupRelaxation()
240 bool ARMAsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, in fixupNeedsRelaxation() argument
243 return reasonForFixupRelaxation(Fixup, Value); in fixupNeedsRelaxation()
316 static uint32_t swapHalfWords(uint32_t Value, bool IsLittleEndian) { in swapHalfWords() argument
320 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; in swapHalfWords()
321 Swapped |= (Value & 0x0000FFFF) << 16; in swapHalfWords()
[all …]
/external/llvm/include/llvm/Support/
DLEB128.h23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { in encodeSLEB128() argument
26 uint8_t Byte = Value & 0x7f; in encodeSLEB128()
28 Value >>= 7; in encodeSLEB128()
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) || in encodeSLEB128()
30 ((Value == -1) && ((Byte & 0x40) != 0)))); in encodeSLEB128()
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS,
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7;
43 if (Value != 0 || Padding != 0)
46 } while (Value != 0);
[all …]
/external/llvm/lib/IR/
DIRBuilder.cpp46 Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) { in getCastedInt8PtrValue()
59 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, in createCallHelper()
68 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest, in createInvokeHelper()
70 ArrayRef<Value *> Ops, in createInvokeHelper()
82 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, in CreateMemSet()
86 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) }; in CreateMemSet()
89 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys); in CreateMemSet()
107 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, in CreateMemCpy()
113 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; in CreateMemCpy()
116 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys); in CreateMemCpy()
[all …]

12345678910>>...95