HomeSort by relevance Sort by last modified time
    Searched defs:v1 (Results 126 - 150 of 254) sorted by null

1 2 3 4 56 7 8 91011

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 446 String v1 = IETFUtils.canonicalize(IETFUtils.valueToString(atv1.getValue())); local
449 if (!v1.equals(v2))
RFC4519Style.java 335 String v1 = IETFUtils.canonicalize(IETFUtils.valueToString(atv1.getValue())); local
338 if (!v1.equals(v2))
  /external/clang/test/CodeGenCXX/
vtable-layout.cpp 202 struct V1 { int v1; }; member in struct:Test4::V1
203 struct V2 : virtual V1 { int v1; }; member in struct:Test4::V2
206 virtual V1 *f();
943 struct V1 {
944 int v1; member in struct:Test22::V1
947 struct V2 : virtual V1 {
968 struct C : virtual V1, virtual V2 {
    [all...]
  /external/clang/test/SemaCXX/
enum-scoped.cpp 11 E1 v1 = Val1; // expected-error{{undeclared identifier}} member in struct:E1::E2
  /external/icu4c/test/cintltst/
putiltst.c 295 /* v1 <|=|> v2 */
306 UVersionInfo v1, v2; local
322 invop = 0-op; /* inverse operation: with v1 and v2 switched */
323 u_versionFromString(v1, v1str);
325 got = memcmp(v1, v2, sizeof(UVersionInfo));
326 invgot = memcmp(v2, v1, sizeof(UVersionInfo)); /* Opposite */
  /external/libyuv/files/source/
planar_functions.cc 363 const uint8* v1 = src_v + src_stride_v; local
365 v1 = v0;
368 dst_v[x] = (v0[x] + v1[x] + 1) >> 1;
    [all...]
  /external/protobuf/gtest/test/
gtest_pred_impl_unittest.cc 77 bool PredFunction1(T1 v1) {
78 return v1 > 0;
84 bool PredFunction1Int(int v1) {
85 return v1 > 0;
87 bool PredFunction1Bool(Bool v1) {
88 return v1 > 0;
94 bool operator()(const T1& v1) {
95 return v1 > 0;
102 const T1& v1) {
103 if (PredFunction1(v1))
109 << v1 << "."; local
    [all...]
  /external/speex/libspeex/
sb_celp.c 466 int v1; local
468 v1=(int)floor(st->vbr_quality);
469 if (v1==10)
470 thresh = mode->vbr_thresh[modeid][v1];
472 thresh = (st->vbr_quality-v1) * mode->vbr_thresh[modeid][v1+1] +
473 (1+v1-st->vbr_quality) * mode->vbr_thresh[modeid][v1];
    [all...]
  /external/stlport/src/
num_get_float.cpp 125 const uint64 v1 = v >> 32; local
134 uint64 x = u0 * v1 + w1;
136 high = u1 * v1 + w2 + (x >> 32);
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 716 QScriptValue v1; local
717 QScriptValue v2(v1);
719 v1 = engine.evaluate("1"); // v1 == 1 ; v2 invalid.
720 QVERIFY(v1.isValid());
723 v2 = v1; // v1 == 1; v2 == 1.
724 QVERIFY(v1.isValid());
727 v1 = engine.evaluate("obj = new Date"); // v1 == [object Date] ; v2 == 1
    [all...]
  /frameworks/base/core/java/android/hardware/
LegacySensorManager.java 385 float v1 = mV[mIndex]; local
386 if ((v-v1) > 180) {
388 } else if ((v1-v) > 180) {
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 125 const uint64 v1 = v >> 32; local
134 uint64 x = u0 * v1 + w1;
136 high = u1 * v1 + w2 + (x >> 32);
  /system/core/sh/
var.c 491 const struct var * const *v1 = v_v1; local
495 return strcmp((*v1)->text, (*v2)->text);
  /bionic/libm/src/
e_lgamma_r.c 131 v1 = 2.45597793713041134822e+00, /* 0x4003A5D7, 0xC2BD619C */ variable
265 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
e_lgammaf_r.c 65 v1 = 2.4559779167e+00, /* 0x401d2ebe */ variable
199 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 327 private static Vector v1 = new Vector<String>(Arrays.asList(new String[] { field in class:SerializationStressTest3.WriteFieldsUsingPutFieldWrite
344 passed = int1 == 0xA9 && object1.equals(v1);
351 fields.put("object1", v1);
    [all...]
  /external/clang/test/Parser/
altivec.c 116 vector char v1 = (vector char)((vector int)(1, 2, 3, 4)); variable
cxx-altivec.cpp 123 vector char v1 = (vector char)((vector int)(1, 2, 3, 4)); variable
  /external/fdlibm/
e_lgamma_r.c 130 v1 = 2.45597793713041134822e+00, /* 0x4003A5D7, 0xC2BD619C */ variable
272 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
  /external/freetype/src/autofit/
afhints.c 1080 FT_Pos v1 = ref1->v; local
1082 FT_Pos d1 = ref1->u - v1;
1089 if ( v1 == v2 )
1095 if ( u <= v1 )
1105 if ( v1 < v2 )
1111 if ( u <= v1 )
1116 u = ref1->u + FT_MulDiv( u - v1, ref2->u - ref1->u, v2 - v1 );
1129 else if ( u >= v1 )
1132 u = ref1->u + FT_MulDiv( u - v1, ref2->u - ref1->u, v2 - v1 )
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 94 // V1 = (line2 - line1) x (p1 - line1)
105 // V1 . V2 >= 0
291 Vector3f v1 = scaledTri.get1(); local
297 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v1, minT);
300 contactPoint.set(v1);
321 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v1, v2, minT, contactPoint);
335 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v3, v1, minT, contactPoint);
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 246 Vector3f v1 = vars.vect1, local
273 tree.getTriangle(i, v1, v2, v3);
276 worldMatrix.mult(v1, v1);
281 float t = r.intersects(v1, v2, v3);
330 Vector3f v1 = vars.vect3, local
400 tree.getTriangle(i, v1, v2, v3);
402 float t = r.intersects(v1, v2, v3);
405 worldMatrix.mult(v1, v1);
    [all...]
BIHTree.java 147 Vector3f v1 = vars.vect3, local
152 getTriangle(i, v1, v2, v3);
153 BoundingBox.checkMinMax(min, max, v1);
173 Vector3f v1 = vars.vect1, local
178 getTriangle(pivot, v1, v2, v3);
179 v1.addLocal(v2).addLocal(v3).multLocal(FastMath.ONE_THIRD);
180 if (v1.get(axis) > split) {
361 public void getTriangle(int index, Vector3f v1, Vector3f v2, Vector3f v3) {
364 v1.x = pointData[pointIndex++];
365 v1.y = pointData[pointIndex++]
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
LetterQuad.java 30 private float v1; field in class:LetterQuad
117 return v1;
237 v1 = v0 + (float) bitmapChar.getHeight() / charSet.getHeight();
242 v1 = 0;
383 float v1 = 1f - this.v1; local
386 tc[2] = u0; tc[3] = v1;
387 tc[4] = u1; tc[5] = v1;
437 float v1 = 1 - this.v1; local
459 short v1 = (short) (v0 + 1); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 402 Vector3f v1 = p0.clone(), v2 = new Vector3f(); local
405 result += v1.subtractLocal(v2).length();
406 v1.set(v2);
745 * @param v1 first vertex
750 public static Vector3f computeNormal(Vector3f v1, Vector3f v2, Vector3f v3) {
751 Vector3f a1 = v1.subtract(v2);
    [all...]

Completed in 813 milliseconds

1 2 3 4 56 7 8 91011