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

1 2 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /external/python/cpython2/Lib/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/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_ctypes.py 5 from ctypes import Structure, c_int, POINTER
12 _fields_ = [("a", POINTER(POINT))]
  /external/python/cpython2/Lib/test/leakers/
test_ctypes.py 4 from ctypes import Structure, c_int, POINTER
11 _fields_ = [("a", POINTER(POINT))]
  /external/python/cpython2/Lib/ctypes/test/
test_pep3118.py 104 PComplete = POINTER(Complete)
143 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
144 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
150 (POINTER(c_short) * 2, "&<h", (2,), POINTER(c_short)),
151 (POINTER(c_short) * 2 * 3, "&<h", (3,2,), POINTER(c_short))
    [all...]
test_wintypes.py 12 true = POINTER(c_int16)(c_int16(true_value))
13 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
24 false = POINTER(c_int16)(c_int16(false_value))
25 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
test_memfunctions.py 43 self.assertEqual(cast(a, POINTER(c_byte))[:7],
45 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
47 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
51 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
test_pointers.py 15 class A(POINTER(c_ulong)):
18 POINTER(c_ulong)(c_ulong(22))
19 # Pointer can't set contents: has no _type_
28 ## func.argtypes = (POINTER(c_int),)
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i))
64 # a function type receiving a pointer
    [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],
  /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],
  /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],
  /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],
  /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)]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderLog.h 56 #define CHECK_NULL_RETURN_IFFAIL(POINTER)\
57 if (POINTER == NULL) { \
58 LOG_E("Invalid pointer\n"); \

Completed in 1309 milliseconds

1 2 3 4 5 6 7 8