HomeSort by: relevance | last modified time | path
    Searched refs:c_char_p (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
disassembler.py 13 from ctypes import c_char_p
75 ptr = lib.LLVMCreateDisasm(c_char_p(triple), c_void_p(None), c_int(0),
100 buf = cast(c_char_p(source), POINTER(c_ubyte))
101 out_str = cast((c_byte * 255)(), c_char_p)
121 source_bytes = c_char_p(source)
122 out_str = cast((c_byte * 255)(), c_char_p)
149 library.LLVMCreateDisasm.argtypes = [c_char_p, c_void_p, c_int,
156 c_uint64, c_uint64, c_char_p, c_size_t]
165 callbacks['symbol_lookup'] = CFUNCTYPE(c_char_p, c_void_p, c_uint64,
167 POINTER(c_char_p))
    [all...]
bit_reader.py 11 from ctypes import c_char_p
core.py 18 from ctypes import c_char_p
161 out = c_char_p(None)
268 out = c_char_p(None)
506 library.LLVMCreateMemoryBufferWithContentsOfFile.argtypes = [c_char_p,
507 POINTER(c_object_p), POINTER(c_char_p)]
515 library.LLVMModuleCreateWithName.argtypes = [c_char_p]
522 library.LLVMGetDataLayout.restype = c_char_p
524 library.LLVMSetDataLayout.argtypes = [Module, c_char_p]
528 library.LLVMGetTarget.restype = c_char_p
530 library.LLVMSetTarget.argtypes = [Module, c_char_p]
    [all...]
object.py 79 from ctypes import c_char_p
458 library.LLVMGetSectionName.restype = c_char_p
464 # Can't use c_char_p here as it isn't a NUL-terminated string.
484 library.LLVMGetSymbolName.restype = c_char_p
502 library.LLVMGetRelocationTypeName.restype = c_char_p
505 library.LLVMGetRelocationValueString.restype = c_char_p
  /src/external/bsd/file/dist/python/
magic.py 79 _file.restype = c_char_p
80 _file.argtypes = [magic_t, c_char_p]
83 _descriptor.restype = c_char_p
87 _buffer.restype = c_char_p
91 _error.restype = c_char_p
100 _load.argtypes = [magic_t, c_char_p]
104 _compile.argtypes = [magic_t, c_char_p]
108 _check.argtypes = [magic_t, c_char_p]
112 _list.argtypes = [magic_t, c_char_p]
  /src/external/mit/isl/dist/interface/
isl.py 44 isl.isl_id_alloc.argtypes = [Context, c_char_p, py_object]
85 res = cast(ptr, c_char_p).value.decode('ascii')
500 isl.isl_union_pw_multi_aff_read_from_str.argtypes = [Context, c_char_p]
601 res = cast(ptr, c_char_p).value.decode('ascii')
1020 isl.isl_multi_union_pw_aff_read_from_str.argtypes = [Context, c_char_p]
1113 res = cast(ptr, c_char_p).value.decode('ascii')
1380 isl.isl_union_pw_aff_read_from_str.argtypes = [Context, c_char_p]
1466 res = cast(ptr, c_char_p).value.decode('ascii')
2168 isl.isl_multi_pw_aff_read_from_str.argtypes = [Context, c_char_p]
2302 res = cast(ptr, c_char_p).value.decode('ascii'
    [all...]
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 73 class c_interop_string(c_char_p):
80 super(c_char_p, self).__init__(p)
87 if super(c_char_p, self).value is None:
89 return super(c_char_p, self).value.decode("utf8")
114 c_interop_string = c_char_p
221 _fields_ = [("spelling", c_char_p), ("free", c_int)]
2461 _fields_ = [("name", c_char_p), ("contents", c_char_p), ('length', c_ulong)]
2816 args_array = (c_char_p * len(args))(*[b(x) for x in args])
  /src/external/mpl/bind/dist/contrib/gitchangelog/
gitchangelog.py 105 c_char_p,
120 LPCTSTR = c_char_p

Completed in 44 milliseconds