HomeSort by relevance Sort by last modified time
    Searched refs:c_ubyte (Results 26 - 50 of 98) sorted by null

12 3 4

  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_byteswap.py 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte)
147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte)
160 _fields_ = [("a", c_ubyte),
test_cfuncs.py 30 self._dll.tf_B.restype = c_ubyte
31 self._dll.tf_B.argtypes = (c_ubyte,)
36 self._dll.tf_bB.restype = c_ubyte
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
test_pep3118.py 115 (c_ubyte, "<B", None, c_ubyte),
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_byteswap.py 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte)
147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte)
160 _fields_ = [("a", c_ubyte),
test_cfuncs.py 30 self._dll.tf_B.restype = c_ubyte
31 self._dll.tf_B.argtypes = (c_ubyte,)
36 self._dll.tf_bB.restype = c_ubyte
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte)
147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte)
160 _fields_ = [("a", c_ubyte),
test_cfuncs.py 30 self._dll.tf_B.restype = c_ubyte
31 self._dll.tf_B.argtypes = (c_ubyte,)
36 self._dll.tf_bB.restype = c_ubyte
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte)
147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte)
160 _fields_ = [("a", c_ubyte),
test_cfuncs.py 30 self._dll.tf_B.restype = c_ubyte
31 self._dll.tf_B.argtypes = (c_ubyte,)
36 self._dll.tf_bB.restype = c_ubyte
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
  /external/sonivox/jet_tools/JetCreator/
eas.py 152 _fields_ = [('appLowNote', c_ubyte)]
159 ('program', c_ubyte),
160 ('channel', c_ubyte)]
166 _fields_ = [('channel', c_ubyte),
167 ('note', c_ubyte),
168 ('velocity', c_ubyte),
169 ('noteOn', c_ubyte)]
175 _fields_ = [('modWheel', c_ubyte),
176 ('volume', c_ubyte),
177 ('pan', c_ubyte),
    [all...]
  /external/python/cpython2/Lib/ctypes/
__init__.py 223 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
  /external/python/cpython3/Lib/ctypes/
__init__.py 218 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
220 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
222 ##c_uchar = c_ubyte
223 _check_size(c_ubyte)
527 c_uint8 = c_ubyte
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
__init__.py 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
230 ##c_uchar = c_ubyte
231 _check_size(c_ubyte)
544 c_uint8 = c_ubyte
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
__init__.py 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
230 ##c_uchar = c_ubyte
231 _check_size(c_ubyte)
544 c_uint8 = c_ubyte
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
230 ##c_uchar = c_ubyte
231 _check_size(c_ubyte)
544 c_uint8 = c_ubyte
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData
228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
230 ##c_uchar = c_ubyte
231 _check_size(c_ubyte)
544 c_uint8 = c_ubyte
  /external/python/cpython2/Lib/ctypes/test/
test_cfuncs.py 31 self._dll.tf_B.restype = c_ubyte
32 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.restype = c_ubyte
38 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 41 a = (c_ubyte * 32)(*map(ord, "abcdef"))
test_pep3118.py 119 (c_ubyte, "<B", None, c_ubyte),
  /external/python/cpython3/Lib/ctypes/test/
test_cfuncs.py 31 self._dll.tf_B.restype = c_ubyte
32 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.restype = c_ubyte
38 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
test_memfunctions.py 42 a = (c_ubyte * 32)(*map(ord, "abcdef"))

Completed in 412 milliseconds

12 3 4