/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 | 167 bool success = pEvaluator.eval(m_RpnExpr, result); in assign()
|
/frameworks/proto_logging/stats/enums/federatedcompute/ |
D | enums.proto | 36 // Client is about to issue an eligibility eval checkin request to the 40 // Client received eligibility eval plan & checkpoint URIs from the server, 49 // Client received an eligibility eval plan from the server. 53 // Client was told by the server that there is no eligibility eval plan for 58 // Client was rejected from an eligibility eval checkin request. 62 // Client issued an eligibility eval checkin request, but an IO error was 67 // Client issued an eligibility eval checkin request, but an invalid payload 72 // Client issued an eligibility eval checkin request, but got interrupted on 76 // Client issued an eligibility eval checkin request, but server aborted. 113 // Client started eligibility eval computation. [all …]
|
/frameworks/libs/systemui/weathereffects/graphics/assets/shaders/ |
D | fog_effect.agsl | 56 vec4 fgd = foreground.eval(fragCoord * uvScaleFgd + uvOffsetFgd); 60 vec4 bgd = background.eval(fragCoord * uvScaleBgd + uvOffsetBgd); 72 vec4 bgdFogFar = fog.eval( 80 vec4 bgdFogClose = fog.eval( 88 vec4 fgdFogFar = clouds.eval( 96 vec4 fgdFogClose = clouds.eval(
|
D | outline.agsl | 27 float aN = texture.eval(fragCoord + vec2(0., thickness)).a; 28 float aS = texture.eval(fragCoord + vec2(0., -thickness)).a;
|
D | snow_accumulation.agsl | 34 float aN = foreground.eval(fragCoord + vec2(0., distance)).a; 35 float aS = foreground.eval(fragCoord + vec2(0., -distance)).a;
|
D | snow_effect.agsl | 59 vec4 colorForeground = foreground.eval(adjustedUvForeground); 60 vec4 colorBackground = background.eval(fragCoord * uvScaleBgd + uvOffsetBgd); 89 vec3 cloudsNoise = noise.eval(uvAdjusted * 7000 + vec2(fragCoord.y, -fragCoord.x)).rgb; 94 vec2 accSnow = accumulatedSnow.eval(adjustedUvForeground).rg;
|
D | color_grading_lut.agsl | 47 vec4 color = texture.eval(fragCoord); 76 lut.eval(vec2(uvFloor.x, uvFloor.y)).rgb, 77 lut.eval(vec2(uvCeil.x, uvCeil.y)).rgb,
|
D | rain_shower_layer.agsl | 61 float outline = step(0.1, outlineBuffer.eval(uvTextureFgd).r); 89 vec4 colorForeground = foreground.eval(uvTextureFgd); 90 vec4 color = background.eval(uvTextureBgd);
|
D | rain_glass_layer.agsl | 77 vec4 color = texture.eval(fragCoord); 78 vec3 sampledColor = texture.eval(fragCoord + uvDiffractionOffsets * s).rgb;
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/utilities/ |
D | AnimatedFloatExpression.java | 89 int eval(int sp); in eval() method 98 public float eval(float[] exp, float... var) { in eval() method in AnimatedFloatExpression 105 sp = mOps[fromNaN(v) - OFFSET].eval(sp); in eval() 120 public float eval(float[] exp, int len, float... var) { in eval() method in AnimatedFloatExpression 128 sp = mOps[fromNaN(v) - OFFSET].eval(sp); in eval() 149 sp = mOps[fromNaN(v) - OFFSET].eval(sp); in evalDB()
|
/frameworks/rs/ |
D | rsAnimation.h | 37 float eval(float) const;
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/ |
D | FloatExpression.java | 82 float v = mExp.eval(Arrays.copyOf(mPreCalcValue, mPreCalcValue.length)); in updateVariables() 113 context.loadFloat(mId, mExp.eval(Arrays.copyOf(mPreCalcValue, mPreCalcValue.length))); in apply()
|
/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/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | gradlew.bat | 52 if "%@eval[2+2]" == "4" goto 4NT_args
|