/frameworks/compile/mclinker/include/mcld/Script/ |
D | BinaryOp.h | 39 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 …]
|
D | UnaryOp.h | 37 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 …]
|
D | NullaryOp.h | 37 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&,
|
D | TernaryOp.h | 39 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(
|
D | RpnEvaluator.h | 28 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
|
/frameworks/compile/mclinker/lib/Script/ |
D | BinaryOp.cpp | 27 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 …]
|
D | UnaryOp.cpp | 26 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 …]
|
D | RpnEvaluator.cpp | 33 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()
|
D | NullaryOp.cpp | 19 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
|
D | TernaryOp.cpp | 20 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
|
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/compile/libbcc/tests/libbcc/ |
D | tbaa.ll | 4 ; RUN: opt -load libbcc.so -kernelexp -tbaa -aa-eval -print-no-aliases -evaluate-aa-metadata < %s -…
|
D | tbaa-through-alloca.ll | 4 ; RUN: opt -load libbcc.so -kernelexp -inline -tbaa -aa-eval -print-may-aliases -evaluate-aa-metada…
|
/frameworks/data-binding/developmentPlugins/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/integration-tests/IndependentLibrary/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/integration-tests/MultiModuleTestApp/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/base/tests/TouchLatency/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/integration-tests/TestApp/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/samples/BindingDemo/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/compiler/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/support/samples/SupportLeanbackShowcase/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|
/frameworks/data-binding/integration-tests/App With Spaces/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|