Home
last modified time | relevance | path

Searched refs:eval (Results 1 – 17 of 17) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Script/
DBinaryOp.h43 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 …]
DUnaryOp.h41 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 …]
DNullaryOp.h41 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&,
DTernaryOp.h43 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&,
DRpnEvaluator.h27 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
DOperator.h111 virtual IntOperand* eval(const Module& pModule,
/frameworks/compile/mclinker/lib/Script/
DBinaryOp.cpp23 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 …]
DUnaryOp.cpp22 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 …]
DRpnEvaluator.cpp31 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()
DNullaryOp.cpp19 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
DTernaryOp.cpp19 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
DAssignment.cpp171 bool success = pEvaluator.eval(m_RpnExpr, result); in assign()
/frameworks/rs/
DrsAnimation.h37 float eval(float) const;
/frameworks/webview/chromium/tools/
Dmemreport.py96 array = eval(field)
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/compile/mclinker/lib/Object/
DObjectLinker.cpp381 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/
DGNULDBackend.cpp2253 evaluator.eval((*out)->prolog().vma(), vma); in setOutputSectionAddress()