Home
last modified time | relevance | path

Searched refs:h1 (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_hmac.py275 h1 = hmac.HMAC("key")
276 h2 = h1.copy()
277 self.assertTrue(h1.digest_cons == h2.digest_cons,
279 self.assertTrue(type(h1.inner) == type(h2.inner),
281 self.assertTrue(type(h1.outer) == type(h2.outer),
286 h1 = hmac.HMAC("key")
287 h2 = h1.copy()
289 self.assertTrue(id(h1) != id(h2), "No real copy of the HMAC instance.")
290 self.assertTrue(id(h1.inner) != id(h2.inner),
292 self.assertTrue(id(h1.outer) != id(h2.outer),
[all …]
Dtest_pep247.py29 h1 = module.new(key, 'string').digest()
37 h1 = module.new('string').digest()
42 self.assertEqual(h1, h2)
49 self.assertEqual(obj1.digest_size, len(h1))
Dtest_atexit.py23 atexit.register(self.h1)
35 atexit.register(self.h1)
44 sys.exitfunc = self.h1
59 def h1(self): member in TestCase
Dtest_bigmem.py611 h1 = hash(s)
614 self.assertFalse(h1 == hash(s))
669 h1 = hash(t1)
672 self.assertFalse(h1 == hash(t2))
Dtest_decimal.py1381 h1 = hash(x)
1387 self.assertEqual(h1, h2)
1388 self.assertEqual(h1, h3)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
Dtest_separators.py35 h1 = self.loads(d1)
38 self.assertEqual(h1, h)
Dtest_indent.py36 h1 = self.loads(d1)
39 self.assertEqual(h1, h)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
Dtest_separators.py35 h1 = self.loads(d1)
38 self.assertEqual(h1, h)
Dtest_indent.py36 h1 = self.loads(d1)
39 self.assertEqual(h1, h)
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/doc/
Dmanual.css18 p+h1, ul+h1 {
Dlua.css16 h1, h2, h3, h4 { selector
/device/google/contexthub/sensorhal/
Ddirectchannel.h63 bool isSameMemory(const native_handle_t *h1, const native_handle_t *h2);
Ddirectchannel.cpp235 bool GrallocHalWrapper::isSameMemory(const native_handle_t *h1, const native_handle_t *h2) { in isSameMemory() argument
242 return mPfnGetBackingStore(mGralloc1Device, h1, &s1) == GRALLOC1_ERROR_NONE in isSameMemory()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dcodeobject.c449 long h, h0, h1, h2, h3, h4, h5, h6; in code_hash() local
452 h1 = PyObject_Hash(co->co_code); in code_hash()
453 if (h1 == -1) return -1; in code_hash()
464 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^ in code_hash()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dcodeobject.c449 long h, h0, h1, h2, h3, h4, h5, h6; in code_hash() local
452 h1 = PyObject_Hash(co->co_code); in code_hash()
453 if (h1 == -1) return -1; in code_hash()
464 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^ in code_hash()