Searched defs:c_ubyte (Results 1 - 3 of 3) sorted by relevance

/external/llvm/bindings/python/llvm/
H A Ddisassembler.py17 from ctypes import c_ubyte namespace
101 buf = cast(c_char_p(source), POINTER(c_ubyte))
126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
131 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
156 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
/external/autotest/client/common_lib/
H A Dsmogcheck_tpm.py28 c_ubyte, c_byte, byref, c_uint16, cast, create_string_buffer, c_uint64, \
81 _fields_ = [('major', c_ubyte),
82 ('minor', c_ubyte),
83 ('revMajor', c_ubyte),
84 ('revMinor', c_ubyte)]
95 ('errataRev', c_ubyte),
97 ('vendorSpecific', POINTER(c_ubyte))]
108 vi.vendorSpecific = cast(pointer(vendorDetail), POINTER(c_ubyte))
29 c_char_p, addressof, c_char, pointer namespace
/external/python/cpython2/Lib/ctypes/
H A D__init__.py223 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
225 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
227 ##c_uchar = c_ubyte
228 _check_size(c_ubyte)
541 c_uint8 = c_ubyte

Completed in 783 milliseconds