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

1234567891011>>

/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.h15 inline bool isImmSExti16i8Value(uint64_t Value) { argument
16 return isInt<8>(Value) ||
17 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
20 inline bool isImmSExti32i8Value(uint64_t Value) { argument
21 return isInt<8>(Value) ||
22 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
25 inline bool isImmSExti64i8Value(uint64_t Value) { argument
26 return isInt<8>(Value);
29 isImmSExti64i32Value(uint64_t Value) argument
33 isImmUnsignedi8Value(uint64_t Value) argument
[all...]
/external/valgrind/none/tests/solaris/
H A Dcontext_link.stdout.exp0 Value is 42.
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h21 class Value;
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 *Pt
[all...]
H A DCmpInstAnalysis.h22 class Value;
37 /// <=> Value Definition
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
H A DSimplifyLibCalls.h24 class Value;
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 *Wit
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DInterpreter.java61 Value newValue(Type type);
75 Value newOperation(AbstractInsnNode insn) throws AnalyzerException;
90 Value copyOperation(AbstractInsnNode insn, Value value)
108 Value unaryOperation(AbstractInsnNode insn, Value value)
128 Value binaryOperation(AbstractInsnNode insn, Value value1, Value value2)
144 Value ternaryOperatio
[all...]
H A DValue.java37 public interface Value { interface
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp24 VariantValue Value = kUnsigned; local
26 EXPECT_TRUE(Value.isUnsigned());
27 EXPECT_EQ(kUnsigned, Value.getUnsigned());
29 EXPECT_TRUE(Value.hasValue());
30 EXPECT_FALSE(Value.isString());
31 EXPECT_FALSE(Value.isMatcher());
36 VariantValue Value = kString; local
38 EXPECT_TRUE(Value.isString());
39 EXPECT_EQ(kString, Value.getString());
40 EXPECT_EQ("String", Value
48 VariantValue Value = VariantMatcher::SingleMatcher(stmt()); local
77 VariantValue Value = StringRef("A"); local
110 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/clang/test/CodeGen/
H A Dtypedef.c3 typedef struct { int i; } Value; typedef in typeref:struct:__anon2082
4 typedef Value *PValue;
/external/llvm/tools/llvm-readobj/
H A DStreamWriter.h29 T Value; member in struct:llvm::EnumEntry
37 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) { } argument
38 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) { } argument
39 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) { } argument
40 HexNumber(signed int Value) argument
41 HexNumber(signed long Value) argument
42 HexNumber(signed long long Value) argument
43 HexNumber(unsigned char Value) argument
44 HexNumber(unsigned short Value) argument
45 HexNumber(unsigned int Value) argument
46 HexNumber(unsigned long Value) argument
47 HexNumber(unsigned long long Value) argument
48 uint64_t Value; member in struct:llvm::HexNumber
78 hex(T Value) argument
83 printEnum(StringRef Label, T Value, ArrayRef<EnumEntry<TEnum> > EnumValues) argument
103 printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags, TFlag EnumMask1 = {}, TFlag EnumMask2 = {}, TFlag EnumMask3 = {}) argument
138 printFlags(StringRef Label, T Value) argument
151 printNumber(StringRef Label, uint64_t Value) argument
152 startLine() << Label << ": " << Value << "\\n"; local
155 printNumber(StringRef Label, uint32_t Value) argument
156 startLine() << Label << ": " << Value << "\\n"; local
159 printNumber(StringRef Label, uint16_t Value) argument
160 startLine() << Label << ": " << Value << "\\n"; local
163 printNumber(StringRef Label, uint8_t Value) argument
167 printNumber(StringRef Label, int64_t Value) argument
168 startLine() << Label << ": " << Value << "\\n"; local
171 printNumber(StringRef Label, int32_t Value) argument
172 startLine() << Label << ": " << Value << "\\n"; local
175 printNumber(StringRef Label, int16_t Value) argument
176 startLine() << Label << ": " << Value << "\\n"; local
179 printNumber(StringRef Label, int8_t Value) argument
183 printBoolean(StringRef Label, bool Value) argument
214 printHex(StringRef Label, T Value) argument
219 printHex(StringRef Label, StringRef Str, T Value) argument
223 printString(StringRef Label, StringRef Value) argument
224 startLine() << Label << ": " << Value << "\\n"; local
227 printString(StringRef Label, const std::string &Value) argument
228 startLine() << Label << ": " << Value << "\\n"; local
232 printNumber(StringRef Label, StringRef Str, T Value) argument
233 startLine() << Label << ": " << Str << " (" << Value << ")\\n"; local
236 printBinary(StringRef Label, StringRef Str, ArrayRef<uint8_t> Value) argument
240 printBinary(StringRef Label, StringRef Str, ArrayRef<char> Value) argument
246 printBinary(StringRef Label, ArrayRef<uint8_t> Value) argument
250 printBinary(StringRef Label, ArrayRef<char> Value) argument
256 printBinary(StringRef Label, StringRef Value) argument
262 printBinaryBlock(StringRef Label, StringRef Value) 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/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dp9.cpp9 template<typename T, T Value>
12 template<typename T, T Value>
13 void f(X<T, Value>);
20 template<typename T, T Value, typename U>
21 void f2(X<T, Value>, X<U, Value>);
/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...]
/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/llvm/lib/MC/
H A DMCInstPrinter.cpp69 static bool needsLeadingZero(uint64_t Value) argument
71 while(Value)
73 uint64_t digit = (Value >> 60) & 0xf;
76 Value <<= 4;
81 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const {
82 return format("%" PRId64, Value);
85 format_object<int64_t> MCInstPrinter::formatHex(int64_t Value) const {
88 if (Value < 0)
89 return format("-0x%" PRIx64, -Value);
91 return format("0x%" PRIx64, Value);
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DProperty.h11 UString Value; member in struct:CProperty
/external/proguard/src/proguard/evaluation/value/
H A DCategory1Value.java28 public abstract class Category1Value extends Value
30 // Implementations for Value.
H A DCategory2Value.java28 public abstract class Category2Value extends Value
30 // Implementations for Value.
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DSubtractFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
30 Value value = args[0];
33 Value left = args[0];
34 Value right = args[1];

Completed in 929 milliseconds

1234567891011>>