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

1 23 4 5 6 7 8

  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 130 /* Complain if first two args don't strcmp as equal. */
138 char two[50]; variable
178 (void) mystrncpy (two, one, 9);
179 equal (two, "hi there", 14); /* Just paranoia. */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I_s.s 76 two RN 7 label
82 LDRD tempVal21,[pSrcDst] ;// Loads first two values of pSrcDst to tempVal21,
83 ;// next two values to tempVal43
86 MOV two,#2
93 SMULBB X2,tempVal21,two ;// X2= first val(lower 16 bits of tampVal21)*2
99 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2
109 SMULBB X2,tempVal43,two ;// X2= first val(lower 16 bits of tampVal43)*2
117 SMULTB X3,tempVal43,two ;// X2= first val(top 16 bits of tampVal21)*2
omxVCM4P2_QuantInvIntra_I_s.s 85 two RN 10 label
116 LDRD tempVal21,[pSrcDst] ;// Loads first two values of pSrcDst to tempVal21,
117 ;// next two values to tempVal43
120 MOV two,#2
129 SMULBB X2,tempVal21,two ;// X2= first val(lower 16 bits of tampVal21)*2
135 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2
145 SMULBB X2,tempVal43,two ;// X2= first val(lower 16 bits of tampVal43)*2
153 SMULTB X3,tempVal43,two ;// X2= first val(top 16 bits of tampVal21)*2
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.h 28 : one(1), two(2), three(3), four(4)
34 two = pTwo;
42 two = -2;
48 unsigned int two; member in struct:mcldtest::LinearAllocatorTest::Data
RTLinearAllocatorTest.h 41 : one(1), two(2), three(3), four(4)
47 two = pTwo;
55 two = -2;
61 unsigned int two; member in struct:mcldtest::RTLinearAllocatorTest::Data
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/
weak_result.pass.cpp 50 struct two {char _; char __;}; struct in struct:has_result_type
51 template <class U> static two test(...);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/
forward.pass.cpp 23 struct two {one _[2];}; struct
28 two test(const A&);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 68 CodeSigner two = new CodeSigner(cpath, ts); local
75 assertTrue(one.equals(two));
76 assertTrue(two.equals(one));
TimestampTest.java 65 Timestamp two = new Timestamp(now, cpath); local
68 assertTrue(one.equals(two));
69 assertTrue(two.equals(one));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 85 CodeSigner two = new CodeSigner(cpath, ts); local
92 assertTrue(one.equals(two));
93 assertTrue(two.equals(one));
TimestampTest.java 69 Timestamp two = new Timestamp(now, cpath); local
72 assertTrue(one.equals(two));
73 assertTrue(two.equals(one));
108 Timestamp two = new Timestamp(now, cpath); local
113 assertTrue(one.hashCode() == two.hashCode());
115 assertTrue(two.hashCode() != three.hashCode());
  /art/runtime/
utf.cc 34 // two- or three-byte encoding
37 // two-byte encoding
94 // two- or three-byte encoding
95 uint8_t two = *(*utf8_data_in)++; local
97 // two-byte encoding
98 return ((one & 0x1f) << 6) | (two & 0x3f);
102 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_unittest.cc 26 // and |two| differ in the prefix, while |one| and |onetwo| have the
28 SBFullHash one, onetwo, two; local
31 memset(&two, 0, sizeof(two));
36 two.prefix = 2;
41 EXPECT_TRUE(SBAddPrefixHashLess(SBAddFullHash(10, now, two),
43 EXPECT_FALSE(SBAddPrefixHashLess(SBAddFullHash(11, now, two),
48 SBAddFullHash(10, now, two)));
49 EXPECT_FALSE(SBAddPrefixHashLess(SBAddFullHash(10, now, two),
79 SBFullHash one, onetwo, two; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_unittest.cc 26 // and |two| differ in the prefix, while |one| and |onetwo| have the
28 SBFullHash one, onetwo, two; local
31 memset(&two, 0, sizeof(two));
36 two.prefix = 2;
41 EXPECT_TRUE(SBAddPrefixHashLess(SBAddFullHash(10, now, two),
43 EXPECT_FALSE(SBAddPrefixHashLess(SBAddFullHash(11, now, two),
48 SBAddFullHash(10, now, two)));
49 EXPECT_FALSE(SBAddPrefixHashLess(SBAddFullHash(10, now, two),
79 SBFullHash one, onetwo, two; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 32 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'two', etc. may be used without having been initialized
77 int two = 0; local
81 two = bytes[1];
82 one |= two >> 4;
83 two = (uint8_t) (two << 4);
85 two |= three >> 2;
88 SkASSERT(one < 256 && two < 256 && three < 256);
95 *dst = (unsigned char) two;
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 30 void two() { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
31 void two(int) { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
38 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
47 two; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
61 void two() { }; //expected-note 5{{candidate}} function
62 void two(int) { }; //expected-note 5{{candidate}} function
84 { static_cast<void>(two); } // expected-error {{address of overloaded function 'two' cannot be static_cast to type 'void'}}
85 { (void)(two); } // expected-error {{address of overloaded function 'two' cannot be cast to type 'void'}
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheManualTest.java 38 Object two = new Object(); local
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two));
56 assertNull(cache.asMap().get(two));
57 assertFalse(cache.asMap().containsKey(two));
60 cache.put(one, two);
62 assertSame(two, cache.getIfPresent(one));
68 assertSame(two, cache.asMap().get(one));
70 assertTrue(cache.asMap().containsValue(two));
72 assertNull(cache.getIfPresent(two));
    [all...]
  /external/skia/src/utils/
SkBase64.cpp 32 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'two', etc. may be used without having been initialized
77 int two = 0; local
81 two = bytes[1];
82 one |= two >> 4;
83 two = (uint8_t) (two << 4);
85 two |= three >> 2;
88 SkASSERT(one < 256 && two < 256 && three < 256);
95 *dst = (unsigned char) two;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jn.c 48 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
178 v = two/x;
186 di -= two;
194 di -= two;
e_jnf.c 23 two = 2.0000000000e+00, /* 0x40000000 */ variable
130 v = two/x;
138 di -= two;
146 di -= two;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 37 Double two = new Double(2.0); local
41 al.add(two);
67 Double two = new Double(2.0); local
71 al.add(two);
84 sub.set(1, two);
97 Double two = new Double(2.0); local
101 al.add(two);
114 sub.add(1, two);
127 Double two = new Double(2.0); local
131 al.add(two);
157 Double two = new Double(2.0); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program_tex.c 326 unsigned two, two_swizzle; local
347 two = rc_constants_add_immediate_scalar(&c->Program.Constants, 2, &two_swizzle);
358 inst_mad->U.I.SrcReg[1].Index = two;
442 unsigned two, two_swizzle; local
445 two = rc_constants_add_immediate_scalar(&c->Program.Constants, 2.35, &two_swizzle);
454 inst_mul->U.I.SrcReg[1].Index = two;
  /external/chromium_org/v8/test/webkit/fast/js/kde/
operators.js 207 var two = 2; variable
210 shouldBe("1 << two", "4");
212 shouldBe("1 >> two", "0");
214 shouldBe("8 >>> two", "2");
  /external/clang/test/Sema/
missing-field-initializers.c 26 struct Two { float c; float d; float e; };
31 struct Two two; member in union:Three::__anon18715
39 { .two = { 1.0f, 2.0f, 3.0f } }
45 { { .two = { 1.0f, 2.0f, 3.0f } } },
46 { { .two = { 1.0f, 2.0f } } } // expected-warning {{missing field 'e' initializer}}
  /external/clang/test/SemaCXX/
warn-shadow.cpp 8 namespace two { namespace in namespace:one
20 using namespace one::two;
26 int j; // expected-warning {{declaration shadows a variable in namespace 'one::two'}}

Completed in 1218 milliseconds

1 23 4 5 6 7 8