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

1 23 4 5 6 7 8 91011

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7.cpp 7 auto v1 = 0, *p1 = &v1; local
  /external/clang/test/Sema/
declspec.c 21 const f* v1; // expected-warning {{qualifier on function type 'f' (aka 'int (void)') has unspecified behavior}} variable
offsetof.c 31 int v1 = offsetof (struct s1, a) == 0 ? 0 : f(); variable
  /external/iptables/include/linux/netfilter/
xt_string.h 27 } v1; member in union:xt_string_info::__anon7506
  /frameworks/base/tools/layoutlib/bridge/tests/src/android/graphics/
Matrix_DelegateTest.java 49 float[] v1 = new float[9]; local
51 m1.getValues(v1);
55 assertEquals(v1[i], v2[i]);
  /external/android-mock/tests/com/google/android/testing/mocking/
ConstructorCreationTests.java 43 public int v1; field in class:ConstructorCreationTests.TestClass
55 public TestClass(int v1) {
56 this(v1, 0);
59 public TestClass(int v1, float v2) {
60 this.v1 = v1;
65 public TestClass(int v1, double v2) {
66 this.v1 = v1;
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 205 struct V1 {
206 int v1; member in struct:Test3::V1
210 struct V2 : virtual V1 {
225 // CHECK-7-NEXT: -- (Test3::V1, 16) vtable address --
246 // CHECK-8-NEXT: -- (Test3::V1, 16) vtable address --
249 struct C : virtual V1, virtual V2 {
271 // CHECK-9-NEXT: -- (Test3::V1, 24) vtable address --
292 // CHECK-10-NEXT: -- (Test3::V1, 24) vtable address --
313 // CHECK-11-NEXT: -- (Test3::V1, 24) vtable address --
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 50 volatile int v1; member in struct:Z1
aggregate-initialization.cpp 38 __v4hi v1 = { (void *)1, 2, 3 }; // expected-error {{cannot initialize a vector element of type 'short' with an rvalue of type 'void *'}} variable
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHTriangle.java 77 float v1, v2, v3; local
79 case 0: v1 = pointa.x; v2 = pointb.x; v3 = pointc.x; break;
80 case 1: v1 = pointa.y; v2 = pointb.y; v3 = pointc.y; break;
81 case 2: v1 = pointa.z; v2 = pointb.z; v3 = pointc.z; break;
85 if (v1 < v2){
86 if (v1 < v3)
87 return v1;
97 if (v1 > v2){
98 if (v1 > v3)
99 return v1;
    [all...]
  /external/skia/src/animator/
SkOperandIterpolator.cpp 112 SkOperand v1[3], v2[3], v[3], vv[3]; local
115 inter.setKeyFrame(0, 100, iset(v1, 10, 20, 30), 0);
120 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
124 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
128 SkASSERT(memcmp(v, v1, sizeof(v)) == 0);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Utf8Utils.java 112 int v1 = bytes[at + 1] & 0xFF; local
113 if ((v1 & 0xc0) != 0x80) {
114 return throwBadUtf8(v1, at + 1);
116 int value = ((v0 & 0x1f) << 6) | (v1 & 0x3f);
122 return throwBadUtf8(v1, at + 1);
134 int v1 = bytes[at + 1] & 0xFF; local
135 if ((v1 & 0xc0) != 0x80) {
136 return throwBadUtf8(v1, at + 1);
139 if ((v1 & 0xc0) != 0x80) {
142 int value = ((v0 & 0x0f) << 12) | ((v1 & 0x3f) << 6)
    [all...]
  /external/stlport/test/unit/
iter_test.cpp 113 vector<int> v1(6);
114 __iota(v1.begin(), v1.end(), 0);
115 iter_swap( v1.begin(), v1.begin() + 3 );
117 CPPUNIT_ASSERT(v1[0]==3);
118 CPPUNIT_ASSERT(v1[1]==1);
119 CPPUNIT_ASSERT(v1[2]==2);
120 CPPUNIT_ASSERT(v1[3]==0);
121 CPPUNIT_ASSERT(v1[4]==4)
136 bool v1 = *i2; local
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
codegen-temporaries-multiple-global-blocks-2.js 5 var v1 = 1; variable
6 v1 += assign1();
7 shouldBe("v1", "2");
  /external/webkit/Source/WebCore/platform/graphics/
FloatQuad.cpp 58 FloatSize v1 = t2 - t1; local
63 float dot01 = dot(v0, v1);
65 float dot11 = dot(v1, v1);
66 float dot12 = dot(v1, v2);
  /external/zlib/contrib/iostream3/
zfstream.h 424 T1 v1, member in class:gzomanip2
450 T1 v1, variable
452 : func(f), val1(v1), val2(v2)
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 142 uint8 *y1, *y2, *u1, *u2, *v1, *v2; local
156 v1 = curr->vChan + chrstart;
182 oscl_memcpy(v1, v2, B_SIZE);
183 v1 += width_C;
185 oscl_memcpy(v1, v2, B_SIZE);
186 v1 += width_C;
  /libcore/luni/src/main/java/java/util/
Random.java 149 double v1, v2, s; local
151 v1 = 2 * nextDouble() - 1; // Generates two independent random
154 s = v1 * v1 + v2 * v2;
160 return v1 * norm; // should that not be norm instead of multiplier
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 1 package org.xmlpull.v1;
40 * <a href="http://www.xmlpull.org/v1/doc/features.html">
41 * http://www.xmlpull.org/v1/doc/features.html</a>.
68 * <a href="http://www.xmlpull.org/v1/doc/properties.html">
69 * http://www.xmlpull.org/v1/doc/properties.html</a>.
  /ndk/tests/device/test-gnustl-full/unit/
iter_test.cpp 113 vector<int> v1(6);
114 __iota(v1.begin(), v1.end(), 0);
115 iter_swap( v1.begin(), v1.begin() + 3 );
117 CPPUNIT_ASSERT(v1[0]==3);
118 CPPUNIT_ASSERT(v1[1]==1);
119 CPPUNIT_ASSERT(v1[2]==2);
120 CPPUNIT_ASSERT(v1[3]==0);
121 CPPUNIT_ASSERT(v1[4]==4)
136 bool v1 = *i2; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
iter_test.cpp 113 vector<int> v1(6);
114 __iota(v1.begin(), v1.end(), 0);
115 iter_swap( v1.begin(), v1.begin() + 3 );
117 CPPUNIT_ASSERT(v1[0]==3);
118 CPPUNIT_ASSERT(v1[1]==1);
119 CPPUNIT_ASSERT(v1[2]==2);
120 CPPUNIT_ASSERT(v1[3]==0);
121 CPPUNIT_ASSERT(v1[4]==4)
136 bool v1 = *i2; local
    [all...]
  /dalvik/dx/tests/120-disable-extended-ops/
Blort.java 32 int v1 = field1; local
53 sink(v1);
  /external/chromium/testing/gmock/test/
gmock-internal-utils_test.cc 589 Chars v1; local
590 const Chars& v2(StlContainerView<Chars>::ConstReference(v1));
591 EXPECT_EQ(&v1, &v2);
593 v1.push_back('a');
594 Chars v3 = StlContainerView<Chars>::Copy(v1);
  /external/clang/test/CXX/class/class.mem/
p1.cpp 5 static int v1; // expected-note{{previous declaration is here}} member in struct:S
6 int v1; //expected-error{{duplicate member 'v1'}} member in struct:S
  /external/freetype/src/base/
fttrigon.c 68 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local
74 v1 = (FT_UInt32)val >> 16;
80 hi = k1 * v1;
81 lo1 = k1 * v2 + k2 * v1; /* can't overflow */

Completed in 1655 milliseconds

1 23 4 5 6 7 8 91011