/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | UT_struct_field.java | 51 ScriptField_Outer.Item outer = new ScriptField_Outer.Item(); in run() local 52 outer.innerOneA = makeInnerOne(); in run() 53 outer.l = r.nextLong(); in run() 54 outer.innerOneB = makeInnerOne(); in run() 56 outer.innerTwo3[i] = makeInnerTwo(); in run() 58 outer.innerTwo2[i] = makeInnerTwo(); in run() 60 outer.innerOne4[i] = makeInnerOne(); in run() 61 outer.innerOneC = makeInnerOne(); in run() 62 s.set_outer(outer); in run() 65 outer.innerOneA.x, outer.innerOneA.y, outer.innerOneA.f, in run() [all …]
|
D | struct_field.rscript | 21 // variable "outer", and then calls a verification invokable 48 struct Outer outer; 105 // variable "outer" against incoming argument values. 106 // Compares "outer."outerFieldName".x" to outerFieldName"_x", etc. 108 CHECK_INNERONE_(outer.outerFieldName, outerFieldName) 111 // instance within global variable "outer" against incoming argument values. 112 // Compares "outer"outerFieldName"["index"].x" to outerFieldName"_"index"_x", etc. 114 CHECK_INNERONE_(outer.outerFieldName[index], outerFieldName ## _ ## index) 117 // instance within global variable "outer" against incoming argument values. 118 // Compares "outer."outerFieldName"["index"].z" to outerFieldName"_"index"_z", [all …]
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | UT_struct_field.java | 53 ScriptField_Outer.Item outer = new ScriptField_Outer.Item(); in run() local 54 outer.innerOneA = makeInnerOne(); in run() 55 outer.l = r.nextLong(); in run() 56 outer.innerOneB = makeInnerOne(); in run() 58 outer.innerTwo3[i] = makeInnerTwo(); in run() 60 outer.innerTwo2[i] = makeInnerTwo(); in run() 62 outer.innerOne4[i] = makeInnerOne(); in run() 63 outer.innerOneC = makeInnerOne(); in run() 64 s.set_outer(outer); in run() 67 outer.innerOneA.x, outer.innerOneA.y, outer.innerOneA.f, in run() [all …]
|
D | struct_field.rscript | 23 // variable "outer", and then calls a verification invokable 50 struct Outer outer; 107 // variable "outer" against incoming argument values. 108 // Compares "outer."outerFieldName".x" to outerFieldName"_x", etc. 110 CHECK_INNERONE_(outer.outerFieldName, outerFieldName) 113 // instance within global variable "outer" against incoming argument values. 114 // Compares "outer"outerFieldName"["index"].x" to outerFieldName"_"index"_x", etc. 116 CHECK_INNERONE_(outer.outerFieldName[index], outerFieldName ## _ ## index) 119 // instance within global variable "outer" against incoming argument values. 120 // Compares "outer."outerFieldName"["index"].z" to outerFieldName"_"index"_z", [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | BlackFrame.java | 115 public BlackFrame(TransactionFactory factory, SurfaceControl.Transaction t, Rect outer, in BlackFrame() argument 125 mOuterRect = new Rect(outer); in BlackFrame() 128 if (outer.top < inner.top) { in BlackFrame() 130 outer.left, outer.top, inner.right, inner.top, dc); in BlackFrame() 132 if (outer.left < inner.left) { in BlackFrame() 134 outer.left, inner.top, inner.left, outer.bottom, dc); in BlackFrame() 136 if (outer.bottom > inner.bottom) { in BlackFrame() 138 inner.left, inner.bottom, outer.right, outer.bottom, dc); in BlackFrame() 140 if (outer.right > inner.right) { in BlackFrame() 142 inner.right, outer.top, outer.right, inner.bottom, dc); in BlackFrame()
|
D | Letterbox.java | 73 public void layout(Rect outer, Rect inner, Point surfaceOrigin) { in layout() argument 74 mOuter.set(outer); in layout() 77 mTop.layout(outer.left, outer.top, inner.right, inner.top, surfaceOrigin); in layout() 78 mLeft.layout(outer.left, inner.top, inner.left, outer.bottom, surfaceOrigin); in layout() 79 mBottom.layout(inner.left, inner.bottom, outer.right, outer.bottom, surfaceOrigin); in layout() 80 mRight.layout(inner.right, outer.top, outer.right, inner.bottom, surfaceOrigin); in layout()
|
/frameworks/ml/nn/common/operations/ |
D | ArgMinMax.cpp | 39 for (int outer = 0; outer < outerSize; ++outer) { in argMinMaxImpl() local 41 auto minMaxValue = inputData[outer * axisSize * innerSize + inner]; in argMinMaxImpl() 44 const auto& value = inputData[(outer * axisSize + i) * innerSize + inner]; in argMinMaxImpl() 50 outputData[outer * innerSize + inner] = minMaxIndex; in argMinMaxImpl()
|
D | LogSoftmax.cpp | 47 for (uint32_t outer = 0; outer < outerSize; ++outer) { in compute() local 52 T maxValue = input[outer * axisSize * innerSize + inner]; in compute() 54 maxValue = std::max(maxValue, input[(outer * axisSize + i) * innerSize + inner]); in compute() 60 (input[(outer * axisSize + i) * innerSize + inner] - maxValue) * beta)); in compute() 65 output[(outer * axisSize + i) * innerSize + inner] = in compute() 66 (input[(outer * axisSize + i) * innerSize + inner] - maxValue) * beta - in compute()
|
D | L2Normalization.cpp | 55 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normFloat32Impl() local 56 const float* inputBeg = inputData + outer * axisSize * innerSize; in l2normFloat32Impl() 58 float* outputBeg = outputData + outer * axisSize * innerSize; in l2normFloat32Impl() 82 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normQuant8Impl() local 83 const uint8_t* inputBeg = inputData + outer * axisSize * innerSize; in l2normQuant8Impl() 85 uint8_t* outputBeg = outputData + outer * axisSize * innerSize; in l2normQuant8Impl() 114 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normQuant8SignedImpl() local 115 const int8_t* inputBeg = inputData + outer * axisSize * innerSize; in l2normQuant8SignedImpl() 117 int8_t* outputBeg = outputData + outer * axisSize * innerSize; in l2normQuant8SignedImpl()
|
D | Softmax.cpp | 58 for (uint32_t outer = 0; outer < outerSize; ++outer) { in softmaxSlowFloat32() local 59 const float* inputBeg = inputData + outer * axisSize * innerSize; in softmaxSlowFloat32() 61 float* outputBeg = outputData + outer * axisSize * innerSize; in softmaxSlowFloat32() 133 for (uint32_t outer = 0; outer < outerSize; ++outer) { in softmaxQuant8Impl() local 134 const T* inputBeg = inputData + outer * axisSize * innerSize; in softmaxQuant8Impl() 136 T* outputBeg = outputData + outer * axisSize * innerSize; in softmaxQuant8Impl()
|
D | ChannelShuffle.cpp | 48 for (uint32_t outer = 0; outer < outerSize; ++outer) { in eval() local 50 const T* inputBase = inputData + outer * axisSize * innerSize + inner; in eval() 51 T* outputBase = outputData + outer * axisSize * innerSize + inner; in eval()
|
D | Gather.cpp | 50 for (uint32_t outer = 0; outer < outerSize; ++outer) { in eval() local 55 std::memcpy(outputData + (outer * indicesCount + outputIndex) * innerSize, in eval() 56 inputData + (outer * axisSize + inputIndex) * innerSize, in eval()
|
/frameworks/compile/slang/tests/P_odr_nested_records_1/ |
D | odr1.rscript | 15 extern struct Outer *outer; 18 uint32_ret = outer->current.y;
|
D | odr2.rscript | 15 extern struct Outer *outer; 18 uint32_ret = outer->current.y;
|
/frameworks/compile/slang/tests/F_odr_nested_records_7/ |
D | odr2.rscript | 12 extern struct Outer *outer; 15 uint32_ret = outer->current[1];
|
/frameworks/compile/slang/tests/F_odr_nested_records_6/ |
D | odr2.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].x;
|
D | odr1.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].x;
|
/frameworks/compile/slang/tests/F_odr_nested_records_2/ |
D | odr1.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current.x;
|
D | odr2.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current.y;
|
/frameworks/compile/slang/tests/F_odr_nested_records_5/ |
D | odr1.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].x;
|
D | odr2.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].y;
|
/frameworks/compile/slang/tests/F_odr_nested_records_8/ |
D | odr1.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].x;
|
D | odr2.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current[1].x;
|
/frameworks/compile/slang/tests/F_odr_nested_records_1/ |
D | odr1.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current.y;
|
D | odr2.rscript | 16 extern struct Outer *outer; 19 uint32_ret = outer->current.y;
|