/external/llvm/include/llvm/CodeGen/ |
AtomicExpandUtils.h | 14 class Value; 21 typedef function_ref<void(IRBuilder<> &, Value *, Value *, Value *, 22 AtomicOrdering, Value *&, Value *&)> CreateCmpXchgInstFun;
|
/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);
|
/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...] |
/frameworks/base/media/mca/filterfw/native/core/ |
value.h | 29 void* value; member in struct:__anon28805 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/llvm/lib/Target/X86/AsmParser/ |
X86AsmParserCommon.h | 15 inline bool isImmSExti16i8Value(uint64_t Value) { 16 return isInt<8>(Value) || 17 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value))); 20 inline bool isImmSExti32i8Value(uint64_t Value) { 21 return isInt<8>(Value) || 22 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value))); 25 inline bool isImmSExti64i8Value(uint64_t Value) { 26 return isInt<8>(Value); [all...] |
/device/google/dragon/recovery/updater/ |
update_fw.h | 22 int update_fw(Value *fw_file, Value *ec_file, int force);
|
/external/valgrind/none/tests/solaris/ |
context_link.stdout.exp | 0 Value is 42.
|
/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 &DL, 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/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: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
|
/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/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...] |
/external/clang/test/CodeGen/ |
typedef.c | 3 typedef struct { int i; } Value; 4 typedef Value *PValue;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_UnpackBlock2x2.c | 56 int Flag, Value; 69 Value = *pSrc++; 70 Value = Value | ((*pSrc++)<<8); 71 if (Value & 0x8000) 73 Value -= 0x10000; 79 Value = *pSrc++; 80 if (Value & 0x80) 82 Value -= 0x100; 86 pDst[i] = (OMX_S16)Value; [all...] |
armVCM4P10_UnpackBlock4x4.c | 56 int Flag, Value; 69 Value = *pSrc++; 70 Value = Value | ((*pSrc++)<<8); 71 if (Value & 0x8000) 73 Value -= 0x10000; 79 Value = *pSrc++; 80 if (Value & 0x80) 82 Value -= 0x100; 86 pDst[i] = (OMX_S16)Value; [all...] |
/external/llvm/tools/llvm-readobj/ |
StreamWriter.h | 29 T Value; 37 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) { } 38 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) { } 39 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) { } [all...] |
/external/webrtc/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...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
Function.java | 19 import com.google.clearsilver.jsilver.values.Value; 29 Value execute(Value... args);
|
/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):
|
/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/testng/src/main/java/org/testng/mustache/ |
Value.java | 3 public class Value { 6 public Value(Object object) {
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Sampler.java | 43 public enum Value { 53 Value(int id) { 58 Value mMin; 59 Value mMag; 60 Value mWrapS; 61 Value mWrapT; 62 Value mWrapR; 72 public Value getMinification() { 79 public Value getMagnification() { 86 public Value getWrapS() [all...] |
/external/llvm/lib/MC/ |
MCInstPrinter.cpp | 69 static bool needsLeadingZero(uint64_t Value) 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...] |
/art/runtime/base/ |
histogram.h | 31 template <class Value> class Histogram { 37 friend class Histogram<Value>; 46 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100); 47 void AddValue(Value); 48 void AdjustAndAddValue(Value); // Add a value after dividing it by kAdjust. 65 Value GetRange(size_t bucket_idx) const; 72 Value Sum() const { 76 Value AdjustedSum() const { 80 Value Min() const [all...] |