Searched refs:RawArray (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/multiprocessing/ |
D | __init__.py | 241 def RawArray(typecode_or_type, size_or_initializer): function 245 from multiprocessing.sharedctypes import RawArray 246 return RawArray(typecode_or_type, size_or_initializer)
|
D | sharedctypes.py | 81 def RawArray(typecode_or_type, size_or_initializer): function 120 obj = RawArray(typecode_or_type, size_or_initializer)
|
/external/python/cpython3/Lib/multiprocessing/ |
D | context.py | 127 def RawArray(self, typecode_or_type, size_or_initializer): member in BaseContext 129 from .sharedctypes import RawArray 130 return RawArray(typecode_or_type, size_or_initializer)
|
D | sharedctypes.py | 54 def RawArray(typecode_or_type, size_or_initializer): function 88 obj = RawArray(typecode_or_type, size_or_initializer)
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1026 arr = self.RawArray('i', seq) 1070 raw_arr = self.RawArray('i', 10L) 1095 arr5 = self.RawArray('i', range(10))
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1202 .. function:: RawArray(typecode_or_type, size_or_initializer) 1235 The same as :func:`RawArray` except that depending on the value of *lock* a 1292 (c_short * 7)() RawArray(c_short, 7) RawArray('h', 7) 1293 (c_int * 3)(9, 2, 8) RawArray(c_int, (9, 2, 8)) RawArray('i', (9, 2, 8))
|
/external/python/cpython3/Doc/library/ |
D | multiprocessing.rst | 1478 .. function:: RawArray(typecode_or_type, size_or_initializer) 1511 The same as :func:`RawArray` except that depending on the value of *lock* a 1571 (c_short * 7)() RawArray(c_short, 7) RawArray('h', 7) 1572 (c_int * 3)(9, 2, 8) RawArray(c_int, (9, 2, 8)) RawArray('i', (9, 2, 8))
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2081 arr = self.RawArray('i', seq) 2143 arr5 = self.RawArray('i', range(10)) 5616 RawArray = staticmethod(multiprocessing.RawArray) variable in ProcessesMixin
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 660 Fix multiprocessing Array and RawArray constructors to accept a size of type
|