Searched refs:Value (Results 1 - 25 of 2676) sorted by relevance

1234567891011>>

/external/flatbuffers/net/FlatBuffers/
H A DOffset.cs24 public int Value; field in struct:FlatBuffers.T
27 Value = value;
33 public int Value; field in struct:FlatBuffers.StringOffset
36 Value = value;
42 public int Value; field in struct:FlatBuffers.VectorOffset
45 Value = value;
/external/llvm/include/llvm/CodeGen/
H A DAtomicExpandUtils.h14 class Value;
21 typedef function_ref<void(IRBuilder<> &, Value *, Value *, Value *,
22 AtomicOrdering, Value *&, Value *&)> CreateCmpXchgInstFun;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-union-template.cpp6 template <typename T> union Value { int a; }; union in namespace:PR15637
8 Value<float> tempValue;
10 Value<float> f;
13 // CHECK: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
/external/llvm/lib/Support/
H A DLEB128.cpp20 unsigned getULEB128Size(uint64_t Value) { argument
23 Value >>= 7;
25 } while (Value);
30 unsigned getSLEB128Size(int64_t Value) { argument
32 int Sign = Value >> (8 * sizeof(Value) - 1);
36 unsigned Byte = Value & 0x7f;
37 Value >>= 7;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParserCommon.h17 inline bool isImmSExti16i8Value(uint64_t Value) { argument
18 return isInt<8>(Value) ||
19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
22 inline bool isImmSExti32i8Value(uint64_t Value) { argument
23 return isInt<8>(Value) ||
24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
27 inline bool isImmSExti64i8Value(uint64_t Value) { argument
28 return isInt<8>(Value);
31 isImmSExti64i32Value(uint64_t Value) argument
35 isImmUnsignedi8Value(uint64_t Value) argument
[all...]
/external/valgrind/none/tests/solaris/
H A Dcontext_link.stdout.exp0 Value is 42.
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DValuePartial.cs35 public partial class Value class in namespace:Google.Protobuf.WellKnownTypes
38 /// Convenience method to create a Value message with a string value.
40 /// <param name="value">Value to set for the StringValue property.</param>
41 /// <returns>A newly-created Value message with the given value.</returns>
42 public static Value ForString(string value)
45 return new Value { StringValue = value };
49 /// Convenience method to create a Value message with a number value.
51 /// <param name="value">Value to set for the NumberValue property.</param>
52 /// <returns>A newly-created Value message with the given value.</returns>
53 public static Value ForNumbe
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h21 class Value;
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 *Pt
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DInstructionSimplify.h25 class Value;
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 *RH
[all...]
H A DValueTracking.h24 class Value;
39 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
58 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
69 bool MaskedValueIsZero(Value *V, const APInt &Mask,
81 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0,
89 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
96 bool CannotBeNegativeZero(const Value *
[all...]
H A DCaptureTracking.h18 class Value;
27 bool PointerMayBeCaptured(const Value *V,
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp21 VariantValue Value = kUnsigned; local
23 EXPECT_TRUE(Value.isUnsigned());
24 EXPECT_EQ(kUnsigned, Value.getUnsigned());
26 EXPECT_TRUE(Value.hasValue());
27 EXPECT_FALSE(Value.isString());
28 EXPECT_FALSE(Value.isMatcher());
33 VariantValue Value = kString; local
35 EXPECT_TRUE(Value.isString());
36 EXPECT_EQ(kString, Value.getString());
37 EXPECT_EQ("String", Value
45 VariantValue Value = VariantMatcher::SingleMatcher(stmt()); local
74 VariantValue Value = StringRef("A"); local
107 VariantValue Value; local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DAPSIntType.cpp16 APSIntType::testInRange(const llvm::APSInt &Value, argument
21 Value.isSigned() && Value.isNegative())
26 if (Value.isSigned() && !IsUnsigned)
27 MinBits = Value.getMinSignedBits();
29 MinBits = Value.getActiveBits();
36 if (Value.isSigned())
37 MinBits = Value.getMinSignedBits() - IsUnsigned;
39 MinBits = Value.getActiveBits() + !IsUnsigned;
45 if (Value
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h21 class Value;
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 *Ptr
[all...]
/external/clang/test/CodeGen/
H A Dtypedef.c3 typedef struct { int i; } Value; typedef in typeref:struct:__anon2259
4 typedef Value *PValue;
/external/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordBuilder.cpp24 void TypeRecordBuilder::writeUInt8(uint8_t Value) { argument
25 Writer.write(Value);
28 void TypeRecordBuilder::writeInt16(int16_t Value) { argument
29 Writer.write(Value);
32 void TypeRecordBuilder::writeUInt16(uint16_t Value) { argument
33 Writer.write(Value);
36 void TypeRecordBuilder::writeInt32(int32_t Value) { argument
37 Writer.write(Value);
40 void TypeRecordBuilder::writeUInt32(uint32_t Value) { argument
41 Writer.write(Value);
44 writeInt64(int64_t Value) argument
48 writeUInt64(uint64_t Value) argument
52 writeEncodedInteger(int64_t Value) argument
60 writeEncodedSignedInteger(int64_t Value) argument
79 writeEncodedUnsignedInteger(uint64_t Value) argument
94 writeNullTerminatedString(StringRef Value) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h26 inline uint32_t Hi_32(uint64_t Value) { argument
27 return static_cast<uint32_t>(Value >> 32);
31 inline uint32_t Lo_32(uint64_t Value) { argument
32 return static_cast<uint32_t>(Value);
88 inline bool isMask_32(uint32_t Value) { argument
89 return Value && ((Value + 1) & Value) == 0;
95 inline bool isMask_64(uint64_t Value) { argument
96 return Value
102 isShiftedMask_32(uint32_t Value) argument
108 isShiftedMask_64(uint64_t Value) argument
114 isPowerOf2_32(uint32_t Value) argument
120 isPowerOf2_64(uint64_t Value) argument
126 ByteSwap_16(uint16_t Value) argument
132 ByteSwap_32(uint32_t Value) argument
138 ByteSwap_64(uint64_t Value) argument
146 CountLeadingZeros_32(uint32_t Value) argument
174 CountLeadingOnes_32(uint32_t Value) argument
182 CountLeadingZeros_64(uint64_t Value) argument
226 CountLeadingOnes_64(uint64_t Value) argument
234 CountTrailingZeros_32(uint32_t Value) argument
251 CountTrailingOnes_32(uint32_t Value) argument
259 CountTrailingZeros_64(uint64_t Value) argument
278 CountTrailingOnes_64(uint64_t Value) argument
285 CountPopulation_32(uint32_t Value) argument
297 CountPopulation_64(uint64_t Value) argument
311 Log2_32(uint32_t Value) argument
317 Log2_64(uint64_t Value) argument
324 Log2_32_Ceil(uint32_t Value) argument
330 Log2_64_Ceil(uint64_t Value) argument
428 RoundUpToAlignment(uint64_t Value, uint64_t Align) argument
435 OffsetToAlignment(uint64_t Value, uint64_t Align) argument
[all...]
/external/webrtc/webrtc/base/
H A 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
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunction.java19 import com.google.clearsilver.jsilver.values.Value;
29 Value execute(Value... args);
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp4 struct Value { struct
5 constexpr Value(int n) : n(n) {} function in struct:Value
16 void test(Value v) {
20 case Value(2):
27 case Value(2):
36 case Value(2):
/external/llvm/include/llvm/Support/
H A DLEB128.h23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { argument
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS, argument
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7;
43 if (Value != 0 || Padding != 0)
46 } while (Value !
58 encodeULEB128(uint64_t Value, uint8_t *p, unsigned Padding = 0) argument
82 uint64_t Value = 0; local
96 int64_t Value = 0; local
[all...]
H A DScopedPrinter.h34 T Value; member in struct:llvm::EnumEntry
35 EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {}
36 EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {}
44 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} argument
45 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) {} argument
46 HexNumber(signed short Value) argument
47 HexNumber(signed int Value) argument
48 HexNumber(signed long Value) argument
49 HexNumber(signed long long Value) argument
51 HexNumber(unsigned char Value) argument
52 HexNumber(unsigned short Value) argument
53 HexNumber(unsigned int Value) argument
54 HexNumber(unsigned long Value) argument
55 HexNumber(unsigned long long Value) argument
56 uint64_t Value; member in struct:llvm::HexNumber
62 to_string(const T &Value) argument
65 stream << Value; local
91 hex(T Value) argument
94 printEnum(StringRef Label, T Value, ArrayRef<EnumEntry<TEnum>> EnumValues) argument
114 printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags, TFlag EnumMask1 = {}, TFlag EnumMask2 = {}, TFlag EnumMask3 = {}) argument
148 printFlags(StringRef Label, T Value) argument
161 printNumber(StringRef Label, uint64_t Value) argument
162 startLine() << Label << ": " << Value << "\\n"; local
165 printNumber(StringRef Label, uint32_t Value) argument
166 startLine() << Label << ": " << Value << "\\n"; local
169 printNumber(StringRef Label, uint16_t Value) argument
170 startLine() << Label << ": " << Value << "\\n"; local
173 printNumber(StringRef Label, uint8_t Value) argument
177 printNumber(StringRef Label, int64_t Value) argument
178 startLine() << Label << ": " << Value << "\\n"; local
181 printNumber(StringRef Label, int32_t Value) argument
182 startLine() << Label << ": " << Value << "\\n"; local
185 printNumber(StringRef Label, int16_t Value) argument
186 startLine() << Label << ": " << Value << "\\n"; local
189 printNumber(StringRef Label, int8_t Value) argument
193 printNumber(StringRef Label, const APSInt &Value) argument
194 startLine() << Label << ": " << Value << "\\n"; local
197 printBoolean(StringRef Label, bool Value) argument
244 printHex(StringRef Label, T Value) argument
248 printHex(StringRef Label, StringRef Str, T Value) argument
253 printSymbolOffset(StringRef Label, StringRef Symbol, T Value) argument
257 printString(StringRef Value) argument
259 printString(StringRef Label, StringRef Value) argument
260 startLine() << Label << ": " << Value << "\\n"; local
263 printString(StringRef Label, const std::string &Value) argument
264 startLine() << Label << ": " << Value << "\\n"; local
268 printNumber(StringRef Label, StringRef Str, T Value) argument
269 startLine() << Label << ": " << Str << " (" << Value << ")\\n"; local
272 printBinary(StringRef Label, StringRef Str, ArrayRef<uint8_t> Value) argument
276 printBinary(StringRef Label, StringRef Str, ArrayRef<char> Value) argument
282 printBinary(StringRef Label, ArrayRef<uint8_t> Value) argument
286 printBinary(StringRef Label, ArrayRef<char> Value) argument
292 printBinary(StringRef Label, StringRef Value) argument
298 printBinaryBlock(StringRef Label, ArrayRef<uint8_t> Value) argument
302 printBinaryBlock(StringRef Label, StringRef Value) argument
308 printObject(StringRef Label, const T &Value) argument
309 startLine() << Label << ": " << Value << "\\n"; local
320 printVersionInternal(T Value) argument
325 printVersionInternal(S Value, T Value2, TArgs... Args) argument
345 printHex(StringRef Label, support::ulittle16_t Value) argument
[all...]
/external/testng/src/main/java/org/testng/mustache/
H A DValue.java3 public class Value { class
6 public Value(Object object) { method in class:Value
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCObjectWriter.h114 void Write8(uint8_t Value) { argument
115 OS << char(Value);
118 void WriteLE16(uint16_t Value) { argument
119 Write8(uint8_t(Value >> 0));
120 Write8(uint8_t(Value >> 8));
123 void WriteLE32(uint32_t Value) { argument
124 WriteLE16(uint16_t(Value >> 0));
125 WriteLE16(uint16_t(Value >> 16));
128 void WriteLE64(uint64_t Value) { argument
129 WriteLE32(uint32_t(Value >>
133 WriteBE16(uint16_t Value) argument
138 WriteBE32(uint32_t Value) argument
143 WriteBE64(uint64_t Value) argument
148 Write16(uint16_t Value) argument
155 Write32(uint32_t Value) argument
162 Write64(uint64_t Value) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DInMemoryStruct.h43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} argument
44 InMemoryStruct(pointer Value) : Target(Value) {} argument
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; } argument
47 void operator=(const InMemoryStruct<T> &Value) { argument
48 if (Value.Target != &Value.Contents) {
49 Target = Value
[all...]

Completed in 1179 milliseconds

1234567891011>>