HomeSort by relevance Sort by last modified time
    Searched refs:POINTER (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
210 ('asn1_string', POINTER(ASN1_STRING)),
211 ('object', POINTER(ASN1_OBJECT))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
210 ('asn1_string', POINTER(ASN1_STRING)),
211 ('object', POINTER(ASN1_OBJECT))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_pep3118.py 100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_short) * 2 * 3, "(3,2)&<h", (3,2,), POINTER(c_short))
    [all...]
test_wintypes.py 14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
test_memfunctions.py 41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
test_cast.py 10 # casting an array to a pointer works.
11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
test_stringptr.py 12 _fields_ = [("str", POINTER(c_char))]
15 # NULL pointer access
23 # POINTER(c_char) and Python string is NOT compatible
24 # POINTER(c_char) and c_buffer() is compatible
54 # POINTER(c_char) and Python string is NOT compatible
55 # POINTER(c_char) and c_buffer() is compatible
56 strchr.argtypes = POINTER(c_char), c_char
65 strchr.restype = POINTER(c_char)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_pep3118.py 100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_short) * 2 * 3, "(3,2)&<h", (3,2,), POINTER(c_short))
    [all...]
test_wintypes.py 14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
test_memfunctions.py 41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
test_cast.py 10 # casting an array to a pointer works.
11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
test_stringptr.py 12 _fields_ = [("str", POINTER(c_char))]
15 # NULL pointer access
23 # POINTER(c_char) and Python string is NOT compatible
24 # POINTER(c_char) and c_buffer() is compatible
54 # POINTER(c_char) and Python string is NOT compatible
55 # POINTER(c_char) and c_buffer() is compatible
56 strchr.argtypes = POINTER(c_char), c_char
65 strchr.restype = POINTER(c_char)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_short) * 2 * 3, "(3,2)&<h", (3,2,), POINTER(c_short))
    [all...]
test_wintypes.py 14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
test_memfunctions.py 41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
test_cast.py 10 # casting an array to a pointer works.
11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_short) * 2 * 3, "(3,2)&<h", (3,2,), POINTER(c_short))
    [all...]
test_wintypes.py 14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
test_memfunctions.py 41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
test_cast.py 10 # casting an array to a pointer works.
11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
  /toolchain/binutils/binutils-2.25/libiberty/
obstack.c 55 #define POINTER void *
144 POINTER (*chunkfun) (long), void (*freefun) (void *))
188 POINTER (*chunkfun) (POINTER, long),
189 void (*freefun) (POINTER, POINTER), POINTER arg)
302 int _obstack_allocated_p (struct obstack *h, POINTER obj);
305 _obstack_allocated_p (struct obstack *h, POINTER obj)
314 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)
    [all...]
  /external/llvm/bindings/python/llvm/
bit_reader.py 9 from ctypes import POINTER
27 library.LLVMParseBitcode2.argtypes = [MemoryBuffer, POINTER(c_object_p)]
disassembler.py 11 from ctypes import POINTER
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),
167 POINTER(c_uint64), c_uint64,
168 POINTER(c_char_p))
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderLog.h 56 #define CHECK_NULL_RETURN_IFFAIL(POINTER)\
57 if (POINTER == NULL) { \
58 LOG_E("Invalid pointer\n"); \
  /external/autotest/client/cros/graphics/
drm.py 62 ("fbs", POINTER(c_uint)),
64 ("crtcs", POINTER(c_uint)),
66 ("connectors", POINTER(c_uint)),
68 ("encoders", POINTER(c_uint)),
226 pointer(mapDumb))
259 l.drmGetVersion.restype = POINTER(DrmVersion)
261 l.drmFreeVersion.argtypes = [POINTER(DrmVersion)]
265 l.drmModeGetResources.restype = POINTER(DrmModeResources)
267 l.drmModeFreeResources.argtypes = [POINTER(DrmModeResources)]
271 l.drmModeGetCrtc.restype = POINTER(DrmModeCrtc
    [all...]

Completed in 263 milliseconds

1 2 3 4 5 6