HomeSort by relevance Sort by last modified time
    Searched refs:POINTER (Results 51 - 75 of 94) sorted by null

1 23 4

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_internals.py 90 _fields_ = [("data", POINTER(c_int))]
test_python_api.py 72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_bitfields.py 28 func.argtypes = POINTER(BITS), c_char
124 result = self.fail_fields(("a", POINTER(c_int), 1))
test_byteswap.py 181 for typ in c_wchar, c_void_p, POINTER(c_int):
209 ptr = POINTER(TestStructure)
test_structures.py 409 # a Structure with a POINTER field
411 _fields_ = [("array", POINTER(c_int))]
440 ("p", POINTER(c_int))]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_internals.py 90 _fields_ = [("data", POINTER(c_int))]
test_python_api.py 72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
test_bitfields.py 28 func.argtypes = POINTER(BITS), c_char
124 result = self.fail_fields(("a", POINTER(c_int), 1))
test_byteswap.py 181 for typ in c_wchar, c_void_p, POINTER(c_int):
209 ptr = POINTER(TestStructure)
test_structures.py 409 # a Structure with a POINTER field
411 _fields_ = [("array", POINTER(c_int))]
440 ("p", POINTER(c_int))]
  /external/clang/bindings/python/clang/
cindex.py 74 c_object_p = POINTER(c_void_p)
435 tokens_memory = POINTER(Token)()
448 tokens_array = cast(tokens_memory, POINTER(Token * count)).contents
849 # pointer constant that has integral type (e.g., int or long) and is the same
850 # size and alignment as a pointer.
854 # match the size of a pointer).
884 # [C++0x 2.14.7] C++ Pointer Literal.
    [all...]
  /ndk/sources/android/support/src/stdio/
vfscanf.c 59 #define POINTER 0x00020 /* p: void * (as hex) */
277 case 'p': /* pointer format is like hex */
278 flags |= POINTER | PFXOK;
587 if (flags & POINTER)
745 * (just after `['). Return a pointer to the character past the
  /external/chromium_org/third_party/libjpeg_turbo/simd/
jdsammmx.asm 83 mov edi, POINTER [output_data_ptr(ebp)]
237 movpic POINTER [gotptr], ebx ; save GOT address
249 mov edi, POINTER [output_data_ptr(edx)]
282 movpic ebx, POINTER [gotptr] ; load GOT address
329 movpic ebx, POINTER [gotptr] ; load GOT address
352 movpic ebx, POINTER [gotptr] ; load GOT address
566 mov edi, POINTER [output_data_ptr(ebp)]
667 mov edi, POINTER [output_data_ptr(ebp)]
jdsamss2.asm 83 mov edi, POINTER [output_data_ptr(ebp)]
235 movpic POINTER [gotptr], ebx ; save GOT address
247 mov edi, POINTER [output_data_ptr(edx)]
280 movpic ebx, POINTER [gotptr] ; load GOT address
327 movpic ebx, POINTER [gotptr] ; load GOT address
350 movpic ebx, POINTER [gotptr] ; load GOT address
562 mov edi, POINTER [output_data_ptr(ebp)]
661 mov edi, POINTER [output_data_ptr(ebp)]
jf3dnflt.asm 78 mov edx, POINTER [data(eax)] ; (FAST_FLOAT *)
193 mov edx, POINTER [data(eax)] ; (FAST_FLOAT *)
  /external/chromium_org/base/strings/
safe_sprintf.cc 525 case 'p': { // Output a pointer value.
556 // Pointer values require an actual pointer or a string.
557 if (arg.type == Arg::POINTER) {
566 DEBUG_CHECK(arg.type == Arg::POINTER || arg.type == Arg::STRING);
safe_sprintf.h 63 // It is still not legal to mix-and-match integer-like values with pointer
64 // values. For instance, you cannot pass a pointer to %x, nor can you pass an
139 enum Type { INT, UINT, STRING, POINTER };
187 // Any pointer value that can be cast to a "void*".
188 template<class T> Arg(T* p) : ptr((void*)p), type(POINTER) { }
200 // A pointer to an arbitrary object.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 753 ctypes.POINTER(ctypes.c_char), # stdout buf
755 ctypes.POINTER(wintypes.DWORD), # bytes read
756 ctypes.POINTER(wintypes.DWORD), # bytes avail
757 ctypes.POINTER(wintypes.DWORD)) # bytes left
831 # Make a NULL value by creating a pointer with no argument.
832 NULL = ctypes.POINTER(ctypes.c_int)()
834 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 753 ctypes.POINTER(ctypes.c_char), # stdout buf
755 ctypes.POINTER(wintypes.DWORD), # bytes read
756 ctypes.POINTER(wintypes.DWORD), # bytes avail
757 ctypes.POINTER(wintypes.DWORD)) # bytes left
831 # Make a NULL value by creating a pointer with no argument.
832 NULL = ctypes.POINTER(ctypes.c_int)()
834 SetConsoleCtrlHandler.argtypes = (ctypes.POINTER(ctypes.c_int),
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfscanf.c 58 #define POINTER 0x00020 /* p: void * (as hex) */
114 wchar_t *wcp; /* handy wide character pointer */
265 case 'p': /* pointer format is like hex */
266 flags |= POINTER | PFXOK;
736 if (flags & POINTER)
866 * (just after `['). Return a pointer to the character past the
vfwscanf.c 59 #define POINTER 0x00020 /* p: void * (as hex) */
119 char *mbp; /* multibyte string pointer for %c %s %[ */
290 case 'p': /* pointer format is like hex */
291 flags |= POINTER | PFXOK;
658 if (flags & POINTER)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
271 POINTER(c_wchar).from_param = c_wchar_p.from_param
273 POINTER(c_char).from_param = c_char_p.from_param
316 def SetPointerType(pointer, cls):
319 if id(pointer) not in _pointer_type_cache:
321 pointer.set_type(cls)
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
271 POINTER(c_wchar).from_param = c_wchar_p.from_param
273 POINTER(c_char).from_param = c_char_p.from_param
316 def SetPointerType(pointer, cls):
319 if id(pointer) not in _pointer_type_cache:
321 pointer.set_type(cls)
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]
  /external/llvm/bindings/python/llvm/
object.py 82 from ctypes import POINTER
474 library.LLVMGetSectionContents.restype = POINTER(c_char)
core.py 16 from ctypes import POINTER
496 POINTER(c_object_p), POINTER(c_char_p)]
526 POINTER(c_char_p)]

Completed in 569 milliseconds

1 23 4