Home
last modified time | relevance | path

Searched refs:u1 (Results 1 – 25 of 592) sorted by relevance

12345678910>>...24

/external/deqp-deps/glslang/Test/
Dhlsl.rw.atomics.frag32 uniform uint u1;
66 InterlockedAdd(g_tTex1du1[u1], u1);
67 InterlockedAdd(g_tTex1du1[u1], u1, out_u1);
68 InterlockedAnd(g_tTex1du1[u1], u1);
69 InterlockedAnd(g_tTex1du1[u1], u1, out_u1);
70 InterlockedCompareExchange(g_tTex1du1[u1], u1b, u1c, out_u1);
71 InterlockedExchange(g_tTex1du1[u1], u1, out_u1);
72 InterlockedMax(g_tTex1du1[u1], u1);
73 InterlockedMax(g_tTex1du1[u1], u1, out_u1);
74 InterlockedMin(g_tTex1du1[u1], u1);
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.rw.atomics.frag32 uniform uint u1;
66 InterlockedAdd(g_tTex1du1[u1], u1);
67 InterlockedAdd(g_tTex1du1[u1], u1, out_u1);
68 InterlockedAnd(g_tTex1du1[u1], u1);
69 InterlockedAnd(g_tTex1du1[u1], u1, out_u1);
70 InterlockedCompareExchange(g_tTex1du1[u1], u1b, u1c, out_u1);
71 InterlockedExchange(g_tTex1du1[u1], u1, out_u1);
72 InterlockedMax(g_tTex1du1[u1], u1);
73 InterlockedMax(g_tTex1du1[u1], u1, out_u1);
74 InterlockedMin(g_tTex1du1[u1], u1);
[all …]
/external/llvm-project/clang/test/SemaTemplate/
Dfun-template-def.cpp24 T f1(T t1, U u1, int i1) in f1() argument
27 t2 = i1 + u1; in f1()
28 ++u1; in f1()
29 u1++; in f1()
30 int i2 = u1; in f1()
32 i1 = t1[u1]; in f1()
35 i1(u1, t1); // error in f1()
36 u1(i1, t1); in f1()
43 new int(t1, u1); in f1()
44 new (t1, u1) int; in f1()
[all …]
/external/clang/test/SemaTemplate/
Dfun-template-def.cpp24 T f1(T t1, U u1, int i1) in f1() argument
27 t2 = i1 + u1; in f1()
28 ++u1; in f1()
29 u1++; in f1()
30 int i2 = u1; in f1()
32 i1 = t1[u1]; in f1()
35 i1(u1, t1); // error in f1()
36 u1(i1, t1); in f1()
43 new int(t1, u1); in f1()
44 new (t1, u1) int; in f1()
[all …]
/external/llvm-project/flang/test/Semantics/
Dallocate04.f9029 class(*), allocatable :: u1, u2(:) local
36 allocate(u1)
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/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp191 U1 u1(nullptr, ddest); in doDeleterTest() local
193 u1 = std::move(u2); in doDeleterTest()
326 U1 u1; in test_deleter_value_category() local
328 u1.get_deleter().reset(); in test_deleter_value_category()
329 u1 = std::move(u2); in test_deleter_value_category()
330 assert(checkArg<TD2&&>(u1.get_deleter())); in test_deleter_value_category()
335 U1 u1(nullptr, d1); in test_deleter_value_category() local
337 u1.get_deleter().reset(); in test_deleter_value_category()
338 u1 = std::move(u2); in test_deleter_value_category()
339 assert(checkArg<TD2&&>(u1.get_deleter())); in test_deleter_value_category()
[all …]
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp190 U1 u1(nullptr, ddest); in doDeleterTest() local
192 u1 = std::move(u2); in doDeleterTest()
325 U1 u1; in test_deleter_value_category() local
327 u1.get_deleter().reset(); in test_deleter_value_category()
328 u1 = std::move(u2); in test_deleter_value_category()
329 assert(checkArg<TD2&&>(u1.get_deleter())); in test_deleter_value_category()
334 U1 u1(nullptr, d1); in test_deleter_value_category() local
336 u1.get_deleter().reset(); in test_deleter_value_category()
337 u1 = std::move(u2); in test_deleter_value_category()
338 assert(checkArg<TD2&&>(u1.get_deleter())); in test_deleter_value_category()
[all …]
/external/llvm-project/clang/test/Sema/
Dvector-ops.c79 unsigned u1; in testLogicalVecScalar() local
80 …v2ua = v2ua && u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
81 …v2ua = v2ua || u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
83 …v2sa = v2sa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
84 …v2sa = v2sa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
86 …v2ua = v2sa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
87 …v2ua = v2sa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
88 …v2sa = v2ua && u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
89 …v2sa = v2ua || u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
91 …v2ua = v2fa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DCachedPathIteratorFactory.java129 float u1 = 1 - t1; in quadCurveSegment() local
136 coords[4] = coords[0] * u1 * u1 + coords[2] * 2 * t1 * u1 + coords[4] * t1 * t1; in quadCurveSegment()
137 coords[5] = coords[1] * u1 * u1 + coords[3] * 2 * t1 * u1 + coords[5] * t1 * t1; in quadCurveSegment()
147 float u1 = 1 - t1; in cubicCurveSegment() local
152 float qxb = coords[0] * u1 * u1 + coords[2] * 2 * t1 * u1 + coords[4] * t1 * t1; in cubicCurveSegment()
154 float qxd = coords[2] * u1 * u1 + coords[4] * 2 * t1 * u1 + coords[6] * t1 * t1; in cubicCurveSegment()
157 float qyb = coords[1] * u1 * u1 + coords[3] * 2 * t1 * u1 + coords[5] * t1 * t1; in cubicCurveSegment()
159 float qyd = coords[3] * u1 * u1 + coords[5] * 2 * t1 * u1 + coords[7] * t1 * t1; in cubicCurveSegment()
165 coords[2] = qxa * u1 + qxc * t1; in cubicCurveSegment()
166 coords[3] = qya * u1 + qyc * t1; in cubicCurveSegment()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dfwd_txfm_sse2.c52 __m128i u0, u1, sum; in vpx_fdct8x8_1_sse2() local
55 u1 = _mm_add_epi16(in2, in3); in vpx_fdct8x8_1_sse2()
62 sum = _mm_add_epi16(u0, u1); in vpx_fdct8x8_1_sse2()
90 __m128i u0, u1; in vpx_fdct16x16_1_sse2() local
101 u1 = _mm_add_epi16(in2, in3); in vpx_fdct16x16_1_sse2()
109 sum = _mm_add_epi16(sum, u1); in vpx_fdct16x16_1_sse2()
111 u1 = _mm_add_epi16(in2, in3); in vpx_fdct16x16_1_sse2()
119 sum = _mm_add_epi16(sum, u1); in vpx_fdct16x16_1_sse2()
121 u1 = _mm_add_epi16(in2, in3); in vpx_fdct16x16_1_sse2()
129 sum = _mm_add_epi16(sum, u1); in vpx_fdct16x16_1_sse2()
[all …]
/external/ethtool/
Dibm_emac.c110 } u1; member
198 p->u1.emac4sync.revid); in print_emac_regs()
201 p->u1.emac4sync.iaht1, p->u1.emac4sync.iaht2, in print_emac_regs()
202 p->u1.emac4sync.iaht3, p->u1.emac4sync.iaht4); in print_emac_regs()
204 p->u1.emac4sync.iaht5, p->u1.emac4sync.iaht6, in print_emac_regs()
205 p->u1.emac4sync.iaht7, p->u1.emac4sync.iaht8); in print_emac_regs()
209 p->u1.emac4sync.gaht1, p->u1.emac4sync.gaht2, in print_emac_regs()
210 p->u1.emac4sync.gaht3, p->u1.emac4sync.gaht4); in print_emac_regs()
212 p->u1.emac4sync.gaht5, p->u1.emac4sync.gaht6, in print_emac_regs()
213 p->u1.emac4sync.gaht7, p->u1.emac4sync.gaht8); in print_emac_regs()
[all …]
/external/virglrenderer/src/gallium/auxiliary/util/
Du_string.h112 unsigned char u1, u2; in util_strcmp() local
115 u1 = (unsigned char) *s1++; in util_strcmp()
117 if (u1 != u2) in util_strcmp()
118 return u1 - u2; in util_strcmp()
119 if (u1 == '\0') in util_strcmp()
128 unsigned char u1, u2; in util_strncmp() local
131 u1 = (unsigned char) *s1++; in util_strncmp()
133 if (u1 != u2) in util_strncmp()
134 return u1 - u2; in util_strncmp()
135 if (u1 == '\0') in util_strncmp()
/external/libchrome/base/debug/
Dthread_heap_usage_tracker_unittest.cc236 ThreadHeapUsage u1 = ThreadHeapUsageTracker::GetUsageSnapshot(); in TEST_F() local
238 EXPECT_EQ(0U, u1.alloc_ops); in TEST_F()
239 EXPECT_EQ(0U, u1.alloc_bytes); in TEST_F()
240 EXPECT_EQ(0U, u1.alloc_overhead_bytes); in TEST_F()
241 EXPECT_EQ(0U, u1.free_ops); in TEST_F()
242 EXPECT_EQ(0U, u1.free_bytes); in TEST_F()
243 EXPECT_EQ(0U, u1.max_allocated_bytes); in TEST_F()
266 ThreadHeapUsage u1 = ThreadHeapUsageTracker::GetUsageSnapshot(); in TEST_F() local
268 EXPECT_EQ(0U, u1.alloc_ops); in TEST_F()
269 EXPECT_EQ(0U, u1.alloc_bytes); in TEST_F()
[all …]
/external/python/cpython3/Modules/_decimal/libmpdec/
Ddifradix2.c83 mpd_uint_t u0, u1, v0, v1; in fnt_dif2() local
104 u1 = a[j+1]; in fnt_dif2()
110 a[j+1] = addmod(u1, v1, umod); in fnt_dif2()
111 v1 = submod(u1, v1, umod); in fnt_dif2()
131 u1 = a[m+r]; in fnt_dif2()
137 a[m+r] = addmod(u1, v1, umod); in fnt_dif2()
138 v1 = submod(u1, v1, umod); in fnt_dif2()
153 u1 = a[m+r+j]; in fnt_dif2()
159 a[m+r+j] = addmod(u1, v1, umod); in fnt_dif2()
160 v1 = submod(u1, v1, umod); in fnt_dif2()
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.multiEntry.vert.out4 0:4 Function Definition: FakeEntrypoint(u1; ( temp 4-component vector of float)
13 0:9 Function Definition: @RealEntrypoint(u1; ( temp 4-component vector of float)
18 0:10 Function Call: FakeEntrypoint(u1; ( temp 4-component vector of float)
28 0:9 Function Call: @RealEntrypoint(u1; ( temp 4-component vector of float)
41 0:4 Function Definition: FakeEntrypoint(u1; ( temp 4-component vector of float)
50 0:9 Function Definition: @RealEntrypoint(u1; ( temp 4-component vector of float)
55 0:10 Function Call: FakeEntrypoint(u1; ( temp 4-component vector of float)
65 0:9 Function Call: @RealEntrypoint(u1; ( temp 4-component vector of float)
83 Name 12 "FakeEntrypoint(u1;"
85 Name 15 "@RealEntrypoint(u1;"
[all …]
Dhlsl.rw.atomics.frag.out11 0:50 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
15 0:50 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
23 0:51 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
27 0:51 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
33 0:52 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
37 0:52 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
45 0:53 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
49 0:53 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
57 0:54 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
61 0:54 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dhlsl.multiEntry.vert.out4 0:4 Function Definition: FakeEntrypoint(u1; ( temp 4-component vector of float)
13 0:9 Function Definition: @RealEntrypoint(u1; ( temp 4-component vector of float)
18 0:10 Function Call: FakeEntrypoint(u1; ( temp 4-component vector of float)
28 0:9 Function Call: @RealEntrypoint(u1; ( temp 4-component vector of float)
41 0:4 Function Definition: FakeEntrypoint(u1; ( temp 4-component vector of float)
50 0:9 Function Definition: @RealEntrypoint(u1; ( temp 4-component vector of float)
55 0:10 Function Call: FakeEntrypoint(u1; ( temp 4-component vector of float)
65 0:9 Function Call: @RealEntrypoint(u1; ( temp 4-component vector of float)
83 Name 12 "FakeEntrypoint(u1;"
85 Name 15 "@RealEntrypoint(u1;"
[all …]
Dhlsl.rw.atomics.frag.out11 0:50 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
15 0:50 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
23 0:51 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
27 0:51 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
33 0:52 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
37 0:52 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-compon…
45 0:53 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
49 0:53 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
57 0:54 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
61 0:54 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-comp…
[all …]
/external/OpenCL-CTS/test_conformance/math_brute_force/
Dutility.cpp30 double up, u1, u2, vp, v1, v2; in MulD() local
33 u1 = (u - up) + up; in MulD()
34 u2 = u - u1; in MulD()
41 double rl = (((u1 * v1 - rh) + (u1 * v2)) + (u2 * v1)) + (u2 * v2); in MulD()
70 double up, u1, u2, vp, v1, v2; in MulDD() local
73 u1 = (xh - up) + up; in MulDD()
74 u2 = xh - u1; in MulDD()
81 ml = (((u1 * v1 - mh) + (u1 * v2)) + (u2 * v1)) + (u2 * v2); in MulDD()
/external/llvm-project/clang/test/CodeGenCXX/
Dbitfield-layout.cpp49 Test1 u1; in test_assign() local
52 u1.b = 1; in test_assign()
55 CHECK(u1.b == 1); in test_assign()
77 Test1 u1 = {1}; in test_init() local
80 CHECK(u1.a == 1); in test_init()
81 CHECK(u1.b == 1); in test_init()
/external/mesa3d/src/mesa/main/
Deval.c303 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, in map1() argument
313 if (u1 == u2) { in map1()
359 map->u1 = u1; 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 …]
/external/linux-kselftest/tools/testing/selftests/proc/
Dproc-uptime-001.c28 uint64_t start, u0, u1, i0, i1; in main() local
37 proc_uptime(fd, &u1, &i1); in main()
38 assert(u1 >= u0); in main()
40 u0 = u1; in main()
42 } while (u1 - start < 100); in main()
/external/libchrome/mojo/public/interfaces/bindings/tests/data/validation/
Dconformance_mthd10_good.data34 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment
42 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment
Dconformance_mthd10_unequal_array_size.data34 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment
42 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment
Dconformance_mthd10_good_non_unique_keys.data34 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment
42 [u4]0 [u4]0 [u1]0 [u1]0 [u1]0 // manual padding for array alignment

12345678910>>...24