Home
last modified time | relevance | path

Searched refs:toPos (Results 1 – 3 of 3) sorted by relevance

/external/deqp/modules/gles3/scripts/
Dgen-conversions.py221 def toPos (value): function
223 return [toPos(x) for x in value]
243 inUVec4 = toUVec4(toPos(inVec4))
244 inUVec3 = toUVec3(toPos(inVec3))
245 inUVec2 = toUVec2(toPos(inVec2))
301 genConversionCases([toPos(inFloat), toPos(inInt), inUint, inBool], [toUint])))
306 genConversionCases([toPos(inFloat), toPos(inInt), inUint, inBool], [toUVec2, toUVec3, toUVec4])))
311 …genConversionCases([toPos(inVec2), toPos(inVec3), toPos(inVec4), toPos(inIVec2), toPos(inIVec3), t…
321 …genConversionCases([toPos(inVec4), toPos(inIVec4), inUVec4, inBVec4], [toUVec4, toUVec3, toUVec2])…
323 genConversionCases([toPos(inVec3), toPos(inIVec3), inUVec3, inBVec3], [toUVec3, toUVec2]) +\
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DBufferUtils.java363 public static void copyInternalVector3(FloatBuffer buf, int fromPos, int toPos) { in copyInternalVector3() argument
364 copyInternal(buf, fromPos * 3, toPos * 3, 3); in copyInternalVector3()
568 public static void copyInternalVector2(FloatBuffer buf, int fromPos, int toPos) { in copyInternalVector2() argument
569 copyInternal(buf, fromPos * 2, toPos * 2, 2); in copyInternalVector2()
802 public static void copyInternal(FloatBuffer buf, int fromPos, int toPos, int length) { in copyInternal() argument
806 buf.position(toPos); in copyInternal()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1591 int toPos = toBit >>> 6; in reduceWordWise() local
1593 while (--len > toPos) in reduceWordWise()
1605 long word = buf[off + toPos] >>> partial; in reduceWordWise()
1608 buf[off + toPos] ^= word << partial; in reduceWordWise()