/frameworks/compile/mclinker/include/mcld/Script/ |
D | BinaryOp.h | 43 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend); 58 IntOperand* BinaryOp<Operator::MUL>::eval(const Module&, 61 IntOperand* BinaryOp<Operator::DIV>::eval(const Module&, 64 IntOperand* BinaryOp<Operator::MOD>::eval(const Module&, 67 IntOperand* BinaryOp<Operator::ADD>::eval(const Module&, 70 IntOperand* BinaryOp<Operator::SUB>::eval(const Module&, 73 IntOperand* BinaryOp<Operator::LSHIFT>::eval(const Module&, 76 IntOperand* BinaryOp<Operator::RSHIFT>::eval(const Module&, 79 IntOperand* BinaryOp<Operator::LT>::eval(const Module&, 82 IntOperand* BinaryOp<Operator::LE>::eval(const Module&, [all …]
|
D | UnaryOp.h | 41 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend); 53 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module&, 56 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval(const Module&, 59 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval(const Module&, 62 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval(const Module&, 66 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module&, 69 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module&, 72 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&, 75 IntOperand* UnaryOp<Operator::DATA_SEGMENT_END>::eval(const Module&, 78 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module&, [all …]
|
D | NullaryOp.h | 41 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend); 50 IntOperand* NullaryOp<Operator::SIZEOF_HEADERS>::eval(const Module&, 53 IntOperand* NullaryOp<Operator::MAXPAGESIZE>::eval(const Module&, 57 IntOperand* NullaryOp<Operator::COMMONPAGESIZE>::eval(const Module&,
|
D | TernaryOp.h | 43 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend); 58 IntOperand* TernaryOp<Operator::TERNARY_IF>::eval(const Module&, 63 TernaryOp<Operator::DATA_SEGMENT_ALIGN>::eval(const Module&,
|
D | RpnEvaluator.h | 27 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
|
D | Operator.h | 111 virtual IntOperand* eval(const Module& pModule,
|
/frameworks/compile/mclinker/lib/Script/ |
D | BinaryOp.cpp | 23 IntOperand* BinaryOp<Operator::MUL>::eval(const Module& pModule, in eval() function in BinaryOp::MUL 32 IntOperand* BinaryOp<Operator::DIV>::eval(const Module& pModule, in eval() function in BinaryOp::DIV 41 IntOperand* BinaryOp<Operator::MOD>::eval(const Module& pModule, in eval() function in BinaryOp::MOD 50 IntOperand* BinaryOp<Operator::ADD>::eval(const Module& pModule, in eval() function in BinaryOp::ADD 59 IntOperand* BinaryOp<Operator::SUB>::eval(const Module& pModule, in eval() function in BinaryOp::SUB 68 IntOperand* BinaryOp<Operator::LSHIFT>::eval(const Module& pModule, in eval() function in BinaryOp::LSHIFT 77 IntOperand* BinaryOp<Operator::RSHIFT>::eval(const Module& pModule, in eval() function in BinaryOp::RSHIFT 86 IntOperand* BinaryOp<Operator::LT>::eval(const Module& pModule, in eval() function in BinaryOp::LT 95 IntOperand* BinaryOp<Operator::LE>::eval(const Module& pModule, in eval() function in BinaryOp::LE 104 IntOperand* BinaryOp<Operator::GT>::eval(const Module& pModule, in eval() function in BinaryOp::GT [all …]
|
D | UnaryOp.cpp | 22 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module& pModule, in eval() function in UnaryOp::UNARY_PLUS 32 UnaryOp<Operator::UNARY_MINUS>::eval(const Module& pModule, in eval() function in UnaryOp::UNARY_MINUS 42 UnaryOp<Operator::LOGICAL_NOT>::eval(const Module& pModule, in eval() function in UnaryOp::LOGICAL_NOT 52 UnaryOp<Operator::BITWISE_NOT>::eval(const Module& pModule, in eval() function in UnaryOp::BITWISE_NOT 61 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module& pModule, in eval() function in UnaryOp::ABSOLUTE 70 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module& pModule, in eval() function in UnaryOp::ADDR 92 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module& pModule, in eval() function in UnaryOp::ALIGNOF 115 UnaryOp<Operator::DATA_SEGMENT_END>::eval(const Module& pModule, in eval() function in UnaryOp::DATA_SEGMENT_END 124 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module& pModule, in eval() function in UnaryOp::DEFINED 133 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module& pModule, in eval() function in UnaryOp::LENGTH [all …]
|
D | RpnEvaluator.cpp | 31 bool RpnEvaluator::eval(const RpnExpr& pExpr, uint64_t& pResult) in eval() function in RpnEvaluator 41 operandStack.push(op->eval(m_Module, m_Backend)); in eval() 48 operandStack.push(op->eval(m_Module, m_Backend)); in eval() 58 operandStack.push(op->eval(m_Module, m_Backend)); in eval() 71 operandStack.push(op->eval(m_Module, m_Backend)); in eval()
|
D | NullaryOp.cpp | 19 NullaryOp<Operator::SIZEOF_HEADERS>::eval(const Module& pModule, in eval() function in NullaryOp::SIZEOF_HEADERS 29 NullaryOp<Operator::MAXPAGESIZE>::eval(const Module& pModule, in eval() function in NullaryOp::MAXPAGESIZE 39 NullaryOp<Operator::COMMONPAGESIZE>::eval(const Module& pModule, in eval() function in NullaryOp::COMMONPAGESIZE
|
D | TernaryOp.cpp | 19 TernaryOp<Operator::TERNARY_IF>::eval(const Module& pModule, in eval() function in TernaryOp::TERNARY_IF 33 TernaryOp<Operator::DATA_SEGMENT_ALIGN>::eval(const Module& pModule, in eval() function in TernaryOp::DATA_SEGMENT_ALIGN
|
D | Assignment.cpp | 171 bool success = pEvaluator.eval(m_RpnExpr, result); in assign()
|
/frameworks/rs/ |
D | rsAnimation.h | 37 float eval(float) const;
|
/frameworks/webview/chromium/tools/ |
D | memreport.py | 96 array = eval(field)
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/compile/mclinker/lib/Object/ |
D | ObjectLinker.cpp | 381 evaluator.eval((*out)->prolog().subAlign(), in_align); in mergeSections() 398 evaluator.eval((*out)->prolog().align(), out_align); in mergeSections() 724 evaluator.eval((*assert).getRpnExpr(), res); in finalizeSymbolValue()
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 2253 evaluator.eval((*out)->prolog().vma(), vma); in setOutputSectionAddress()
|