Home
last modified time | relevance | path

Searched refs:u2 (Results 1 – 25 of 420) sorted by relevance

12345678910>>...17

/third_party/glslang/Test/
Dhlsl.rw.atomics.frag33 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 …]
Dhlsl.intrinsics.promote.frag10 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/
DtypeParameterFixingWithContextSensitiveArguments5.types2 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 …]
DtypeParameterFixingWithContextSensitiveArguments3.types2 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 …]
DtypeParameterFixingWithContextSensitiveArguments3.symbols2 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))
DtypeParameterFixingWithContextSensitiveArguments5.symbols2 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))
DtypeParameterFixingWithContextSensitiveArguments3.js2 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
DtypeParameterFixingWithContextSensitiveArguments5.js2 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/
Dtest_userdict.py22 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 …]
Dseq_tests.py110 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 …]
Dtest_userlist.py28 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/mesa3d/src/mesa/main/
Deval.c304 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, in map1() argument
314 if (u1 == u2) { in map1()
361 map->u2 = u2; in map1()
362 map->du = 1.0F / (u2 - u1); in map1()
370 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, in _mesa_Map1f() argument
373 map1(target, u1, u2, stride, order, points, GL_FLOAT); in _mesa_Map1f()
378 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, in _mesa_Map1d() argument
381 map1(target, (GLfloat) u1, (GLfloat) u2, stride, order, points, GL_DOUBLE); in _mesa_Map1d()
386 map2( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, in map2() argument
397 if (u1==u2) { in map2()
[all …]
/third_party/elfutils/tests/
Dshow-die-info.c142 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 …]
/third_party/glslang/Test/baseResults/
Dhlsl.rw.atomics.frag.out11 …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 …]
Dhlsl.intrinsics.promote.frag.out14 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
18 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
27 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
31 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
40 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
44 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
53 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
57 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
66 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
70 … uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-componen…
[all …]
Dhlsl.attributeGlobalBuffer.frag.out11 …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/mesa3d/src/glx/
Drender2.c44 __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/node/deps/v8/src/base/
Datomicops.h409 inline int MemcmpNotEqualFundamental(Atomic8 u1, Atomic8 u2) { in MemcmpNotEqualFundamental() argument
410 DCHECK_NE(u1, u2); in MemcmpNotEqualFundamental()
411 return u1 < u2 ? -1 : 1; in MemcmpNotEqualFundamental()
413 inline int MemcmpNotEqualFundamental(AtomicWord u1, AtomicWord u2) { in MemcmpNotEqualFundamental() argument
414 DCHECK_NE(u1, u2); in MemcmpNotEqualFundamental()
416 return u1 < u2 ? -1 : 1; in MemcmpNotEqualFundamental()
420 uint8_t byte2 = u2 & 0xFF; in MemcmpNotEqualFundamental()
423 u2 >>= 8; in MemcmpNotEqualFundamental()
437 Atomic8 u2 = Relaxed_Load(s2++); in Relaxed_Memcmp() local
438 if (u1 != u2) return helper::MemcmpNotEqualFundamental(u1, u2); in Relaxed_Memcmp()
[all …]
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-reference.c53 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/misc/math/fptests/
Dfptest01.c339 static double u1, u2; variable
348 u2 = twopi / 500.0; in gaussinit()
357 u1 += u2; in gauss()
360 u2 += u1; in gauss()
361 if (u2 > 0.99) in gauss()
362 u2 = twopi / 400.0; in gauss()
366 x1 = sqrt(-2.0 * log(u1)) * cos(twopi * u2); in gauss()
370 x2 = sqrt(-2.0 * log(u1)) * sin(twopi * u2); in gauss()
/third_party/ltp/testcases/kernel/syscalls/syscall/
Dsyscall01.c37 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()
/third_party/python/Tools/unicode/
Dcomparecodecs.py39 u2 = c.decode(encoding2)
41 u2 = '<undefined>'
42 if u1 != u2:
44 (i, u1, u2))
/third_party/jerryscript/jerry-core/vm/
Dvm-stack.c47 JERRY_ASSERT (lex_env_p->u2.outer_reference_cp != JMEM_CP_NULL); in vm_stack_context_abort()
48 …frame_ctx_p->lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_c… in vm_stack_context_abort()
202 JERRY_ASSERT (lex_env_p->u2.outer_reference_cp != JMEM_CP_NULL); in vm_stack_find_finally()
203 …frame_ctx_p->lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_c… in vm_stack_find_finally()
250 JERRY_ASSERT (lex_env_p->u2.outer_reference_cp != JMEM_CP_NULL); in vm_stack_find_finally()
251 …frame_ctx_p->lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_reference_c… in vm_stack_find_finally()
351 JERRY_ASSERT (lex_env_p->u2.outer_reference_cp != JMEM_CP_NULL); in vm_ref_lex_env_chain()
352 …ecma_object_t *next_lex_env_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, lex_env_p->u2.outer_refe… in vm_ref_lex_env_chain()
/third_party/skia/tests/sksl/shared/
DHexUnsigned.asm.frag13 OpName %u2 "u2"
70 %u2 = OpVariable %_ptr_Function_uint Function
78 OpStore %u2 %uint_305441741
79 %35 = OpLoad %uint %u2
81 OpStore %u2 %36
/third_party/gstreamer/gstplugins_good/gst/videobox/
Dgstvideobox.c244 gint u1, u2, u3, u4; in copy_ayuv_i420() local
318 u2 = src[4 * y_idx + 4 + 2]; in copy_ayuv_i420()
324 destY[y_idx + 1] = CLAMP (APPLY_MATRIX (matrix, 0, y2, u2, v2), 0, 255); in copy_ayuv_i420()
327 v1) + APPLY_MATRIX (matrix, 1, y2, u2, v2)) / 4, 0, 255); in copy_ayuv_i420()
330 v1) + APPLY_MATRIX (matrix, 2, y2, u2, v2)) / 4, 0, 255); in copy_ayuv_i420()
385 u2 = src2[4 * 0 + 2]; in copy_ayuv_i420()
390 destY2[0] = CLAMP (APPLY_MATRIX (matrix, 0, y2, u2, v2), 0, 255); in copy_ayuv_i420()
393 v1) + APPLY_MATRIX (matrix, 1, y2, u2, v2)) / 4, 0, 255); in copy_ayuv_i420()
396 v1) + APPLY_MATRIX (matrix, 2, y2, u2, v2)) / 4, 0, 255); in copy_ayuv_i420()
414 u2 = src[4 * y_idx + 4 + 2]; in copy_ayuv_i420()
[all …]

12345678910>>...17