Home
last modified time | relevance | path

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

/third_party/python/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)
/third_party/python/Doc/library/
Dmultiprocessing.rst1486 .. function:: RawArray(typecode_or_type, size_or_initializer)
1519 The same as :func:`RawArray` except that depending on the value of *lock* a
1579 (c_short * 7)() RawArray(c_short, 7) RawArray('h', 7)
1580 (c_int * 3)(9, 2, 8) RawArray(c_int, (9, 2, 8)) RawArray('i', (9, 2, 8))
/third_party/python/Lib/test/
D_test_multiprocessing.py2086 arr = self.RawArray('i', seq)
2148 arr5 = self.RawArray('i', range(10))
5753 RawArray = staticmethod(multiprocessing.RawArray) variable in ProcessesMixin