Home
last modified time | relevance | path

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

123

/aosp12/frameworks/compile/mclinker/include/mcld/Script/
H A DBinaryOp.h53 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&,
102 IntOperand* BinaryOp<Operator::ALIGN>::eval(const Module&,
105 IntOperand* BinaryOp<Operator::DATA_SEGMENT_RELRO_END>::eval(
109 IntOperand* BinaryOp<Operator::MAX>::eval(const Module&,
[all …]
H A DUnaryOp.h46 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module&,
49 IntOperand* UnaryOp<Operator::UNARY_MINUS>::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&,
71 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module&,
74 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module&,
77 IntOperand* UnaryOp<Operator::LOADADDR>::eval(const Module&,
80 IntOperand* UnaryOp<Operator::NEXT>::eval(const Module&,
83 IntOperand* UnaryOp<Operator::ORIGIN>::eval(const Module&,
[all …]
H A 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&,
H A 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(
H A DRpnEvaluator.h28 bool eval(const RpnExpr& pExpr, uint64_t& pResult);
/aosp12/frameworks/compile/mclinker/lib/Script/
H A 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
131 IntOperand* BinaryOp<Operator::BITWISE_AND>::eval( in eval() function in mcld::BinaryOp::BITWISE_AND
140 IntOperand* BinaryOp<Operator::BITWISE_XOR>::eval( in eval() function in mcld::BinaryOp::BITWISE_XOR
149 IntOperand* BinaryOp<Operator::BITWISE_OR>::eval( in eval() function in mcld::BinaryOp::BITWISE_OR
158 IntOperand* BinaryOp<Operator::LOGICAL_AND>::eval( in eval() function in mcld::BinaryOp::LOGICAL_AND
167 IntOperand* BinaryOp<Operator::LOGICAL_OR>::eval( in eval() function in mcld::BinaryOp::LOGICAL_OR
187 IntOperand* BinaryOp<Operator::DATA_SEGMENT_RELRO_END>::eval( in eval() function in mcld::BinaryOp::DATA_SEGMENT_RELRO_END
[all …]
H A 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
131 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::LENGTH
147 IntOperand* UnaryOp<Operator::NEXT>::eval(const Module& pModule, in eval() function in mcld::UnaryOp::NEXT
[all …]
H A 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()
H A 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
H A 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
/aosp12/packages/services/Car/tests/DiagnosticTools/src/com/google/android/car/diagnostictools/utils/
H A DMathEval.java41 eval(str, (float) 100.0); in testTranslation()
42 eval(str, (float) 10.0); in testTranslation()
43 eval(str, (float) 1); in testTranslation()
44 eval(str, (float) .1); in testTranslation()
45 eval(str, (float) 0); in testTranslation()
46 eval(str, (float) -100.0); in testTranslation()
47 eval(str, (float) -10.0); in testTranslation()
48 eval(str, (float) -1); in testTranslation()
49 eval(str, (float) -.1); in testTranslation()
68 static double eval(final String translationString, Float variableIn) in eval() method in MathEval
/aosp12/packages/modules/NeuralNetworks/runtime/test/fuzzing/
H A DRandomVariable.cpp162 int res = this->eval(i, j); in getInitRange()
190 int res = this->eval(i, j); in eval()
216 using IRandomVariableOp::eval;
217 virtual int eval(int val) const = 0;
218 virtual int eval(int lhs, int) const override { return eval(lhs); } in eval() function in android::nn::fuzzing_test::IUnaryOp
228 int res = this->eval(i); in eval()
241 using IRandomVariableOp::eval;
673 bool eval() { in eval() function
761 if (!context->at(var).eval()) return; in evalSubnetHelper()
838 bool eval(EvalContext* context) { in eval() function
[all …]
/aosp12/packages/modules/NeuralNetworks/common/operations/
H A DGather.cpp40 inline bool eval(const T* inputData, const Shape& inputShape, int32_t axis, in eval() function
106 return eval(context->getInputBuffer<_Float16>(kInputTensor), in execute()
112 return eval(context->getInputBuffer<float>(kInputTensor), in execute()
118 return eval(context->getInputBuffer<int32_t>(kInputTensor), in execute()
124 return eval(context->getInputBuffer<uint8_t>(kInputTensor), in execute()
130 return eval(context->getInputBuffer<int8_t>(kInputTensor), in execute()
H A DChannelShuffle.cpp38 inline bool eval(const T* inputData, const Shape& inputShape, int32_t numGroups, int32_t axis, in eval() function
98 return eval(context->getInputBuffer<_Float16>(kInputTensor), in execute()
102 return eval(context->getInputBuffer<float>(kInputTensor), in execute()
106 return eval(context->getInputBuffer<uint8_t>(kInputTensor), in execute()
110 return eval(context->getInputBuffer<int8_t>(kInputTensor), in execute()
H A DPRelu.cpp46 inline bool eval(const std::function<T(const T&, const T&)>& func, const T* aData, in eval() function
82 return eval<T>( in evalQuant8()
133 return eval<_Float16>( in execute()
144 return eval<float>( in execute()
H A DCast.h28 bool eval(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData,
H A DPow.h28 bool eval(const void* baseData, const Shape& baseShape, const void* exponentData,
H A DExpandDims.h28 bool eval(const uint8_t* inputData, const Shape& inputShape, int32_t axis, uint8_t* outputData,
H A DMaximumMinimum.h28 bool eval(const void* in1, const Shape& shape1, const void* in2, const Shape& shape2,
H A DTile.h29 bool eval(const uint8_t* inputData, const Shape& inputShape, const int32_t* multiples,
/aosp12/bionic/libc/upstream-openbsd/lib/libc/gen/
H A Derr.c35 err(int eval, const char *fmt, ...) in err() argument
40 verr(eval, fmt, ap); in err()
H A Derrx.c35 errx(int eval, const char *fmt, ...) in errx() argument
40 verrx(eval, fmt, ap); in errx()
H A Dverrx.c37 verrx(int eval, const char *fmt, va_list ap) in verrx() argument
43 exit(eval); in verrx()
H A Dverr.c39 verr(int eval, const char *fmt, va_list ap) in verr() argument
50 exit(eval); in verr()
/aosp12/bionic/libc/tools/
H A Dpylintrc3 eval-used,

123