Home
last modified time | relevance | path

Searched refs:pack_into (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_struct.py442 s.pack_into(writable_buf, 0, test_string)
447 s.pack_into(writable_buf, 10, test_string)
453 self.assertRaises((ValueError, struct.error), s.pack_into, small_buf, 0,
455 self.assertRaises((ValueError, struct.error), s.pack_into, small_buf, 2,
460 self.assertRaises((TypeError, struct.error), struct.pack_into, b'', sb,
467 pack_into = lambda *args: struct.pack_into(fmt, *args) function
470 pack_into(writable_buf, 0, test_string)
475 pack_into(writable_buf, 10, test_string)
481 self.assertRaises((ValueError, struct.error), pack_into, small_buf, 0,
483 self.assertRaises((ValueError, struct.error), pack_into, small_buf, 2,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_struct.c1853 pack_into(PyObject *self, PyObject *args) in pack_into() function
1932 {"pack_into", pack_into, METH_VARARGS, pack_into_doc},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_struct.c1902 pack_into(PyObject *self, PyObject *args) in pack_into() function
1981 {"pack_into", pack_into, METH_VARARGS, pack_into_doc},
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DGenFdsGlobalVariable.py394 …GenFdsGlobalVariable.SectionHeader.pack_into(SectionData, 0, Len & 0xff, (Len >> 8) & 0xff, (Len >…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
DFvImage.py101 FieldStruct.pack_into(m, Offset, *args)