/external/turbine/java/com/google/turbine/bytecode/ |
D | ClassReader.java | 80 int minorVersion = reader.u2(); in read() 81 int majorVersion = reader.u2(); in read() 86 int accessFlags = reader.u2(); in read() 87 String thisClass = constantPool.classInfo(reader.u2()); in read() 88 int superClassIndex = reader.u2(); in read() 95 int interfacesCount = reader.u2(); in read() 98 interfaces.add(constantPool.classInfo(reader.u2())); in read() 109 int attributesCount = reader.u2(); in read() 111 int attributeNameIndex = reader.u2(); in read() 151 signature = constantPool.utf8(reader.u2()); in readSignature() [all …]
|
/external/deqp-deps/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);
|
/external/angle/third_party/vulkan-deps/glslang/src/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);
|
/external/llvm-project/flang/test/Semantics/ |
D | allocate04.f90 | 29 class(*), allocatable :: u1, u2(:) local 38 allocate(u2(2)) 54 allocate(real:: u1, u2(2)) 55 allocate(A:: u1, u2(2)) 56 allocate(C:: u1, u2(2)) 57 allocate(character(n):: u1, u2(2)) 61 allocate(u1, u2(2), MOLD = cos(5.+n)) 62 allocate(u1, u2(2), MOLD = molda) 63 allocate(u1, u2(2), MOLD = n1) 64 allocate(u1, u2(2), MOLD = new_line("a")) [all …]
|
/external/python/cpython3/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"))
|
/external/python/cpython2/Lib/test/ |
D | seq_tests.py | 108 u2 = self.type2test(l2) 113 uu2 = self.type2test(u2) 262 u2 = self.type2test([0, 1]) 265 self.assertEqual(u1 + self.type2test([1]), u2) 267 self.assertEqual(self.type2test(), u2*0) 268 self.assertEqual(self.type2test(), 0*u2) 269 self.assertEqual(self.type2test(), u2*0L) 270 self.assertEqual(self.type2test(), 0L*u2) 271 self.assertEqual(u2, u2*1) 272 self.assertEqual(u2, 1*u2) [all …]
|
D | test_userdict.py | 22 u2 = UserDict.IterableUserDict(d2) 27 uu2 = UserDict.UserDict(u2) 46 self.assertIsInstance(u2.fromkeys('one two'.split()), UserDict.IterableUserDict) 51 self.assertEqual(repr(u2), repr(d2)) 54 all = [d0, d1, d2, u, u0, u1, u2, uu, uu0, uu1, uu2] 60 self.assertEqual(u2["one"], 1) 64 u3 = UserDict.UserDict(u2) 77 u2a = u2.copy() 78 self.assertEqual(u2a, u2) 86 m2 = MyUserDict(u2) [all …]
|
D | test_userlist.py | 21 u2 = u + "eggs" 22 self.assertEqual(u2, list("spameggs")) 26 u2 = "spam" + u 27 self.assertEqual(u2, list("spameggs")) 28 u2 = u.__radd__(UserList("spam")) 29 self.assertEqual(u2, list("spameggs"))
|
/external/libchrome/base/debug/ |
D | thread_heap_usage_tracker_unittest.cc | 250 ThreadHeapUsage u2 = usage_tracker.usage(); in TEST_F() local 252 EXPECT_EQ(1U, u2.alloc_ops); in TEST_F() 253 EXPECT_EQ(kAllocSize, u2.alloc_bytes); in TEST_F() 254 EXPECT_EQ(0U, u2.alloc_overhead_bytes); in TEST_F() 255 EXPECT_EQ(1U, u2.free_ops); in TEST_F() 256 EXPECT_EQ(kAllocSize, u2.free_bytes); in TEST_F() 257 EXPECT_EQ(kAllocSize, u2.max_allocated_bytes); in TEST_F() 280 ThreadHeapUsage u2 = usage_tracker.usage(); in TEST_F() local 282 EXPECT_EQ(1U, u2.alloc_ops); in TEST_F() 283 EXPECT_EQ(kAllocSize + kAllocationPadding, u2.alloc_bytes); in TEST_F() [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/command/EA/ |
D | PolicyOR.c | 65 || (MemoryEqual2B(&session->u2.policyDigest.b, in TPM2_PolicyOR() 73 session->u2.policyDigest.t.size in TPM2_PolicyOR() 76 MemorySet(session->u2.policyDigest.t.buffer, 0, in TPM2_PolicyOR() 77 session->u2.policyDigest.t.size); in TPM2_PolicyOR() 78 CryptDigestUpdate2B(&hashState, &session->u2.policyDigest.b); in TPM2_PolicyOR() 90 CryptHashEnd2B(&hashState, &session->u2.policyDigest.b); in TPM2_PolicyOR()
|
D | Policy_spt.c | 82 if(cpHashA->t.size != session->u2.policyDigest.t.size) in PolicyParameterChecks() 117 pAssert(session->u2.policyDigest.t.size in PolicyContextUpdate() 121 CryptDigestUpdate2B(&hashState, &session->u2.policyDigest.b); in PolicyContextUpdate() 131 CryptHashEnd2B(&hashState, &session->u2.policyDigest.b); in PolicyContextUpdate() 141 CryptDigestUpdate2B(&hashState, &session->u2.policyDigest.b); in PolicyContextUpdate() 147 CryptHashEnd2B(&hashState, &session->u2.policyDigest.b); in PolicyContextUpdate() 212 session->u2.policyDigest.t.size = CryptHashGetDigestSize(session->authHashAlg); in PolicyDigestClear() 213 MemorySet(session->u2.policyDigest.t.buffer, 0, in PolicyDigestClear() 214 session->u2.policyDigest.t.size); in PolicyDigestClear()
|
/external/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,
|
/external/elfutils/tests/ |
D | show-die-info.c | 142 Dwarf_Word u2; in handle() local 146 || dwarf_formudata (&attr, &u2) != 0 in handle() 147 || i != (int) u2) in handle() 170 Dwarf_Word u2; in handle() local 174 || dwarf_formudata (&attr, &u2) != 0 in handle() 175 || i != (int) u2) in handle() 199 Dwarf_Word u2; in handle() local 203 || dwarf_formudata (&attr, &u2) != 0 in handle() 204 || i != (int) u2) in handle() 228 Dwarf_Word u2; in handle() local [all …]
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_string.h | 112 unsigned char u1, u2; in util_strcmp() local 116 u2 = (unsigned char) *s2++; in util_strcmp() 117 if (u1 != u2) in util_strcmp() 118 return u1 - u2; in util_strcmp() 128 unsigned char u1, u2; in util_strncmp() local 132 u2 = (unsigned char) *s2++; in util_strncmp() 133 if (u1 != u2) in util_strncmp() 134 return u1 - u2; in util_strncmp()
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 192 U2 u2(nullptr, dsource); in doDeleterTest() local 193 u1 = std::move(u2); in doDeleterTest() 327 U2 u2; in test_deleter_value_category() local 329 u1 = std::move(u2); in test_deleter_value_category() 336 U2 u2; in test_deleter_value_category() local 338 u1 = std::move(u2); in test_deleter_value_category() 345 U2 u2; in test_deleter_value_category() local 347 u1 = std::move(u2); in test_deleter_value_category() 355 U2 u2(nullptr, d2); in test_deleter_value_category() local 357 u1 = std::move(u2); in test_deleter_value_category() [all …]
|
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 191 U2 u2(nullptr, dsource); in doDeleterTest() local 192 u1 = std::move(u2); in doDeleterTest() 326 U2 u2; in test_deleter_value_category() local 328 u1 = std::move(u2); in test_deleter_value_category() 335 U2 u2; in test_deleter_value_category() local 337 u1 = std::move(u2); in test_deleter_value_category() 344 U2 u2; in test_deleter_value_category() local 346 u1 = std::move(u2); in test_deleter_value_category() 354 U2 u2(nullptr, d2); in test_deleter_value_category() local 356 u1 = std::move(u2); in test_deleter_value_category() [all …]
|
/external/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 …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | bitfield-layout.cpp | 50 Test4 u2; in test_assign() local 53 u2.val = 42; in test_assign() 56 CHECK(u2.val == 42); in test_assign() 78 Test4 u2 = {42}; in test_init() local 82 CHECK(u2.val == 42); in test_init()
|
/external/angle/third_party/vulkan-deps/glslang/src/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 …]
|
/external/deqp-deps/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 …]
|