HomeSort by relevance Sort by last modified time
    Searched refs:vOut (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_ppc.c 133 float *vOut = (float *) output;
136 vOut[attr * 4 + 0] = outputs_soa[attr][0][vert];
137 vOut[attr * 4 + 1] = outputs_soa[attr][1][vert];
138 vOut[attr * 4 + 2] = outputs_soa[attr][2][vert];
139 vOut[attr * 4 + 3] = outputs_soa[attr][3][vert];
143 vert, attr, vOut[0], vOut[1], vOut[2], vOut[3]);
145 vOut += output_stride / 4
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2Collision.cpp 201 int32 b2ClipSegmentToLine(b2ClipVertex vOut[2], const b2ClipVertex vIn[2],
212 if (distance0 <= 0.0f) vOut[numOut++] = vIn[0];
213 if (distance1 <= 0.0f) vOut[numOut++] = vIn[1];
220 vOut[numOut].v = vIn[0].v + interp * (vIn[1].v - vIn[0].v);
223 vOut[numOut].id.cf.indexA = static_cast<uint8>(vertexIndexA);
224 vOut[numOut].id.cf.indexB = vIn[0].id.cf.indexB;
225 vOut[numOut].id.cf.typeA = b2ContactFeature::e_vertex;
226 vOut[numOut].id.cf.typeB = b2ContactFeature::e_face;
b2Collision.h 244 int32 b2ClipSegmentToLine(b2ClipVertex vOut[2], const b2ClipVertex vIn[2],
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
BasicOCSPResp.java 182 OutputStream vOut = verifier.getOutputStream();
184 vOut.write(resp.getTbsResponseData().getEncoded(ASN1Encoding.DER));
185 vOut.close();
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btBox2dBox2dCollisionAlgorithm.cpp 100 static int ClipSegmentToLine(ClipVertex vOut[2], ClipVertex vIn[2],
111 if (distance0 <= 0.0f) vOut[numOut++] = vIn[0];
112 if (distance1 <= 0.0f) vOut[numOut++] = vIn[1];
119 vOut[numOut].v = vIn[0].v + interp * (vIn[1].v - vIn[0].v);
122 vOut[numOut].id = vIn[0].id;
126 vOut[numOut].id = vIn[1].id;
  /external/opencv3/modules/cudalegacy/src/cuda/
NCVBroxOpticalFlow.cu 717 NCVMatrix<Ncv32f> &vOut,
730 ncvAssertReturn(uOut.width() == kSourceWidth && vOut.width() == kSourceWidth &&
731 uOut.height() == kSourceHeight && vOut.height() == kSourceHeight, NCV_INCONSISTENT_INPUT);
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
Collision.java 139 * @param vOut
145 public static final int clipSegmentToLine(final ClipVertex[] vOut, final ClipVertex[] vIn,
161 vOut[numOut++].set(vIn0);
164 vOut[numOut++].set(vIn1);
172 ClipVertex vOutNO = vOut[numOut];
173 // vOut[numOut].v = vIn[0].v + interp * (vIn[1].v - vIn[0].v);
    [all...]

Completed in 195 milliseconds