/third_party/boost/libs/uuid/test/ |
D | test_uuid_no_simd.cpp | 53 uuid u2 = u1; in main() local 54 BOOST_TEST_EQ(u2, u1); in main() 61 uuid u2 = {{1,0}}; in main() local 62 BOOST_TEST_EQ(u2.is_nil(), false); in main() 67 uuid u2 = {{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}}; in main() local 68 u1.swap(u2); in main() 73 BOOST_TEST_UUID(u2, values1); in main() 75 swap(u1, u2); in main() 77 BOOST_TEST_UUID(u2, values2); in main() 82 uuid u2 = {{1,0}}; in main() local [all …]
|
D | test_uuid.cpp | 50 uuid u2 = u1; in main() local 51 BOOST_TEST_EQ(u2, u1); in main() 75 uuid u2 = {{1,0}}; in main() local 76 BOOST_TEST_EQ(u2.is_nil(), false); in main() 143 uuid u2 = {{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}}; in main() local 144 u1.swap(u2); in main() 149 BOOST_TEST_UUID(u2, values1); in main() 151 swap(u1, u2); in main() 153 BOOST_TEST_UUID(u2, values2); in main() 158 uuid u2 = {{1,0}}; in main() local [all …]
|
D | test_uuid_class.cpp | 33 uuid_class u2; in main() local 34 BOOST_TEST_NE(u1, u2); in main() 36 BOOST_TEST_EQ(u2.is_nil(), false); in main() 38 u2 = u1; in main() 39 BOOST_TEST_EQ(u1, u2); in main()
|
/third_party/glslang/Test/ |
D | hlsl.rw.atomics.frag | 33 uniform uint2 u2; 98 InterlockedAdd(g_tTex2du1[u2], u1); 99 InterlockedAdd(g_tTex2du1[u2], u1, out_u1); 100 InterlockedAnd(g_tTex2du1[u2], u1); 101 InterlockedAnd(g_tTex2du1[u2], u1, out_u1); 102 InterlockedCompareExchange(g_tTex2du1[u2], u1b, u1c, out_u1); 103 InterlockedExchange(g_tTex2du1[u2], u1, out_u1); 104 InterlockedMax(g_tTex2du1[u2], u1); 105 InterlockedMax(g_tTex2du1[u2], u1, out_u1); 106 InterlockedMin(g_tTex2du1[u2], u1); [all …]
|
D | hlsl.intrinsics.promote.frag | 10 uint2 u2; 30 uint2 r11 = max(b2, u2); 33 float2 r14 = max(u2, f2); 35 float2 r20 = clamp(i2, u2, f2); // 3 args, converts all to best type. 36 uint2 r21 = clamp(b2, u2, b2); 41 uint2 r31 = max(b, u2); 46 float2 r40 = clamp(i, u2, f2); // 3 args, converts all to best type. 49 int2 r43 = clamp(i, i2, u2);
|
/third_party/typescript/tests/baselines/reference/ |
D | typeParameterFixingWithContextSensitiveArguments3.types | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 3 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U] 6 >pf1 : (u2: U) => T 7 >u2 : U 26 var d = f(a, b, u2 => u2.b, t2 => t2); 28 >f(a, b, u2 => u2.b, t2 => t2) : [A, B] 29 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U] 32 >u2 => u2.b : (u2: B) => B 33 >u2 : B 34 >u2.b : B [all …]
|
D | typeParameterFixingWithContextSensitiveArguments5.types | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 3 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U] 6 >pf1 : (u2: U) => T 7 >u2 : U 26 var d = f(a, b, u2 => u2.b, t2 => t2); 28 >f(a, b, u2 => u2.b, t2 => t2) : [any, B] 29 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U] 32 >u2 => u2.b : (u2: B) => any 33 >u2 : B 34 >u2.b : any [all …]
|
D | typeParameterFixingWithContextSensitiveArguments3.symbols | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 11 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 0, 37)) 41 var d = f(a, b, u2 => u2.b, t2 => t2); 46 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 6, 15)) 47 >u2.b : Symbol(B.b, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 2, 23)) 48 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 6, 15))
|
D | typeParameterFixingWithContextSensitiveArguments5.symbols | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 11 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 0, 37)) 40 var d = f(a, b, u2 => u2.b, t2 => t2); 45 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 6, 15)) 46 >u2.b : Symbol(B.b, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 2, 23)) 47 >u2 : Symbol(u2, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 6, 15))
|
D | typeParameterFixingWithContextSensitiveArguments3.js | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 8 var d = f(a, b, u2 => u2.b, t2 => t2); 13 var d = f(a, b, function (u2) { return u2.b; }, function (t2) { return t2; }); argument
|
D | typeParameterFixingWithContextSensitiveArguments5.js | 2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]… 8 var d = f(a, b, u2 => u2.b, t2 => t2); 13 var d = f(a, b, function (u2) { return u2.b; }, function (t2) { return t2; }); argument
|
/third_party/python/Lib/test/ |
D | test_userdict.py | 22 u2 = collections.UserDict(d2) 27 uu2 = collections.UserDict(u2) 45 self.assertIsInstance(u2.fromkeys('one two'.split()), collections.UserDict) 50 self.assertIn(repr(u2), ("{'one': 1, 'two': 2}", 54 all = [d0, d1, d2, u, u0, u1, u2, uu, uu0, uu1, uu2] 60 self.assertEqual(u2["one"], 1) 64 u3 = collections.UserDict(u2) 77 u2a = u2.copy() 78 self.assertEqual(u2a, u2) 86 m2 = MyUserDict(u2) [all …]
|
D | seq_tests.py | 110 u2 = self.type2test(l2) 115 uu2 = self.type2test(u2) 263 u2 = self.type2test([0, 1]) 266 self.assertEqual(u1 + self.type2test([1]), u2) 268 self.assertEqual(self.type2test(), u2*0) 269 self.assertEqual(self.type2test(), 0*u2) 270 self.assertEqual(self.type2test(), u2*0) 271 self.assertEqual(self.type2test(), 0*u2) 272 self.assertEqual(u2, u2*1) 273 self.assertEqual(u2, 1*u2) [all …]
|
D | test_userlist.py | 28 u2 = u + "eggs" 29 self.assertEqual(u2, list("spameggs")) 33 u2 = "spam" + u 34 self.assertEqual(u2, list("spameggs")) 35 u2 = u.__radd__(UserList("spam")) 36 self.assertEqual(u2, list("spameggs"))
|
/third_party/boost/boost/iostreams/detail/broken_overload_resolution/ |
D | stream_buffer.hpp | 66 stream_buffer(const U0& u0, const U1& u1, const U2& u2) in stream_buffer() argument 68 open_impl(detail::forward<T, U0>(), u0, u1, u2); in stream_buffer() 82 stream_buffer(U0& u0, const U1& u1, const U2& u2) in stream_buffer() argument 84 open_impl(detail::forward<T, U0>(), u0, u1, u2); in stream_buffer() 98 void open(const U0& u0, const U1& u1, const U2& u2) in open() argument 100 open_impl(detail::forward<T, U0>(), u0, u1, u2); in open() 114 void open(U0& u0, const U1& u1, const U2& u2) in open() argument 116 open_impl(detail::forward<T, U0>(), u0, u1, u2); in open() 164 void open_impl(mpl::false_, const U0& u0, const U1& u1, const U2& u2) in open_impl() argument 166 base_type::open(u0, u1, u2); in open_impl() [all …]
|
D | stream.hpp | 51 stream(const U0& u0, const U1& u1, const U2& u2) in stream() 53 open_impl(detail::forward<Device, U0>(), u0, u1, u2); in stream() 67 stream(U0& u0, const U1& u1, const U2& u2) in stream() 69 open_impl(detail::forward<Device, U0>(), u0, u1, u2); in stream() 83 void open(const U0& u0, const U1& u1, const U2& u2) in open() 85 open_impl(detail::forward<Device, U0>(), u0, u1, u2); in open() 99 void open(U0& u0, const U1& u1, const U2& u2) in open() 101 open_impl(detail::forward<Device, U0>(), u0, u1, u2); in open() 161 void open_impl(mpl::false_, const U0& u0, const U1& u1, const U2& u2) in open_impl() 164 this->member.open(u0, u1, u2); in open_impl() [all …]
|
/third_party/glib/glib/tests/ |
D | atomic.c | 24 guint u, u2; in test_types() local 38 u2 = (guint) g_atomic_int_get (&u); in test_types() 39 g_assert_cmpint (u2, ==, 5); in test_types() 50 u2 = g_atomic_int_and (&u, 5); in test_types() 51 g_assert_cmpint (u2, ==, 6); in test_types() 53 u2 = g_atomic_int_or (&u, 8); in test_types() 54 g_assert_cmpint (u2, ==, 4); in test_types() 56 u2 = g_atomic_int_xor (&u, 4); in test_types() 57 g_assert_cmpint (u2, ==, 12); in test_types() 153 u2 = (guint) g_atomic_int_get ((gint*)&u); in test_types() [all …]
|
/third_party/mesa3d/src/mesa/main/ |
D | eval.c | 303 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, in map1() argument 313 if (u1 == u2) { in map1() 360 map->u2 = u2; in map1() 361 map->du = 1.0F / (u2 - u1); in map1() 369 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, in _mesa_Map1f() argument 372 map1(target, u1, u2, stride, order, points, GL_FLOAT); in _mesa_Map1f() 377 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, in _mesa_Map1d() argument 380 map1(target, (GLfloat) u1, (GLfloat) u2, stride, order, points, GL_DOUBLE); in _mesa_Map1d() 385 map2( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, in map2() argument 396 if (u1==u2) { in map2() [all …]
|
D | eval.h | 73 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, 76 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, 80 GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, 85 GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, 102 _mesa_MapGrid1f( GLint un, GLfloat u1, GLfloat u2 ); 104 _mesa_MapGrid1d( GLint un, GLdouble u1, GLdouble u2 ); 106 _mesa_MapGrid2f( GLint un, GLfloat u1, GLfloat u2, 109 _mesa_MapGrid2d( GLint un, GLdouble u1, GLdouble u2,
|
/third_party/mesa3d/src/glx/ |
D | render2.c | 44 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, in __indirect_glMap1d() argument 69 __GLX_PUT_DOUBLE(12, u2); in __indirect_glMap1d() 83 __GLX_PUT_DOUBLE(16, u2); in __indirect_glMap1d() 111 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, in __indirect_glMap1f() argument 141 __GLX_PUT_FLOAT(12, u2); in __indirect_glMap1f() 151 __GLX_PUT_FLOAT(16, u2); in __indirect_glMap1f() 174 __indirect_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustr, in __indirect_glMap2d() argument 200 __GLX_PUT_DOUBLE(12, u2); in __indirect_glMap2d() 218 __GLX_PUT_DOUBLE(16, u2); in __indirect_glMap2d() 252 __indirect_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustr, in __indirect_glMap2f() argument [all …]
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.rw.atomics.frag.out | 11 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 15 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 23 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 27 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 33 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 37 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 45 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 49 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 57 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… 61 …td140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-componen… [all …]
|
D | hlsl.attributeGlobalBuffer.frag.out | 11 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 14 0:7 u2: direct index for structure ( uniform 4-component vector of float) 15 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 25 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 41 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 44 0:7 u2: direct index for structure ( uniform 4-component vector of float) 45 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 55 …0) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 72 MemberName 11($Global) 1 "u2"
|
/third_party/boost/boost/integer/ |
D | extended_euclidean.hpp | 45 Z u2 = 0; in extended_euclidean() local 57 w2 = u2 - q*v2; in extended_euclidean() 60 u2 = v2; in extended_euclidean() 71 result.y = u2; in extended_euclidean() 75 result.x = u2; in extended_euclidean()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-reference.c | 53 JERRY_ASSERT (lex_env_p->u2.outer_reference_cp != JMEM_CP_NULL); in ecma_op_resolve_reference_base() 54 lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_cp); in ecma_op_resolve_reference_base() 72 if (lex_env_p->u2.outer_reference_cp == JMEM_CP_NULL) in ecma_op_resolve_reference_base() 77 lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_cp); in ecma_op_resolve_reference_base() 122 if (lex_env_p->u2.outer_reference_cp == JMEM_CP_NULL) in ecma_op_resolve_super_base() 127 lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_cp); in ecma_op_resolve_super_base() 354 if (lex_env_p->u2.outer_reference_cp == JMEM_CP_NULL) in ecma_op_resolve_reference_value() 359 lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_cp); in ecma_op_resolve_reference_value()
|
/third_party/ltp/testcases/kernel/syscalls/syscall/ |
D | syscall01.c | 37 uid_t u1, u2; in verify_getuid() local 40 u2 = syscall(SYS_getuid); in verify_getuid() 42 if (u1 == u2) { in verify_getuid() 46 u1, u2); in verify_getuid()
|