/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/ |
SmaliExpressionEvaluator.java | 39 import com.sun.jdi.Value; 40 import org.jf.smalidea.debugging.value.LazyValue; 53 @Override public Value evaluate(EvaluationContext context) throws EvaluateException { 63 @Override public Value getValue() {
|
/external/webrtc/talk/app/webrtc/ |
statstypes.h | 99 // by candidate id. The string value is taken from 252 struct Value { 263 Value(StatsValueName name, int64_t value, Type int_type); 264 Value(StatsValueName name, float f); 265 Value(StatsValueName name, const std::string& value); 266 Value(StatsValueName name, const char* value); 267 Value(StatsValueName name, bool b) [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | 61 /// value is equal or not-equal to zero. 62 static bool isOnlyUsedInZeroEqualityComparison(Value *V) { 77 static bool isOnlyUsedInEqualityComparison(Value *V, Value *With) { 194 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { 205 Value *Dst = CI->getArgOperand(0); 206 Value *Src = CI->getArgOperand(1); 221 Value *LibCallSimplifier::emitStrLenMemCpy(Value *Src, Value *Dst, uint64_t Len [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Parser.cpp | 47 TokenInfo() : Text(), Kind(TK_Eof), Range(), Value() {} 52 VariantValue Value; 187 unsigned Value; 188 if (!Result->Text.getAsInteger(0, Value)) { 190 Result->Value = Value; 219 Result->Value = Code.substr(1, Length - 1); 293 bool Parser::parseIdentifierPrefixImpl(VariantValue *Value) { 297 // Parse as a named value. 301 *Value = NamedValue [all...] |
VariantValue.cpp | 1 //===--- VariantValue.cpp - Polymorphic value type -*- C++ -*-===/ 11 /// \brief Polymorphic value type. 67 if (!InnerMatcher.Value) 70 InnerMatcher.Value->getTypedMatcher(*this); 234 return Value ? Value->getSingleMatcher() : llvm::Optional<DynTypedMatcher>(); 237 void VariantMatcher::reset() { Value.reset(); } 240 if (Value) return Value->getTypeAsString(); 285 delete Value.String [all...] |
/external/llvm/lib/Object/ |
ELFYAML.cpp | 26 ELFYAML::ELF_ET &Value) { 27 #define ECase(X) IO.enumCase(Value, #X, ELF::X); 34 IO.enumFallback<Hex16>(Value); 39 ELFYAML::ELF_EM &Value) { 40 #define ECase(X) IO.enumCase(Value, #X, ELF::X); 201 IO &IO, ELFYAML::ELF_ELFCLASS &Value) { 202 #define ECase(X) IO.enumCase(Value, #X, ELF::X); 211 IO &IO, ELFYAML::ELF_ELFDATA &Value) { 212 #define ECase(X) IO.enumCase(Value, #X, ELF::X); 221 IO &IO, ELFYAML::ELF_ELFOSABI &Value) { [all...] |
/external/llvm/lib/CodeGen/ |
SjLjEHPrepare.cpp | 58 Value *PersonalityFn; 76 void substituteLPadValues(LandingPadInst *LPI, Value *ExnVal, Value *SelVal); 77 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst *> LPads); 125 /// insertCallSiteStore - Insert a store of the call-site value to the 132 Value *Zero = ConstantInt::get(Int32Ty, 0); 133 Value *One = ConstantInt::get(Int32Ty, 1); 134 Value *Idxs[2] = { Zero, One }; 135 Value *CallSite = 157 void SjLjEHPrepare::substituteLPadValues(LandingPadInst *LPI, Value *ExnVal [all...] |
ExecutionDepsFix.cpp | 50 /// domains. A register value is initially created in a single execution 118 /// Value currently in this register, or NULL when no value is being tracked. 120 DomainValue *Value; 124 /// register, this value is relative to the end of the basic block, so it 271 if (LiveRegs[rx].Value == dv) 273 if (LiveRegs[rx].Value) 274 release(LiveRegs[rx].Value); 275 LiveRegs[rx].Value = retain(dv); 282 if (!LiveRegs[rx].Value) [all...] |
/external/v8/src/compiler/ |
node-matchers.h | 25 IrOpcode::Value opcode() const { return node()->opcode(); } 46 // A pattern matcher for abitrary value constants. 47 template <typename T, IrOpcode::Value kOpcode> 59 const T& Value() const { 110 template <typename T, IrOpcode::Value kOpcode> 114 bool Is(const T& value) const { 115 return this->HasValue() && this->Value() == value; 118 return this->HasValue() && low <= this->Value() && this->Value() <= high 267 typename BinopMatcher::RightMatcher::ValueType value = local 275 typename BinopMatcher::RightMatcher::ValueType value = local 521 int64_t value = 0; local [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
pointertest.cpp | 534 Pointer q = p.Append(Value("foo").Move()); 536 q = q.Append(Value(1234).Move()); 538 q = q.Append(Value(kStringType).Move()); 570 Value* v = &Pointer("").Create(d, d.GetAllocator()); 574 Value* v = &Pointer("/foo").Create(d, d.GetAllocator()); 578 Value* v = &Pointer("/foo/0").Create(d, d.GetAllocator()); 582 Value* v = &Pointer("/foo/-").Create(d, d.GetAllocator()); 587 Value* v = &Pointer("/foo/-/-").Create(d, d.GetAllocator()); 588 // "foo/-" is a newly created null value x. 596 Value* v = &Pointer("/foo/-").Create(d) [all...] |
/external/jsoncpp/src/lib_json/ |
json_writer.cpp | 39 std::string valueToString(LargestInt value) { 42 bool isNegative = value < 0; 44 value = -value; 45 uintToString(LargestUInt(value), current); 52 std::string valueToString(LargestUInt value) { 55 uintToString(value, current); 62 std::string valueToString(Int value) { 63 return valueToString(LargestInt(value)); 66 std::string valueToString(UInt value) { 610 *document_ << value; local 631 *document_ << value; local [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineVectorOps.cpp | 25 /// Return true if the value is cheaper to scalarize than it is to leave as a 28 static bool cheapToScalarize(Value *V, bool isConstant) { 94 Value *PHIInVal = PN->getIncomingValue(i); 96 Value *Elt = EI.getIndexOperand(); 104 Value *Op = InsertNewInstWith( 108 Value *newPHIUser = InsertNewInstWith( 132 if (Value *V = SimplifyExtractElementInst( 158 if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0), DemandedMask, 171 if (Value *Elt = findScalarElement(BCI->getOperand(0), IndexVal)) 190 Value *newEI0 [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
Measurement.java | 49 private Value value; 54 this.value = Value.DEFAULT; 60 this.value = builder.value; 70 return this.value.equals(that.value) 79 return Objects.hashCode(value, weight, description); 84 .add("value", value [all...] |
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 51 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1); 52 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); 64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); 71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); 82 Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2,
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
CostAllocator.h | 10 // Defines classes conforming to the PBQP cost value manager concept. 12 // Cost value managers are memory managers for PBQP cost values (vectors and 38 PoolEntry(ValuePool &Pool, ValueKeyT Value) 39 : Pool(Pool), Value(std::move(Value)) {} 41 const ValueT& getValue() const { return Value; } 44 ValueT Value;
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DIEHash.h | 106 /// \brief Adds \param Value to the hash. 107 void update(uint8_t Value) { Hash.update(Value); } 109 /// \brief Encodes and adds \param Value to the hash as a ULEB128. 110 void addULEB128(uint64_t Value); 112 /// \brief Encodes and adds \param Value to the hash as a SLEB128. 113 void addSLEB128(int64_t Value); 134 void hashAttribute(DIEValue Value, dwarf::Tag Tag);
|
/external/llvm/lib/MC/ |
MCObjectStreamer.cpp | 124 void MCObjectStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, 126 MCStreamer::EmitValueImpl(Value, Size, Loc); 134 if (Value->evaluateAsAbsolute(AbsValue, getAssembler())) { 139 MCFixup::create(DF->getContents().size(), Value, 173 void MCObjectStreamer::EmitULEB128Value(const MCExpr *Value) { 175 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) { 179 insert(new MCLEBFragment(*Value, false)); 182 void MCObjectStreamer::EmitSLEB128Value(const MCExpr *Value) { 184 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) { 188 insert(new MCLEBFragment(*Value, true)) [all...] |
/external/llvm/lib/Target/AMDGPU/ |
SIAnnotateControlFlow.cpp | 33 typedef std::pair<BasicBlock *, Value *> StackEntry; 74 Value *popSaved(); 76 void push(BasicBlock *BB, Value *Saved); 86 Value *handleLoopCondition(Value *Cond, PHINode *Broken, llvm::Loop *L); 160 /// \brief Pop the last saved value from the control flow stack 161 Value *SIAnnotateControlFlow::popSaved() { 165 /// \brief Push a BB and saved value to the control flow stack 166 void SIAnnotateControlFlow::push(BasicBlock *BB, Value *Saved) { 197 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term) [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXGenericToNVVM.cpp | 49 Value *getOrInsertCVTA(Module *M, Function *F, GlobalVariable *GV, 51 Value *remapConstant(Module *M, Function *F, Constant *C, 53 Value *remapConstantVectorOrConstantAggregate(Module *M, Function *F, 56 Value *remapConstantExpr(Module *M, Function *F, ConstantExpr *C, 61 typedef ValueMap<Constant *, Value *> ConstantToValueMapTy; 117 Value *Operand = II->getOperand(i); 128 // Copy GVMap over to a standard value map. 167 Value *GenericToNVVM::getOrInsertCVTA(Module *M, Function *F, 171 Value *CVTA = nullptr; 210 Value *GenericToNVVM::remapConstant(Module *M, Function *F, Constant *C [all...] |
NVPTXLowerKernelArgs.cpp | 110 void markPointerAsGlobal(Value *Ptr); 158 Value *ArgInParam = new AddrSpaceCastInst( 165 void NVPTXLowerKernelArgs::markPointerAsGlobal(Value *Ptr) { 185 Value *PtrInGeneric = new AddrSpaceCastInst(PtrInGlobal, Ptr->getType(), 206 Value *UO = GetUnderlyingObject(LI->getPointerOperand(),
|
/external/llvm/lib/Target/X86/ |
X86WinEHState.cpp | 71 void insertStateNumberStore(Value *ParentRegNode, Instruction *IP, int State); 73 Value *emitEHLSDA(IRBuilder<> &Builder, Function *F); 106 Value *Link = nullptr; 266 Value *SP = Builder.CreateCall( 283 Value *SP = Builder.CreateCall( 291 Value *FI8 = Builder.CreateBitCast(F, Int8PtrType); 292 Value *LSDA = Builder.CreateCall( 299 Value *Cookie = 301 Value *Val = Builder.CreateLoad(Int32Ty, Cookie); 321 Value *WinEHStatePass::emitEHLSDA(IRBuilder<> &Builder, Function *F) [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_TransformDequantLumaDCFromPair.c | 51 int i, Round, Value; 57 Value = (pDst[i] * Scale) << Shift; 58 pDst[i] = (OMX_S16)Value; 68 Value = (pDst[i] * Scale + Round) >> Shift; 69 pDst[i] = (OMX_S16)Value; 133 * Return Value:
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
fixed_mapping.hpp | 12 // Description : fixed sized mapping with specified invalid value 59 template<typename Key, typename Value, typename Compare = std::less<Key> > 62 typedef std::pair<Key,Value> elem_type; 67 typedef typename call_traits<Value>::param_type value_param_type; 68 typedef typename call_traits<Value>::const_reference value_ref_type; 91 // key -> value access 102 void add_pair( key_param_type key, value_param_type value ) { m_map.push_back( elem_type( key, value ) ); } 105 Value m_invalid_value;
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir.h | 46 OP_MERGE, // opposite of split, e.g. combine 2 32 bit into a 64 bit value 125 OP_RDSV, // read system value 126 OP_WRSV, // write system value 307 class Value; 392 ValueRef(Value * = NULL); 396 inline bool exists() const { return value != NULL; } 398 void set(Value *); 400 inline Value *get() const { return value; } 401 inline Value *rep() const 423 Value *value; member in class:nv50_ir::ValueRef 452 Value *value; \/\/ should make this LValue * ... member in class:nv50_ir::ValueDef [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
LoopUtils.h | 91 RecurrenceDescriptor(Value *Start, Instruction *Exit, RecurrenceKind K, 161 static Value *createMinMaxOp(IRBuilder<> &Builder, MinMaxRecurrenceKind RK, 162 Value *Left, Value *Right); 179 TrackingVH<Value> getRecurrenceStartValue() { return StartValue; } 229 // The starting value of the recurrence. 231 TrackingVH<Value> StartValue; 232 // The instruction who's value is used outside the loop. 269 /// Compute the transformed value of Index at offset StartValue using step 275 Value *transform(IRBuilder<> &B, Value *Index) const [all...] |