HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 26 - 50 of 2613) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 22 class Value;
37 /// <=> Value Definition
53 /// Non-NULL return value will be a true or false constant.
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
SimplifyLibCalls.h 24 class Value;
48 /// optimal value to replace the instruction with or 0 if a more
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)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Property.h 11 UString Value;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Value.java 33 * An immutable symbolic value for semantic interpretation of bytecode.
37 public interface Value {
40 * Returns the size of this value in words.
  /external/proguard/src/proguard/evaluation/value/
Category1Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
28 public abstract class Category1Value extends Value
30 // Implementations for Value.
Category2Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
28 public abstract class Category2Value extends Value
30 // Implementations for Value.
  /external/google-breakpad/src/processor/
static_map_iterator-inl.h 44 template<typename Key, typename Value, typename Compare>
45 StaticMapIterator<Key, Value, Compare>::StaticMapIterator(const char* base,
57 template<typename Key, typename Value, typename Compare>
58 StaticMapIterator<Key, Value, Compare>&
59 StaticMapIterator<Key, Value, Compare>::operator++() {
68 template<typename Key, typename Value, typename Compare>
69 StaticMapIterator<Key, Value, Compare>
70 StaticMapIterator<Key, Value, Compare>::operator++(int postfix_operator) {
75 StaticMapIterator<Key, Value, Compare> tmp = *this;
80 template<typename Key, typename Value, typename Compare
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
SubtractFunction.java 20 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]; local
31 return literalConstant(0 - value.asNumber(), value);
33 Value left = args[0];
34 Value right = args[1]
    [all...]
ExistsFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.exists(), value);
NotFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(!value.asBoolean(), value);
NumericFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
24 * #X (numeric). Forces a value to a number.
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.asNumber(), value);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SamplerTest.java 20 import android.renderscript.Sampler.Value;
24 Sampler.Value[] mMinValues;
25 Sampler.Value[] mMagValues;
26 Sampler.Value[] mWrapValues;
32 mMinValues = new Sampler.Value[4];
33 mMinValues[0] = Sampler.Value.NEAREST;
34 mMinValues[1] = Sampler.Value.LINEAR;
35 mMinValues[2] = Sampler.Value.LINEAR_MIP_LINEAR;
36 mMinValues[3] = Sampler.Value.LINEAR_MIP_NEAREST;
38 mMagValues = new Sampler.Value[2]
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
LengthFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
29 * @param args A single string value
30 * @return Length as number value
32 public Value execute(Value... args) {
33 Value value = args[0]; local
34 return literalConstant(value.asString().length(), value);
    [all...]
  /art/compiler/optimizing/
induction_var_range.h 27 * a conservative lower and upper bound value on each instruction in the HIR.
34 * wrap-around anywhere in the range depending on the actual value of x.
39 * A value that can be represented as "a * instruction + b" for 32-bit constants, where
40 * Value() denotes an unknown lower and upper bound. Although range analysis could yield
44 struct Value {
45 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
46 Value(HInstruction* i, int32_t a, int32_t b)
48 explicit Value(int32_t b) : Value(nullptr, 0, b) {}
53 // If true, represented by prior fields. Otherwise unknown value
    [all...]
induction_var_range_test.cc 26 using Value = InductionVarRange::Value;
44 void ExpectEqual(Value v1, Value v2) {
199 Value GetMin(HInductionVarAnalysis::InductionInfo* info,
204 Value GetMax(HInductionVarAnalysis::InductionInfo* info,
209 Value GetMul(HInductionVarAnalysis::InductionInfo* info1,
215 Value GetDiv(HInductionVarAnalysis::InductionInfo* info1,
221 bool IsExact(HInductionVarAnalysis::InductionInfo* info, int64_t* value) {
222 return range_.IsConstant(info, InductionVarRange::kExact, value);
262 int64_t value; local
    [all...]
  /build/kati/
expr.h 38 class Value : public Evaluable {
40 virtual ~Value();
42 virtual Value* Compact() { return this; }
51 Value();
62 Value* ParseExprImpl(const Loc& loc, StringPiece s, const char* terms,
65 Value* ParseExpr(const Loc& loc, StringPiece s,
68 string JoinValues(const vector<Value*>& vals, const char* sep);
70 Value* NewExpr2(Value* v1, Value* v2)
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
call_stack.hpp 26 template <typename Key, typename Value = unsigned char>
30 // Context class automatically pushes the key/value pair on to the stack.
38 next_(call_stack<Key, Value>::top_)
41 call_stack<Key, Value>::top_ = this;
44 // Push the key/value pair on to the stack.
45 context(Key* k, Value& v)
48 next_(call_stack<Key, Value>::top_)
50 call_stack<Key, Value>::top_ = this;
53 // Pop the key/value pair from the stack.
56 call_stack<Key, Value>::top_ = next_
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 5 /** Sometimes we need to map a key to a value but key is two pieces of data.
9 public class DoubleKeyMap<Key1, Key2, Value> {
10 Map<Key1, Map<Key2, Value>> data = new LinkedHashMap<Key1, Map<Key2, Value>>();
12 public Value put(Key1 k1, Key2 k2, Value v) {
13 Map<Key2, Value> data2 = data.get(k1);
14 Value prev = null;
16 data2 = new LinkedHashMap<Key2, Value>();
26 public Value get(Key1 k1, Key2 k2)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.h 20 #include "llvm/IR/Value.h"
37 bool isTexture(const llvm::Value &);
38 bool isSurface(const llvm::Value &);
39 bool isSampler(const llvm::Value &);
40 bool isImage(const llvm::Value &);
41 bool isImageReadOnly(const llvm::Value &);
42 bool isImageWriteOnly(const llvm::Value &);
43 bool isImageReadWrite(const llvm::Value &);
44 bool isManaged(const llvm::Value &);
46 std::string getTextureName(const llvm::Value &)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysis.h 32 class Value;
53 typedef std::pair<const Value *, const Value *> ValuePairTy;
57 bool relatedCheck(const Value *A, const Value *B, const DataLayout &DL);
58 bool relatedSelect(const SelectInst *A, const Value *B);
59 bool relatedPHI(const PHINode *A, const Value *B);
71 bool related(const Value *A, const Value *B, const DataLayout &DL);
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float Value;
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Sampler.java 30 public enum Value {
40 Value(int id) {
45 Value mMin;
46 Value mMag;
47 Value mWrapS;
48 Value mWrapT;
49 Value mWrapR;
60 public Value getMinification() {
67 public Value getMagnification() {
74 public Value getWrapS()
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p9.cpp 9 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/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/
MaxFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
34 public Value execute(Value... args) {
35 Value left = args[0];
36 Value right = args[1];
MinFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
34 public Value execute(Value... args) {
35 Value left = args[0];
36 Value right = args[1];

Completed in 538 milliseconds

12 3 4 5 6 7 8 91011>>