Home
last modified time | relevance | path

Searched refs:key1 (Results 1 – 9 of 9) sorted by relevance

/device/google/contexthub/firmware/os/inc/
Dbl.h54 …*blProgramShared)(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2);
55 bool (*blEraseShared)(uint32_t key1, uint32_t key2);
56 …bool (*blProgramEe)(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, u…
91 bool blEraseSectors(uint32_t sector_cnt, uint8_t *erase_mask, uint32_t key1, uint32_t key2);
92 bool blPlatProgramFlash(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t …
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_mailbox.py93 key1 = self._box.add(self._template % 1)
100 self.assertEqual(self._box.get_string(key1), self._template % 1)
108 self.assertEqual(self._box.get_string(key1), self._template % 1)
109 method(key1)
111 self.assertRaises(KeyError, lambda: self._box[key1])
112 self.assertRaises(KeyError, lambda: method(key1))
117 key1 = self._box.add(self._template % 1)
136 key1 = self._box.add(self._template % 1)
137 msg = self._box.get(key1)
154 key1 = self._box.add(_sample_message)
[all …]
Dtest_weakref.py982 def check_popitem(self, klass, key1, value1, key2, value2): argument
984 weakdict[key1] = value1
989 if k is key1:
995 if k is key1:
Dtest_set.py626 key1 = self.thetype(seq)
628 self.assertEqual(key1, key2)
629 self.assertNotEqual(id(key1), id(key2))
631 d[key1] = 42
/device/google/contexthub/firmware/os/core/
Dbl.c128 static bool blProgramFlash(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32… in blProgramFlash() argument
170 if (!blPlatProgramFlash(dst, src, length, key1, key2)) in blProgramFlash()
181 …rea(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t type, uint32_t key1, uint32_t key2) in blProgramTypedArea() argument
197 return blProgramFlash(dst, src, length, key1, key2); in blProgramTypedArea()
200 …iProgramSharedArea(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t key2) in blExtApiProgramSharedArea() argument
202 return blProgramTypedArea(dst, src, length, BL_FLASH_SHARED, key1, key2); in blExtApiProgramSharedArea()
205 static bool blExtApiProgramEe(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uin… in blExtApiProgramEe() argument
207 return blProgramTypedArea(dst, src, length, BL_FLASH_EEDATA, key1, key2); in blExtApiProgramEe()
210 static bool blEraseTypedArea(uint32_t type, uint32_t key1, uint32_t key2) in blEraseTypedArea() argument
226 blEraseSectors(sector_cnt, erase_mask, key1, key2); in blEraseTypedArea()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Drotatingtree.c3 #define KEY_LOWER_THAN(key1, key2) ((char*)(key1) < (char*)(key2)) argument
/device/google/contexthub/firmware/os/platform/stm32/
Dbl.c206 bool blEraseSectors(uint32_t sector_cnt, uint8_t *erase_mask, uint32_t key1, uint32_t key2) in blEraseSectors() argument
222 flash->KEYR = key1; in blEraseSectors()
311 bool blPlatProgramFlash(uint8_t *dst, const uint8_t *src, uint32_t length, uint32_t key1, uint32_t … in blPlatProgramFlash() argument
327 flash->KEYR = key1; in blPlatProgramFlash()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dzipfile.py442 self.key1 = 591751049
449 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
450 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
451 self.key2 = self._crc32(chr((self.key1 >> 24) & 255), self.key2)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dzipfile.py459 self.key1 = 591751049
466 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
467 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
468 self.key2 = self._crc32(chr((self.key1 >> 24) & 255), self.key2)