Searched refs:ctypes (Results 1 – 25 of 36) sorted by relevance
12
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/models/ |
| H A D | log_reader.py | 5 import ctypes 13 'float': ctypes.c_float, 14 'double': ctypes.c_double, 15 'int8_t': ctypes.c_int8, 16 'uint8_t': ctypes.c_uint8, 17 'int16_t': ctypes.c_int16, 18 'uint16_t': ctypes.c_uint16, 19 'int32_t': ctypes.c_int32, 20 'uint32_t': ctypes.c_uint32, 21 'int64_t': ctypes.c_int64, [all …]
|
| /openbsd-src/gnu/llvm/llvm/bindings/python/llvm/ |
| H A D | disassembler.py | 9 from ctypes import CFUNCTYPE 10 from ctypes import POINTER 11 from ctypes import addressof 12 from ctypes import c_byte 13 from ctypes import c_char_p 14 from ctypes import c_int 15 from ctypes import c_size_t 16 from ctypes import c_ubyte 17 from ctypes import c_uint64 18 from ctypes import c_void_p [all …]
|
| H A D | bit_reader.py | 9 from ctypes import POINTER 10 from ctypes import byref 11 from ctypes import c_char_p 12 from ctypes import cast
|
| H A D | common.py | 9 from ctypes import POINTER 10 from ctypes import c_void_p 11 from ctypes import cdll 13 import ctypes.util 122 t = ctypes.util.find_library(i)
|
| H A D | object.py | 79 from ctypes import c_char_p 80 from ctypes import c_char 81 from ctypes import POINTER 82 from ctypes import c_uint64 83 from ctypes import string_at
|
| H A D | core.py | 16 from ctypes import POINTER 17 from ctypes import byref 18 from ctypes import c_char_p 19 from ctypes import c_uint
|
| /openbsd-src/gnu/llvm/lldb/examples/summaries/cocoa/ |
| H A D | NSNumber.py | 12 import ctypes 54 str(ord(ctypes.c_char(chr(self.data % 256)).value)) 57 str(ctypes.c_short(self.data % (256 * 256)).value) 59 return '(int)' + str(ctypes.c_int(self.data % 62 return '(long)' + str(ctypes.c_long(self.data).value) 128 str(ord(ctypes.c_char(chr(data_vo.GetValueAsUnsigned(0))).value)) 134 ctypes.c_short( 144 return '(int)' + str(ctypes.c_int(data_vo.GetValueAsUnsigned(0) % 154 str(ctypes.c_long(data_vo.GetValueAsUnsigned(0)).value) 162 str(ctypes.c_long(data_vo.GetValueAsUnsigned(0)).value)
|
| H A D | NSMachPort.py | 11 import ctypes
|
| H A D | NSBundle.py | 11 import ctypes
|
| H A D | CFBinaryHeap.py | 11 import ctypes
|
| H A D | NSURL.py | 10 import ctypes
|
| H A D | NSData.py | 11 import ctypes
|
| H A D | CFBag.py | 11 import ctypes
|
| H A D | NSIndexSet.py | 11 import ctypes
|
| H A D | CFBitVector.py | 11 import ctypes
|
| H A D | CFArray.py | 11 import ctypes
|
| H A D | CFDictionary.py | 11 import ctypes
|
| /openbsd-src/bin/ksh/ |
| H A D | misc.c | 18 short ctypes [UCHAR_MAX+1]; /* type bits for unsigned char */ variable 35 ctypes[i] &= ~C_IFS; in setctypes() 36 ctypes[0] |= C_IFS; /* include \0 in C_IFS */ in setctypes() 39 ctypes[(unsigned char) *s++] |= t; in setctypes() 48 ctypes[c] |= C_ALPHA; in initctypes() 50 ctypes[c] |= C_ALPHA; in initctypes() 51 ctypes['_'] |= C_ALPHA; in initctypes()
|
| H A D | sh.h | 283 extern short ctypes []; 285 #define ctype(c, t) !!(ctypes[(unsigned char)(c)]&(t))
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/executionengine/ |
| H A D | CMakeLists.txt | 6 PKG ctypes)
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | gdbclientutils.py | 1 import ctypes 450 libc = ctypes.CDLL(None) 451 libc.ptsname.argtypes = (ctypes.c_int,) 452 libc.ptsname.restype = ctypes.c_char_p
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/ |
| H A D | README.txt | 8 * ctypes 0.4+.
|
| /openbsd-src/gnu/llvm/llvm/utils/lit/lit/ |
| H A D | util.py | 134 from ctypes import windll 135 from ctypes import GetLastError, WinError
|
| /openbsd-src/gnu/llvm/llvm/cmake/modules/ |
| H A D | FindOCaml.cmake | 19 # find_ocamlfind_package(ctypes)
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/ |
| H A D | META.llvm.in | 33 requires = "llvm,llvm.target,ctypes.foreign"
|
12