Home
last modified time | relevance | path

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

12

/frameworks/compile/mclinker/include/mcld/Script/
DBinaryOp.h39 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend);
53 IntOperand* BinaryOp<Operator::MUL>::eval(const Module&,
56 IntOperand* BinaryOp<Operator::DIV>::eval(const Module&,
59 IntOperand* BinaryOp<Operator::MOD>::eval(const Module&,
62 IntOperand* BinaryOp<Operator::ADD>::eval(const Module&,
65 IntOperand* BinaryOp<Operator::SUB>::eval(const Module&,
68 IntOperand* BinaryOp<Operator::LSHIFT>::eval(const Module&,
71 IntOperand* BinaryOp<Operator::RSHIFT>::eval(const Module&,
74 IntOperand* BinaryOp<Operator::LT>::eval(const Module&, const TargetLDBackend&);
76 IntOperand* BinaryOp<Operator::LE>::eval(const Module&, const TargetLDBackend&);
[all …]
DUnaryOp.h37 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend);
46 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module&,
49 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval(const Module&,
52 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval(const Module&,
55 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval(const Module&,
59 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module&,
62 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module&,
65 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&,
68 IntOperand* UnaryOp<Operator::DATA_SEGMENT_END>::eval(const Module&,
71 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module&,
[all …]
DNullaryOp.h37 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend);
43 IntOperand* NullaryOp<Operator::SIZEOF_HEADERS>::eval(const Module&,
46 IntOperand* NullaryOp<Operator::MAXPAGESIZE>::eval(const Module&,
50 IntOperand* NullaryOp<Operator::COMMONPAGESIZE>::eval(const Module&,
DTernaryOp.h39 IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend);
53 IntOperand* TernaryOp<Operator::TERNARY_IF>::eval(const Module&,
57 IntOperand* TernaryOp<Operator::DATA_SEGMENT_ALIGN>::eval(
DRpnEvaluator.h28 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
/frameworks/compile/mclinker/lib/Script/
DBinaryOp.cpp27 IntOperand* BinaryOp<Operator::MUL>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::MUL
35 IntOperand* BinaryOp<Operator::DIV>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::DIV
43 IntOperand* BinaryOp<Operator::MOD>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::MOD
51 IntOperand* BinaryOp<Operator::ADD>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::ADD
59 IntOperand* BinaryOp<Operator::SUB>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::SUB
67 IntOperand* BinaryOp<Operator::LSHIFT>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::LSHIFT
75 IntOperand* BinaryOp<Operator::RSHIFT>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::RSHIFT
83 IntOperand* BinaryOp<Operator::LT>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::LT
91 IntOperand* BinaryOp<Operator::LE>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::LE
99 IntOperand* BinaryOp<Operator::GT>::eval(const Module& pModule, in eval() function in mcld::BinaryOp::GT
[all …]
DUnaryOp.cpp26 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval( in eval() function in mcld::UnaryOp::UNARY_PLUS
35 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval( in eval() function in mcld::UnaryOp::UNARY_MINUS
44 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval( in eval() function in mcld::UnaryOp::LOGICAL_NOT
53 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval( in eval() function in mcld::UnaryOp::BITWISE_NOT
62 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::ABSOLUTE
70 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::ADDR
92 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::ALIGNOF
114 IntOperand* UnaryOp<Operator::DATA_SEGMENT_END>::eval( in eval() function in mcld::UnaryOp::DATA_SEGMENT_END
123 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::DEFINED
131 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::LENGTH
[all …]
DRpnEvaluator.cpp33 bool RpnEvaluator::eval(const RpnExpr& pExpr, uint64_t& pResult) { in eval() function in mcld::RpnEvaluator
42 operandStack.push(op->eval(m_Module, m_Backend)); in eval()
49 operandStack.push(op->eval(m_Module, m_Backend)); in eval()
59 operandStack.push(op->eval(m_Module, m_Backend)); in eval()
72 operandStack.push(op->eval(m_Module, m_Backend)); in eval()
DNullaryOp.cpp19 IntOperand* NullaryOp<Operator::SIZEOF_HEADERS>::eval( in eval() function in mcld::NullaryOp::SIZEOF_HEADERS
28 IntOperand* NullaryOp<Operator::MAXPAGESIZE>::eval( in eval() function in mcld::NullaryOp::MAXPAGESIZE
37 IntOperand* NullaryOp<Operator::COMMONPAGESIZE>::eval( in eval() function in mcld::NullaryOp::COMMONPAGESIZE
DTernaryOp.cpp20 IntOperand* TernaryOp<Operator::TERNARY_IF>::eval( in eval() function in mcld::TernaryOp::TERNARY_IF
33 IntOperand* TernaryOp<Operator::DATA_SEGMENT_ALIGN>::eval( in eval() function in mcld::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/compile/libbcc/tests/libbcc/
Dtbaa.ll4 ; RUN: opt -load libbcc.so -kernelexp -tbaa -aa-eval -print-no-aliases -evaluate-aa-metadata < %s -…
Dtbaa-through-alloca.ll4 ; RUN: opt -load libbcc.so -kernelexp -inline -tbaa -aa-eval -print-may-aliases -evaluate-aa-metada…
/frameworks/data-binding/developmentPlugins/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/integration-tests/IndependentLibrary/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/base/tests/TouchLatency/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/integration-tests/TestApp/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/samples/BindingDemo/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/compiler/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/support/samples/SupportLeanbackShowcase/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args
/frameworks/data-binding/integration-tests/App With Spaces/
Dgradlew.bat52 if "%@eval[2+2]" == "4" goto 4NT_args

12