Home
last modified time | relevance | path

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

/AliOS-Things-master/components/py_engine/tests/basics/
A Dstruct1_intbig.py27 print(struct.unpack("<Q", b"\x12\x34\x56\x78\x90\x12\x34\x56"))
28 print(struct.unpack(">Q", b"\x12\x34\x56\x78\x90\x12\x34\x56"))
29 print(struct.unpack("<q", b"\x12\x34\x56\x78\x90\x12\x34\xf6"))
30 print(struct.unpack(">q", b"\xf2\x34\x56\x78\x90\x12\x34\x56"))
33 print(struct.unpack("<I", b"\xff\xff\xff\xff"))
34 print(struct.unpack("<Q", b"\xff\xff\xff\xff\xff\xff\xff\xff"))
37 print(struct.unpack("<i", b'\xff\xff\xff\x7f'))
38 print(struct.unpack("<q", b'\xff\xff\xff\xff\xff\xff\xff\x7f'))
46 print(fmt, b, struct.unpack(fmt, b))
A Dstruct2.py13 print(struct.unpack('0s', b''))
17 print(struct.unpack('2s', b'12'))
21 print(struct.unpack('<2H', b'1234'))
25 print(struct.unpack('<0s1s0H2H', b'01234'))
30 struct.unpack('2H', b'\x00\x00')
40 struct.unpack('z', b'1')
72 struct.unpack('1', 'xx')
A Dstruct1.py11 print(struct.unpack("<bI", b"\x80\0\0\x01\0"))
13 print(struct.unpack(">bI", b"\x80\0\0\x01\0"))
32 print(struct.unpack("<6sH", b"foo\0\0\0\x12\x34"))
36 v = struct.unpack("BHBI", s)
44 struct.unpack('I', b'\x00\x00\x00')
62 print(struct.unpack("<3B2h", b"foo\x12\x34\xff\xff"))
A Dstruct_micropython.py18 o2 = struct.unpack("<O", s)
32 o2 = struct.unpack("<S", s)
A Dstruct_endian.py14 print(struct.unpack('h', memoryview(buf)[1:3]))
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Dunpack.cc25 namespace unpack { namespace
112 /*invoke=*/unpack::Eval, in Register_UNPACK()
/AliOS-Things-master/components/amp-utility/python/
A Dustruct.py36 def unpack(fmt, data): function
/AliOS-Things-master/components/py_engine/tests/float/
A Dfloat_struct.py16 v = struct.unpack(fmt, x)[0]
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/os400/
A DREADME4003 1) Download and unpack the zlib tarball to some IFS directory.
7 else you have to unpack first to some directory on a system supporting it,
/AliOS-Things-master/components/py_engine/engine/tools/
A Ddfu.py19 return named(struct.unpack(fmt, data[:n]), names), data[n:]
63 suffix = named(struct.unpack("<4H3sBI", data[:16]), "device product vendor dfu ufd len crc")
A Dpydfu.py107 return nt(*struct.unpack("<BBBHHH", bytearray(descr)))
308 return named(struct.unpack(fmt, data[:size]), names), data[size:]
409 struct.unpack("<4H3sBI", data[:16]), "device product vendor dfu ufd len crc"
A Dci.sh292 …t_pack_dfu.py -k $BOARD_WB55/mboot_keys.h unpack-dfu $BUILD_WB55/firmware.pack.dfu $BUILD_WB55/fir…
293 diff $BUILD_WB55/firmware.unpack.dfu $BUILD_WB55/firmware.dfu
296 …python3 ports/stm32/mboot/mboot_pack_dfu.py -k $BOARD_WB55/mboot_keys_no_sk.h unpack-dfu $BUILD_WB…
297 diff $BUILD_WB55/firmware.unpack.dfu $BUILD_WB55/firmware.unpack_no_sk.dfu
A Duf2conv.py58 w = struct.unpack("<II", buf[0:8])
80 hd = struct.unpack(b"<IIIIIIII", block[0:32])
A Dmpy-tool.py366 n = struct.unpack("<I", struct.pack("<f", self.objs[i]))[0]
370 n = struct.unpack("<Q", struct.pack("<d", self.objs[i]))[0]
A Dymodemfile.py534 ba = struct.unpack("@%dB" % len(data), data)
/AliOS-Things-master/hardware/chip/rtl872xd/
A Dota.py34 sum += struct.unpack("B", data)[0]
/AliOS-Things-master/components/jsoncpp/include/
A DPreventInSourceBuilds.cmake15 …message("# git clone https://github.com/open-source-parsers/jsoncpp.git # or download & unpack the…
/AliOS-Things-master/components/py_engine/engine/tools/mpremote/mpremote/
A Dpyboardextended.py336 return struct.unpack("<b", self.fin.read(1))[0]
339 return struct.unpack("<i", self.fin.read(4))[0]
/AliOS-Things-master/components/SDL2/docs/
A DREADME-macosx.md163 The first thing to do is to unpack the Xcode.tar.gz archive in the
165 Because Stuffit Expander will unpack the archive into a subdirectory,
166 you should unpack the archive manually from the command line:
/AliOS-Things-master/hardware/chip/rtl872xd/release/aos_burn_tool/
A Dymodem.py519 ba = struct.unpack("@%dB" % len(data), data)
/AliOS-Things-master/hardware/chip/haas1000/release/aos_burn_tool/
A Dymodem.py505 ba = struct.unpack("@%dB" % len(data), data)
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/
A DDownloadProject.cmake16 # Provides the ability to download and unpack a tarball, zip file, git repository,
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/function_test/core/
A DDownloadProject.cmake16 # Provides the ability to download and unpack a tarball, zip file, git repository,
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dstructure.txt106 modules must be written to unpack and pack the chosen JOCTET datatype into
A Dinstall.txt51 Before installing the software you must unpack the distributed source code.

Completed in 24 milliseconds