Home
last modified time | relevance | path

Searched refs:zPos (Results 1 – 2 of 2) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat.java23 public static int add33At(int len, int x, int[] z, int zPos) in add33At() argument
26 long c = (z[zPos + 0] & M) + (x & M); in add33At()
27 z[zPos + 0] = (int)c; in add33At()
29 c += (z[zPos + 1] & M) + 1L; in add33At()
30 z[zPos + 1] = (int)c; in add33At()
32 return c == 0 ? 0 : incAt(len, z, zPos + 2); in add33At()
35 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At() argument
38 long c = (z[zOff + zPos] & M) + (x & M); in add33At()
39 z[zOff + zPos] = (int)c; in add33At()
41 c += (z[zOff + zPos + 1] & M) + 1L; in add33At()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/clipping/
DvktClippingTests.cpp408 float zPos; in testPrimitivesInside() member
420 …const std::vector<Vec4> vertices = genVertices(topology, Vec4(0.0f, 0.0f, cases[caseNdx].zPos, 0.0… in testPrimitivesInside()
449 float zPos; in testPrimitivesOutside() member
462 …const std::vector<Vec4> vertices = genVertices(topology, Vec4(0.0f, 0.0f, cases[caseNdx].zPos, 0.0… in testPrimitivesOutside()
497 float zPos; in testPrimitivesDepthClamp() member
546 …const std::vector<Vec4> vertices = genVertices(topology, Vec4(0.0f, 0.0f, cases[caseNdx].zPos, 0.0… in testPrimitivesDepthClamp()