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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParserCommon.h 15 inline bool isImmSExti16i8Value(uint64_t Value) {
16 return (( Value <= 0x000000000000007FULL)||
17 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
18 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
21 inline bool isImmSExti32i8Value(uint64_t Value) {
22 return (( Value <= 0x000000000000007FULL)||
23 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)|
    [all...]
  /external/llvm/lib/Support/
LEB128.cpp 19 /// Utility function to get the size of the ULEB128-encoded value.
20 unsigned getULEB128Size(uint64_t Value) {
23 Value >>= 7;
25 } while (Value);
29 /// Utility function to get the size of the SLEB128-encoded value.
30 unsigned getSLEB128Size(int64_t Value) {
32 int Sign = Value >> (8 * sizeof(Value) - 1);
36 unsigned Byte = Value & 0x7f;
37 Value >>= 7
    [all...]
  /ndk/tests/device/test-cxx-init-array/jni/
global_ctor.cpp 3 GlobalCtor::GlobalCtor() : Value(42) { }
global_ctor.h 7 int Value;
14 return (Value == 42);
  /frameworks/base/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon38530
32 } Value;
34 // TODO: Probably should make these const Value*?
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value)
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-union-template.cpp 6 template <typename T> union Value { int a; };
7 void g(float value) {
8 Value<float> tempValue;
10 Value<float> f;
13 // CHECK: {{.*}}, metadata !"Value<float>", {{.*}}, null, metadata [[TTPARAM:.*]], metadata !"_ZTSN7PR156375ValueIfEE"} ; [ DW_TAG_union_type ] [Value<float>]
  /external/chromium_org/tools/gn/
scope_per_file_provider.h 24 virtual const Value* GetProgrammaticValue(
28 const Value* GetCurrentToolchain();
29 const Value* GetDefaultToolchain();
30 const Value* GetPythonPath();
31 const Value* GetRootBuildDir();
32 const Value* GetRootGenDir();
33 const Value* GetRootOutDir();
34 const Value* GetTargetGenDir();
35 const Value* GetTargetOutDir();
40 scoped_ptr<Value> current_toolchain_
    [all...]
value_unittest.cc 7 #include "tools/gn/value.h"
9 TEST(Value, ToString) {
10 Value strval(NULL, "hi\" $me\\you\\$\\\"");
15 EXPECT_EQ("<void>", Value().ToString(false));
18 Value listval(NULL, Value::LIST);
19 listval.list_value().push_back(Value(NULL, "hi\"me"));
20 listval.list_value().push_back(Value(NULL, true));
21 listval.list_value().push_back(Value(NULL, false));
22 listval.list_value().push_back(Value(NULL, static_cast<int64>(42)))
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Interpreter.java 50 * Creates a new value that represents the given type.
57 * represent an uninitialized value.
58 * @return a value that represents the given type. The size of the returned
59 * value must be equal to the size of the given type.
61 Value newValue(Type type);
75 Value newOperation(AbstractInsnNode insn) throws AnalyzerException;
78 * Interprets a bytecode instruction that moves a value on the stack or to
85 * @param value the value that must be moved by the instruction.
87 * returned value must be <tt>equal</tt> to the given value.
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 24 VariantValue Value = kUnsigned;
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;
38 EXPECT_TRUE(Value.isString());
39 EXPECT_EQ(kString, Value.getString());
40 EXPECT_EQ("String", Value.getTypeAsString())
    [all...]
  /external/clang/test/CodeGen/
ms-intrinsics.c 4 void *test_InterlockedExchangePointer(void * volatile *Target, void *Value) {
5 return _InterlockedExchangePointer(Target, Value);
8 // CHECK: define{{.*}}i8* @test_InterlockedExchangePointer(i8** %Target, i8* %Value){{.*}}{
10 // CHECK: %[[VALUE:[0-9]+]] = ptrtoint i8* %Value to i32
11 // CHECK: %[[EXCHANGE:[0-9]+]] = atomicrmw xchg i32* %[[TARGET]], i32 %[[VALUE]] seq_cst
31 long test_InterlockedExchange(long *Target, long Value) {
32 return _InterlockedExchange(Target, Value);
35 // CHECK: define{{.*}}i32 @test_InterlockedExchange(i32* %Target, i32 %Value){{.*}}{
36 // CHECK: %[[EXCHANGE:[0-9]+]] = atomicrmw xchg i32* %Target, i32 %Value seq_cs
    [all...]
typedef.c 3 typedef struct { int i; } Value;
4 typedef Value *PValue;
  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 16 APSIntType::testInRange(const llvm::APSInt &Value,
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.isSigned() && Value.isNegative()
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_UnpackBlock2x2.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
armVCM4P10_UnpackBlock4x4.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 13 // returning a constant ("and i32 %x, 0" -> "0") or an already existing value
46 class Value;
50 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
57 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
64 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 21 class Value;
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
30 /// return value has 'intptr_t' type.
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout *TD,
36 /// be of size_t type, and the return value has 'intptr_t' type.
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B
    [all...]
  /external/llvm/include/llvm/Support/
LEB128.h 22 /// Utility function to encode a SLEB128 value to an output stream.
23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) {
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
37 /// Utility function to encode a ULEB128 value to an output stream.
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS,
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
json.h 47 bool GetIntFromJson(const Json::Value& in, int* out);
48 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
49 bool GetStringFromJson(const Json::Value& in, std::string* out);
50 bool GetBoolFromJson(const Json::Value& in, bool* out);
51 bool GetDoubleFromJson(const Json::Value& in, double* out);
54 bool GetValueFromJsonArray(const Json::Value& in, size_t n,
55 Json::Value* out);
56 bool GetIntFromJsonArray(const Json::Value& in, size_t n,
58 bool GetUIntFromJsonArray(const Json::Value& in, size_t n,
60 bool GetStringFromJsonArray(const Json::Value& in, size_t n
    [all...]
  /external/chromium_org/third_party/webrtc/base/
json.h 30 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...]
  /art/runtime/base/
histogram.h 32 template <class Value> class Histogram {
38 friend class Histogram<Value>;
47 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
48 void AddValue(Value);
63 Value GetRange(size_t bucket_idx) const;
70 Value Sum() const {
74 Value AdjustedSum() const {
78 Value Min() const {
82 Value Max() const {
92 size_t FindBucket(Value val) const
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 19 import com.google.clearsilver.jsilver.values.Value;
29 Value execute(Value... args);
  /external/chromium_org/dbus/
values_util.h 11 class Value;
19 // Pops a value from |reader| as a base::Value.
23 CHROME_DBUS_EXPORT base::Value* PopDataAsValue(MessageReader* reader);
25 // Appends a basic type value to |writer|. Basic types are BOOLEAN, INTEGER,
30 const base::Value& value);
32 // Appends a basic type value to |writer| as a variant. Basic types are BOOLEAN,
38 const base::Value& value);
    [all...]
  /external/chromium_org/third_party/skia/bench/
ResultsWriter.cpp 12 Json::Value* SkFindNamedNode(Json::Value* root, const char name[]) {
13 Json::Value* search_results = NULL;
14 for(Json::Value::iterator iter = root->begin();
25 Json::Value* new_val = &(root->append(Json::Value()));
  /external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
p2-0x.cpp 4 struct Value {
5 constexpr Value(int n) : n(n) {}
16 void test(Value v) {
20 case Value(2):
27 case Value(2):
36 case Value(2):

Completed in 3512 milliseconds

1 2 3 4 5 6 7 8 91011>>