HomeSort by relevance Sort by last modified time
    Searched refs:c_uint32 (Results 1 - 25 of 37) sorted by null

1 2

  /device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/
SplitFspBin.py 67 ('Attributes', c_uint32),
78 ('ExtHeaderSize', c_uint32)
106 ('HeaderLength', c_uint32)
112 ('HeaderLength', c_uint32),
116 ('ImageRevision', c_uint32),
118 ('ImageSize', c_uint32),
119 ('ImageBase', c_uint32),
122 ('CfgRegionOffset', c_uint32),
123 ('CfgRegionSize', c_uint32),
124 ('Reserved2', c_uint32),
    [all...]
  /external/autotest/client/common_lib/
smogcheck_tpm.py 27 from ctypes import c_uint, c_uint32, cdll, c_bool, Structure, POINTER, \
33 TSS_KEY_AUTHORIZATION = c_uint32(0x00000001)
34 TSS_KEY_TSP_SRK = c_uint32(0x04000000)
35 TSS_POLICY_USAGE = c_uint32(0x00000001)
37 TSS_SECRET_MODE_SHA1 = c_uint32(0x00001000)
38 TSS_SECRET_MODE_PLAIN = c_uint32(0x00001800)
42 TSS_TPMCAP_VERSION_VAL = c_uint32(0x15)
43 TSS_TPMSTATUS_DISABLEOWNERCLEAR = c_uint32(0x00000001)
44 TSS_TPMSTATUS_DISABLEFORCECLEAR = c_uint32(0x00000002)
45 TSS_TPMSTATUS_PHYSICALSETDEACTIVATED = c_uint32(0x00000010
    [all...]
  /kernel/tests/net/test/
bpf.py 180 c_value = ctypes.c_uint32(value)
181 c_key = ctypes.c_uint32(key)
189 c_value = ctypes.c_uint32(0)
190 c_key = ctypes.c_uint32(key)
199 c_key = ctypes.c_uint32(key)
200 c_next_key = ctypes.c_uint32(0)
204 c_next_key = ctypes.c_uint32(0)
214 c_key = ctypes.c_uint32(key)
232 uint_fd = ctypes.c_uint32(prog_fd)
  /external/v8/tools/
grokdump.py 185 ("signature", ctypes.c_uint32),
186 ("version", ctypes.c_uint32),
187 ("stream_count", ctypes.c_uint32),
188 ("stream_directories_rva", ctypes.c_uint32),
189 ("checksum", ctypes.c_uint32),
190 ("time_date_stampt", ctypes.c_uint32),
195 ("data_size", ctypes.c_uint32),
196 ("rva", ctypes.c_uint32)
200 ("length", ctypes.c_uint32),
205 ("stream_type", ctypes.c_uint32),
    [all...]
ll_prof.py 335 "ia32": ctypes.c_uint32,
336 "arm": ctypes.c_uint32,
337 "mips": ctypes.c_uint32,
454 "u32": ctypes.c_uint32,
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_sizes.py 20 self.assertEqual(4, sizeof(c_uint32))
test_bitfields.py 242 @need_symbol('c_uint32')
245 _fields_ = [("a", c_uint32, 32)]
262 @need_symbol('c_uint32')
266 _fields_ = [("a", c_uint32, 24),
267 ("b", c_uint32, 4),
268 ("c", c_uint32, 4)]
276 @need_symbol('c_uint32')
280 _fields_ = [("a", c_uint32, 24),
281 ("b", c_uint32, 4),
282 ("c", c_uint32, 4)
    [all...]
test_byteswap.py 203 _fields_ = [("x", c_uint32),
204 ("y", c_uint32)]
  /external/python/cpython3/Lib/ctypes/test/
test_sizes.py 19 self.assertEqual(4, sizeof(c_uint32))
test_bitfields.py 241 @need_symbol('c_uint32')
244 _fields_ = [("a", c_uint32, 32)]
261 @need_symbol('c_uint32')
265 _fields_ = [("a", c_uint32, 24),
266 ("b", c_uint32, 4),
267 ("c", c_uint32, 4)]
275 @need_symbol('c_uint32')
279 _fields_ = [("a", c_uint32, 24),
280 ("b", c_uint32, 4),
281 ("c", c_uint32, 4)
    [all...]
test_byteswap.py 223 _fields_ = [("x", c_uint32),
224 ("y", c_uint32)]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_sizes.py 20 self.assertEqual(4, sizeof(c_uint32))
test_byteswap.py 202 _fields_ = [("x", c_uint32),
203 ("y", c_uint32)]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_sizes.py 20 self.assertEqual(4, sizeof(c_uint32))
test_byteswap.py 202 _fields_ = [("x", c_uint32),
203 ("y", c_uint32)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_sizes.py 20 self.assertEqual(4, sizeof(c_uint32))
test_byteswap.py 202 _fields_ = [("x", c_uint32),
203 ("y", c_uint32)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_sizes.py 20 self.assertEqual(4, sizeof(c_uint32))
test_byteswap.py 202 _fields_ = [("x", c_uint32),
203 ("y", c_uint32)]
  /system/extras/simpleperf/scripts/
simpleperf_report_lib.py 64 ('pid', ct.c_uint32),
65 ('tid', ct.c_uint32),
68 ('in_kernel', ct.c_uint32),
69 ('cpu', ct.c_uint32),
124 _fields_ = [('nr', ct.c_uint32),
134 ('data_size', ct.c_uint32)]
298 arg_count = ct.cast(void_p, ct.POINTER(ct.c_uint32)).contents.value
302 str_len = ct.cast(void_p, ct.POINTER(ct.c_uint32)).contents.value
322 str_len = ct.cast(void_p, ct.POINTER(ct.c_uint32)).contents.value
  /external/scapy/scapy/arch/
common.py 14 from ctypes import c_uint, c_uint32, c_ushort, c_ubyte
31 ("k", c_uint32)]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time.py 59 _fields_ = (('numer', ctypes.c_uint32),
60 ('denom', ctypes.c_uint32))
180 get_tick_count.restype = ctypes.c_uint32
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
list_ports_osx.py 43 iokit.IORegistryEntryCreateCFProperty.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint32]
61 cf.CFStringGetCStringPtr.argtypes = [ctypes.c_void_p, ctypes.c_uint32]
64 cf.CFNumberGetValue.argtypes = [ctypes.c_void_p, ctypes.c_uint32, ctypes.c_void_p]
  /external/autotest/client/site_tests/kernel_CryptoAPI/
kernel_CryptoAPI.py 37 ('salg_feat', ctypes.c_uint32),
38 ('salg_mask', ctypes.c_uint32),
  /external/scapy/scapy/modules/
winpcapy.py 91 ("sin6_flowinfo", c_uint32),
93 ("sin6_scope", c_uint32)]
111 ("sin6_flowinfo", c_uint32),
113 ("sin6_scope", c_uint32)]

Completed in 1944 milliseconds

1 2