Home
last modified time | relevance | path

Searched refs:returnValues (Results 1 – 9 of 9) sorted by relevance

/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
DSpriteAccessor.java14 public int getValues(Sprite target, int tweenType, float[] returnValues) { in getValues() argument
17 returnValues[0] = target.getX(); in getValues()
18 returnValues[1] = target.getY(); in getValues()
22 returnValues[0] = target.getScaleX(); in getValues()
23 returnValues[1] = target.getScaleY(); in getValues()
27 returnValues[0] = target.isVisible() ? 1 : 0; in getValues()
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
DMutableFloat.java25 public int getValues(MutableFloat target, int tweenType, float[] returnValues) { in getValues() argument
26 returnValues[0] = target.value; in getValues()
DMutableInteger.java25 public int getValues(MutableInteger target, int tweenType, float[] returnValues) { in getValues() argument
26 returnValues[0] = target.value; in getValues()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp1364 int returnValues[] = { 0, 0, 0 }; in getGLBufferLayout() local
1366 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(queryParams) == DE_LENGTH_OF_ARRAY(returnValues)); in getGLBufferLayout()
1370 …RRAY(queryParams), &queryParams[0], DE_LENGTH_OF_ARRAY(returnValues), &returnLength, &returnValues in getGLBufferLayout()
1373 if (returnLength != DE_LENGTH_OF_ARRAY(returnValues)) in getGLBufferLayout()
1377 entry.size = returnValues[0]; in getGLBufferLayout()
1380 if (returnValues[1] > 0) in getGLBufferLayout()
1382 const int numBlockVars = returnValues[1]; in getGLBufferLayout()
1395 if (returnValues[2] > 0) in getGLBufferLayout()
1397 const int nameLen = returnValues[2]; in getGLBufferLayout()
1432 int returnValues[DE_LENGTH_OF_ARRAY(queryParams)]; in getGLBufferLayout() local
[all …]
Des31fShaderImageLoadStoreTests.cpp1829 IntFloatArr returnValues; in operator ()() local
1844 returnValues.i[i] = resultSlice.getPixelInt(gid.x(), y).x(); in operator ()()
1849 returnValues.f[i] = resultSlice.getPixel(gid.x(), y).x(); in operator ()()
1860 returnValues.i) in operator ()()
1865 returnValues.f); in operator ()()
1870 … << (isIntegerFormat ? arrayStr(returnValues.i) : arrayStr(returnValues.f)) << TestLog::EndMessage in operator ()()
1891 …ration, T init, const T (&args)[NUM_INVOCATIONS_PER_PIXEL], const T (&returnValues)[NUM_INVOCATION… in verifyOperationAccumulationIntermediateValues()
1895 return verifyRecursive(operation, 0, init, argsUsed, args, returnValues); in verifyOperationAccumulationIntermediateValues()
1903 …ONS_PER_PIXEL], const T (&args)[NUM_INVOCATIONS_PER_PIXEL], const T (&returnValues)[NUM_INVOCATION… in verifyRecursive()
1909 if (!argsUsed[i] && compare(returnValues[i], valueSoFar)) in verifyRecursive()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmComputeShaderTestUtil.hpp206 …putValues, const size_t inputValuesCount, const deUint32 resultValue, const deUint32* returnValues) in compareRetVals() argument
235 if (previousResult == returnValues[ndx]) in compareRetVals()
238 currentResult = returnValues[ndx]; in compareRetVals()
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTweenAccessor.java71 public int getValues(T target, int tweenType, float[] returnValues); in getValues() argument
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DGrpcHttp2HeadersUtils.java135 List<CharSequence> returnValues = new ArrayList<>(4); in getAll() local
138 returnValues.add(values[i / 2]); in getAll()
141 return returnValues; in getAll()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp5173 std::vector<std::unique_ptr<CFXJSE_Value>> returnValues; in concat_fm_object() local
5175 returnValues.push_back(pdfium::MakeUnique<CFXJSE_Value>(pIsolate)); in concat_fm_object()
5185 argValues[i]->GetObjectPropertyByIdx(j, returnValues[index].get()); in concat_fm_object()
5189 returnValues[index]->Assign(argValues[i].get()); in concat_fm_object()
5192 args.GetReturnValue()->SetArray(returnValues); in concat_fm_object()