Home
last modified time | relevance | path

Searched refs:RawArray (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py241 def RawArray(typecode_or_type, size_or_initializer): function
245 from multiprocessing.sharedctypes import RawArray
246 return RawArray(typecode_or_type, size_or_initializer)
Dsharedctypes.py81 def RawArray(typecode_or_type, size_or_initializer): function
120 obj = RawArray(typecode_or_type, size_or_initializer)
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py127 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)
Dsharedctypes.py54 def RawArray(typecode_or_type, size_or_initializer): function
88 obj = RawArray(typecode_or_type, size_or_initializer)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1026 arr = self.RawArray('i', seq)
1070 raw_arr = self.RawArray('i', 10L)
1095 arr5 = self.RawArray('i', range(10))
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1202 .. 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/
Dmultiprocessing.rst1478 .. 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.py2081 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/
D2.7.2rc1.rst660 Fix multiprocessing Array and RawArray constructors to accept a size of type