Searched refs:u2 (Results 1 - 25 of 172) sorted by relevance

1234567

/external/e2fsprogs/lib/uuid/
H A Dcompare.c41 #define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1);
/external/ltp/testcases/kernel/fs/fs-bench/
H A Dboxmuler.c8 double u1, u2, z; local
20 u2 = ((double)(random() % 1000000)) / 1000000;
21 z = sqrt(-2.0 * log(u1)) * cos(M_2PI * u2);
/external/ltp/testcases/kernel/syscalls/syscall/
H A Dsyscall01.c50 uid_t u1, u2; local
53 u2 = syscall(SYS_getuid);
55 if (u1 == u2) {
59 u1, u2);
/external/python/cpython2/Tools/unicode/
H A Dcomparecodecs.py39 u2 = c.decode(encoding2)
41 u2 = u'<undefined>'
42 if u1 != u2:
44 (i, u1, u2)
/external/python/cpython3/Tools/unicode/
H A Dcomparecodecs.py39 u2 = c.decode(encoding2)
41 u2 = '<undefined>'
42 if u1 != u2:
44 (i, u1, u2))
/external/tpm2/
H A DPolicyGetDigest.c23 out->policyDigest = session->u2.policyDigest;
H A DPolicyPhysicalPresence.c30 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
36 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicyOR.c35 || (Memory2BEqual(&session->u2.policyDigest.b,
44 session->u2.policyDigest.t.size = CryptStartHash(session->authHashAlg,
47 MemorySet(session->u2.policyDigest.t.buffer, 0,
48 session->u2.policyDigest.t.size);
49 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
61 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicyAuthValue.c31 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
37 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicyPassword.c31 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
37 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicy_spt.c61 if(cpHashA->t.size != session->u2.policyDigest.t.size)
93 pAssert(session->u2.policyDigest.t.size == policyDigestSize);
95 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
102 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
106 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
111 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicyCommandCode.c42 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
51 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
H A DPolicyCpHash.c52 CryptUpdateDigest2B(&hashState, &session->u2.policyDigest.b);
61 CryptCompleteHash2B(&hashState, &session->u2.policyDigest.b);
/external/turbine/java/com/google/turbine/bytecode/
H A DClassReader.java69 int minorVersion = reader.u2();
70 int majorVersion = reader.u2();
75 int accessFlags = reader.u2();
76 String thisClass = constantPool.classInfo(reader.u2());
77 int superClassIndex = reader.u2();
84 int interfacesCount = reader.u2();
87 interfaces.add(constantPool.classInfo(reader.u2()));
97 int attributesCount = reader.u2();
99 int attributeNameIndex = reader.u2();
134 signature = constantPool.utf8(reader.u2());
[all...]
/external/python/cpython3/Objects/stringlib/
H A Dreplace.h9 Py_UCS4 u1, Py_UCS4 u2, Py_ssize_t maxcount)
11 *s = u2;
51 *s = u2;
8 replace_1char_inplace(STRINGLIB_CHAR* s, STRINGLIB_CHAR* end, Py_UCS4 u1, Py_UCS4 u2, Py_ssize_t maxcount) argument
/external/python/cpython2/Lib/test/
H A Dtest_userlist.py21 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"))
H A Dseq_tests.py108 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*
[all...]
H A Dtest_userdict.py22 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...]
/external/python/cpython3/Lib/test/
H A Dtest_userlist.py22 u2 = u + "eggs"
23 self.assertEqual(u2, list("spameggs"))
27 u2 = "spam" + u
28 self.assertEqual(u2, list("spameggs"))
29 u2 = u.__radd__(UserList("spam"))
30 self.assertEqual(u2, list("spameggs"))
H A 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...]
H A Dseq_tests.py109 u2 = self.type2test(l2)
114 uu2 = self.type2test(u2)
261 u2 = self.type2test([0, 1])
264 self.assertEqual(u1 + self.type2test([1]), u2)
266 self.assertEqual(self.type2test(), u2*0)
267 self.assertEqual(self.type2test(), 0*u2)
268 self.assertEqual(self.type2test(), u2*0)
269 self.assertEqual(self.type2test(), 0*u2)
270 self.assertEqual(u2, u2*
[all...]
/external/clang/test/CodeGen/
H A Dmcu-struct-return.c15 } u2; variable in typeref:union:U2
39 union U2 foo2() { return u2; }
/external/libcxx/test/std/utilities/utility/pairs/pair.piecewise/
H A Dpiecewise_construct.pass.cpp39 B(double d, unsigned u1, unsigned u2) : d_(d), u1_(u1), u2_(u2) {} argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_string.h139 unsigned char u1, u2; local
143 u2 = (unsigned char) *s2++;
144 if (u1 != u2)
145 return u1 - u2;
155 unsigned char u1, u2; local
159 u2 = (unsigned char) *s2++;
160 if (u1 != u2)
161 return u1 - u2;
/external/mesa3d/src/mesa/main/
H A Deval.h73 _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,

Completed in 772 milliseconds

1234567