/linux-6.3-rc2/tools/testing/selftests/tpm2/ |
A D | tpm2.py | 399 rc = struct.unpack('>I', rsp[6:10])[0] 401 cc = struct.unpack('>I', cmd[6:10])[0] 427 alg2, pcrsel_len2 = struct.unpack('>HB', rsp[:3]) 431 digest_cnt = struct.unpack('>I', rsp[:4])[0] 472 return struct.unpack('>I', self.send_cmd(cmd)[10:14])[0] 587 return struct.unpack('>I', self.send_cmd(cmd)[10:14])[0] 630 private_len = struct.unpack('>H', blob[0:2])[0] 670 data_len = struct.unpack('>I', rsp[10:14])[0] - 2 700 more_data, cap, cnt = struct.unpack('>BII', rsp[:9]) 704 handle = struct.unpack('>I', rsp[:4])[0] [all …]
|
A D | tpm2_tests.py | 185 sz = struct.unpack('>I', hdr[2:6])[0]
|
/linux-6.3-rc2/tools/net/ynl/lib/ |
A D | ynl.py | 72 self._len, self._type = struct.unpack("HH", raw[offset:offset + 4]) 79 return struct.unpack("B", self.raw)[0] 82 return struct.unpack("H", self.raw)[0] 85 return struct.unpack("I", self.raw)[0] 88 return struct.unpack("Q", self.raw)[0] 127 struct.unpack("IHHII", self.hdr) 136 self.error = struct.unpack("i", self.raw[0:4])[0] 267 self.genl_cmd, self.genl_version, _ = struct.unpack("bbH", self.hdr)
|
/linux-6.3-rc2/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
A D | EventClass.py | 60 flags, ip, ax, bx, cx, dx, si, di, bp, sp = struct.unpack('QQQQQQQQQQ', tmp_buf) 89 status, dla, dse, lat = struct.unpack('QQQQ', tmp_buf)
|
/linux-6.3-rc2/drivers/gpu/drm/msm/disp/mdp4/ |
A D | mdp4_plane.c | 331 MDP4_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) | in mdp4_plane_mode_set() 332 MDP4_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) | in mdp4_plane_mode_set() 333 MDP4_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) | in mdp4_plane_mode_set() 334 MDP4_PIPE_SRC_UNPACK_ELEM3(format->unpack[3])); in mdp4_plane_mode_set()
|
/linux-6.3-rc2/Documentation/networking/device_drivers/atm/ |
A D | cxacru-cf.py | 45 sys.stdout.write("{0:x}={1}".format(i, struct.unpack("<I", buf)[0]))
|
/linux-6.3-rc2/Documentation/translations/zh_CN/dev-tools/ |
A D | gcov.rst | 230 echo "$DEST successfully created, copy to test system and unpack with:" 263 echo "$DEST successfully created, copy to build system and unpack with:"
|
/linux-6.3-rc2/drivers/gpu/drm/msm/disp/ |
A D | mdp_kms.h | 84 uint8_t unpack[4]; member
|
A D | mdp_format.c | 71 .unpack = { e0, e1, e2, e3 }, \
|
/linux-6.3-rc2/drivers/gpu/drm/msm/disp/mdp5/ |
A D | mdp5_plane.c | 813 MDP5_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) | in mdp5_hwpipe_mode_set() 814 MDP5_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) | in mdp5_hwpipe_mode_set() 815 MDP5_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) | in mdp5_hwpipe_mode_set() 816 MDP5_PIPE_SRC_UNPACK_ELEM3(format->unpack[3])); in mdp5_hwpipe_mode_set()
|
/linux-6.3-rc2/drivers/gpu/drm/msm/disp/dpu1/ |
A D | dpu_hw_sspp.c | 247 u32 chroma_samp, unpack, src_format; in dpu_hw_sspp_setup_format() local 297 unpack = (fmt->element[3] << 24) | (fmt->element[2] << 16) | in dpu_hw_sspp_setup_format() 356 DPU_REG_WRITE(c, unpack_pat_off + idx, unpack); in dpu_hw_sspp_setup_format()
|
/linux-6.3-rc2/scripts/gdb/linux/ |
A D | proc.py | 224 return unpack(output_fmt, pack(fdt_header_be,
|
/linux-6.3-rc2/Documentation/dev-tools/ |
A D | gcov.rst | 240 echo "$DEST successfully created, copy to test system and unpack with:" 273 echo "$DEST successfully created, copy to build system and unpack with:"
|
/linux-6.3-rc2/Documentation/scsi/ |
A D | NinjaSCSI.rst | 63 (c) If you use this driver with Kernel 2.2, unpack pcmcia-cs in some directory
|
/linux-6.3-rc2/Documentation/ABI/testing/ |
A D | sysfs-bus-fcoe | 86 (Ethernet) packets, unpack them, and forward the embedded
|
/linux-6.3-rc2/tools/power/pm-graph/ |
A D | sleepgraph.py | 5758 length = struct.unpack('H', buf[i+22:i+24])[0] 5759 base, num = struct.unpack('IH', buf[i+24:i+30]) 5762 length = struct.unpack('H', buf[i+6:i+8])[0] 5763 base, num = struct.unpack('IH', buf[i+8:i+14]) 5791 if 0 == struct.unpack('H', buf[n:n+2])[0]: 5848 table = struct.unpack('4sIBB6s8sI4sI', buf[0:36]) 5880 header = struct.unpack('HBB', records[i:i+4]) 5887 addr = struct.unpack('Q', records[i+8:i+16])[0] 5895 rechead = struct.unpack('4sI', first) 5898 record = struct.unpack('HBBIQQQQQ', recdata[:48]) [all …]
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | security.txt | 20 2. Get into rpmbuild/SPECS directory and unpack the source code:
|
A D | perf-intel-pt.txt | 190 unpack the raw data for power events and PTWRITE. The script also displays
|
/linux-6.3-rc2/Documentation/networking/device_drivers/cable/ |
A D | sb1000.rst | 85 the others referenced above. As root, unpack it into a temporary directory
|
/linux-6.3-rc2/Documentation/admin-guide/ |
A D | README.rst | 64 unpack it::
|
/linux-6.3-rc2/tools/kvm/kvm_stat/ |
A D | kvm_stat | 464 struct.unpack(read_format,
|
/linux-6.3-rc2/tools/testing/selftests/bpf/ |
A D | test_offload.py | 274 return struct.unpack(fmt, ba)[0]
|