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

/external/deqp/modules/gles3/scripts/
H A 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(inVec
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DBufferUtils.java360 * @param toPos
363 public static void copyInternalVector3(FloatBuffer buf, int fromPos, int toPos) { argument
364 copyInternal(buf, fromPos * 3, toPos * 3, 3);
565 * @param toPos
568 public static void copyInternalVector2(FloatBuffer buf, int fromPos, int toPos) { argument
569 copyInternal(buf, fromPos * 2, toPos * 2, 2);
797 * @param toPos
802 public static void copyInternal(FloatBuffer buf, int fromPos, int toPos, int length) { argument
806 buf.position(toPos);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DLongArray.java1591 int toPos = toBit >>> 6;
1593 while (--len > toPos)
1605 long word = buf[off + toPos] >>> partial;
1608 buf[off + toPos] ^= word << partial;

Completed in 142 milliseconds