HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 126 - 150 of 3955) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.h 49 // scratch value for a single assignment:
52 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 *)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
EnumClass.h 90 typedef enum Definition::Enums Value;
93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value; }
105 ALWAYS_INLINE bool operator!=(const Value value) { return m_value != value;
    [all...]
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
Path2D.h 28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8::FunctionCallbackInfo<v8::Value>& args);
39 static void BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
40 static void Arc(const v8::FunctionCallbackInfo<v8::Value>& args);
41 static void Rect(const v8::FunctionCallbackInfo<v8::Value>& args);
42 static void Oval(const v8::FunctionCallbackInfo<v8::Value>& args);
43 static void ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
  /external/skia/experimental/SkV8Example/
Path2D.h 28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args);
34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args);
35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
38 const v8::FunctionCallbackInfo<v8::Value>& args);
39 static void BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args);
40 static void Arc(const v8::FunctionCallbackInfo<v8::Value>& args);
41 static void Rect(const v8::FunctionCallbackInfo<v8::Value>& args);
42 static void Oval(const v8::FunctionCallbackInfo<v8::Value>& args);
43 static void ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_UnpackBlock4x4_s.s 35 Value RN 4
50 MOV Value, #0 ;// Initialize the zero value
51 MOV Value2, #0 ;// Initialize the zero value
54 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0
55 STRD Value, [pDst, #8] ;// pDst[4] = pDst[5] = pDst[6] = pDst[7] = 0
56 STRD Value, [pDst, #16] ;// pDst[8] = pDst[9] = pDst[10] = pDst[11] = 0
57 STRD Value, [pDst, #24] ;// pDst[12] = pDst[13] = pDst[14] = pDst[15] = 0
66 ;// Next, to compute the offset, where the unpacked value needs to be stored,
74 LDRBNE Value, [pSrc], #2
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_UnpackBlock4x4_s.s 35 Value RN 4
50 MOV Value, #0 ;// Initialize the zero value
51 MOV Value2, #0 ;// Initialize the zero value
54 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0
55 STRD Value, [pDst, #8] ;// pDst[4] = pDst[5] = pDst[6] = pDst[7] = 0
56 STRD Value, [pDst, #16] ;// pDst[8] = pDst[9] = pDst[10] = pDst[11] = 0
57 STRD Value, [pDst, #24] ;// pDst[12] = pDst[13] = pDst[14] = pDst[15] = 0
66 ;// Next, to compute the offset, where the unpacked value needs to be stored,
74 LDRBNE Value, [pSrc], #2
    [all...]
  /external/chromium_org/tools/gn/
function_set_default_toolchain.cc 46 Value RunSetDefaultToolchain(Scope* scope,
48 const std::vector<Value>& args,
54 return Value();
62 return Value();
68 return Value();
72 return Value();
75 return Value();
function_set_defaults.cc 43 Value RunSetDefaults(Scope* scope,
45 const std::vector<Value>& args,
49 return Value();
70 return Value();
75 return Value();
82 return Value();
89 return Value();
function_template.cc 10 #include "tools/gn/value.h"
148 Value RunTemplate(Scope* scope,
150 const std::vector<Value>& args,
158 return Value();
160 if (!args[0].VerifyTypeIs(Value::STRING, err))
161 return Value();
170 return Value();
174 return Value();
functions.h 22 class Value;
31 typedef Value (*SelfEvaluatingArgsFunction)(Scope* scope,
37 typedef Value (*GenericBlockFunction)(Scope* scope,
39 const std::vector<Value>& args,
46 typedef Value(*ExecutedBlockFunction)(const FunctionCallNode* function,
47 const std::vector<Value>& args,
52 typedef Value (*NoBlockFunction)(Scope* scope,
54 const std::vector<Value>& args,
60 Value RunAction(Scope* scope,
62 const std::vector<Value>& args
    [all...]
value.h 19 // Represents a variable value in the interpreter.
20 class Value {
31 Value();
32 Value(const ParseNode* origin, Type t);
33 Value(const ParseNode* origin, bool bool_val);
34 Value(const ParseNode* origin, int64 int_val);
35 Value(const ParseNode* origin, std::string str_val);
36 Value(const ParseNode* origin, const char* str_val);
42 Value(const ParseNode* origin, scoped_ptr<Scope> scope);
44 Value(const Value& other)
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_sampler.java 39 b.setMinification(Sampler.Value.NEAREST);
40 b.setMagnification(Sampler.Value.NEAREST);
41 b.setWrapS(Sampler.Value.CLAMP);
42 b.setWrapT(Sampler.Value.CLAMP);
49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR);
53 b.setMagnification(Sampler.Value.LINEAR);
57 b.setWrapS(Sampler.Value.WRAP);
61 b.setWrapT(Sampler.Value.WRAP);
85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
86 minification.getMagnification() == Sampler.Value.NEAREST)
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_sampler.java 39 b.setMinification(Sampler.Value.NEAREST);
40 b.setMagnification(Sampler.Value.NEAREST);
41 b.setWrapS(Sampler.Value.CLAMP);
42 b.setWrapT(Sampler.Value.CLAMP);
49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR);
53 b.setMagnification(Sampler.Value.LINEAR);
57 b.setWrapS(Sampler.Value.WRAP);
61 b.setWrapT(Sampler.Value.WRAP);
85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST",
86 minification.getMagnification() == Sampler.Value.NEAREST)
    [all...]
  /art/runtime/base/
histogram-inl.h 31 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
32 CHECK_GE(value, static_cast<Value>(0));
33 if (value >= max_) {
34 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_;
39 BucketiseValue(value);
226 double value = lower_value + (upper_value - lower_value) * local
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
value.cpp 20 #include "value.h"
33 POD GetPODValue(Value value) {
34 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD();
38 PTR GetPtrValue(Value value) {
39 return value.type == TYPEID ? reinterpret_cast<PTR>(value.value) : NULL
    [all...]
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 82 void setAvailableFeatures(uint64_t Value) { AvailableFeatures = Value; }
85 void setUseMarkup(bool Value) { UseMarkup = Value; }
92 void setPrintImmHex(bool Value) { PrintImmHex = Value; }
95 void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
98 format_object1<int64_t> formatImm(const int64_t Value) const { return PrintImmHex ? formatHex(Value) : formatDec(Value);
    [all...]
  /bootable/recovery/edify/
expr.h 34 // uses this value.
55 } Value;
57 typedef Value* (*Function)(const char* name, State* state,
69 // evaluate it, return the resulting Value. The caller takes
70 // ownership of the returned Value.
71 Value* EvaluateValue(State* state, Expr* expr);
81 Value* Literal(const char* name, State* state, int argc, Expr* argv[]);
86 Value* ConcatFn(const char* name, State* state, int argc, Expr* argv[]);
87 Value* LogicalAndFn(const char* name, State* state, int argc, Expr* argv[]);
88 Value* LogicalOrFn(const char* name, State* state, int argc, Expr* argv[])
    [all...]
  /external/jsoncpp/include/json/
writer.h 10 # include "value.h"
17 class Value;
26 virtual std::string write( const Value &root ) = 0;
29 /** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format without formatting (not human friendly).
33 * \sa Reader, Value
44 virtual std::string write( const Value &root );
47 void writeValue( const Value &value );
53 /** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a human friendly way.
56 * - Object value
    [all...]
  /external/chromium_org/gin/
converter.cc 19 using v8::Value;
23 Handle<Value> Converter<bool>::ToV8(Isolate* isolate, bool val) {
24 return Boolean::New(isolate, val).As<Value>();
27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) {
32 Handle<Value> Converter<int32_t>::ToV8(Isolate* isolate, int32_t val) {
33 return Integer::New(isolate, val).As<Value>();
36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val,
44 Handle<Value> Converter<uint32_t>::ToV8(Isolate* isolate, uint32_t val) {
45 return Integer::NewFromUnsigned(isolate, val).As<Value>();
48 bool Converter<uint32_t>::FromV8(Isolate* isolate, Handle<Value> val
    [all...]
  /external/llvm/include/llvm/IR/
IntrinsicInst.h 53 static inline bool classof(const Value *V) {
72 static inline bool classof(const Value *V) {
76 static Value *StripCast(Value *C);
83 Value *getAddress() const;
90 static inline bool classof(const Value *V) {
95 /// DbgValueInst - This represents the llvm.dbg.value instruction.
99 const Value *getValue() const;
100 Value *getValue();
103 const_cast<Value*>(getArgOperand(1)))->getZExtValue()
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 25 * Converts a double precision value into a short int after rounding
28 * [in] Value Float value to be converted
30 * Return Value:
31 * [out] converted value in OMX_S16 format
35 OMX_S16 armRoundFloatToS16 (OMX_F64 Value)
37 if (Value > 0)
39 return (OMX_S16)(Value + .5);
43 return (OMX_S16)(Value - .5);
51 * Converts a double precision value into a int after roundin
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 25 * Converts a double precision value into a short int after rounding
28 * [in] Value Float value to be converted
30 * Return Value:
31 * [out] converted value in OMX_S16 format
35 OMX_S16 armRoundFloatToS16 (OMX_F64 Value)
37 if (Value > 0)
39 return (OMX_S16)(Value + .5);
43 return (OMX_S16)(Value - .5);
51 * Converts a double precision value into a int after roundin
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 25 * Converts a double precision value into a short int after rounding
28 * [in] Value Float value to be converted
30 * Return Value:
31 * [out] converted value in OMX_S16 format
35 OMX_S16 armRoundFloatToS16 (OMX_F64 Value)
37 if (Value > 0)
39 return (OMX_S16)(Value + .5);
43 return (OMX_S16)(Value - .5);
51 * Converts a double precision value into a int after roundin
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
json.cc 36 bool GetStringFromJson(const Json::Value& in, std::string* out) {
57 bool GetIntFromJson(const Json::Value& in, int* out) {
77 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) {
97 bool GetBoolFromJson(const Json::Value& in, bool* out) {
118 bool GetDoubleFromJson(const Json::Value& in, double* out) {
139 bool JsonArrayToVector(const Json::Value& value,
140 bool (*getter)(const Json::Value& in, T* out),
143 if (!value.isArray()) {
147 for (Json::Value::ArrayIndex i = 0; i < value.size(); ++i)
311 std::string value = w.write(json); local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
json.cc 19 bool GetStringFromJson(const Json::Value& in, std::string* out) {
40 bool GetIntFromJson(const Json::Value& in, int* out) {
60 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) {
80 bool GetBoolFromJson(const Json::Value& in, bool* out) {
101 bool GetDoubleFromJson(const Json::Value& in, double* out) {
122 bool JsonArrayToVector(const Json::Value& value,
123 bool (*getter)(const Json::Value& in, T* out),
126 if (!value.isArray()) {
130 for (Json::Value::ArrayIndex i = 0; i < value.size(); ++i)
294 std::string value = w.write(json); local
    [all...]

Completed in 606 milliseconds

1 2 3 4 56 7 8 91011>>