Home
last modified time | relevance | path

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

/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/cpython3/Doc/library/
Dmultiprocessing.rst1565 .. function:: RawArray(typecode_or_type, size_or_initializer)
1598 The same as :func:`RawArray` except that depending on the value of *lock* a
1658 (c_short * 7)() RawArray(c_short, 7) RawArray('h', 7)
1659 (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.py2357 arr = self.RawArray('i', seq)
2419 arr5 = self.RawArray('i', range(10))
6507 RawArray = staticmethod(multiprocessing.RawArray) variable in ProcessesMixin