/third_party/python/Modules/_multiprocessing/ |
D | semaphore.c | 19 int maxvalue; member 403 if (self->maxvalue == 1) { in _multiprocessing_SemLock_release_impl() 430 } else if (sval >= self->maxvalue) { in _multiprocessing_SemLock_release_impl() 452 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue, in newsemlockobject() argument 464 self->maxvalue = maxvalue; in newsemlockobject() 483 int maxvalue, const char *name, int unlink) in _multiprocessing_SemLock_impl() argument 504 handle = SEM_CREATE(name, value, maxvalue); in _multiprocessing_SemLock_impl() 512 result = newsemlockobject(type, handle, kind, maxvalue, name_copy); in _multiprocessing_SemLock_impl() 542 int kind, int maxvalue, in _multiprocessing_SemLock__rebuild_impl() argument 565 return newsemlockobject(type, handle, kind, maxvalue, name_copy); in _multiprocessing_SemLock__rebuild_impl() [all …]
|
/third_party/python/Modules/_multiprocessing/clinic/ |
D | semaphore.c.h | 155 int maxvalue, const char *name, int unlink); 168 int maxvalue; in _multiprocessing_SemLock() local 184 maxvalue = _PyLong_AsInt(fastargs[2]); in _multiprocessing_SemLock() 185 if (maxvalue == -1 && PyErr_Occurred()) { in _multiprocessing_SemLock() 205 return_value = _multiprocessing_SemLock_impl(type, kind, value, maxvalue, name, unlink); in _multiprocessing_SemLock() 221 int kind, int maxvalue, 230 int maxvalue; in _multiprocessing_SemLock__rebuild() local 234 &handle, &kind, &maxvalue, &name)) { in _multiprocessing_SemLock__rebuild() 237 return_value = _multiprocessing_SemLock__rebuild_impl(type, handle, kind, maxvalue, name); in _multiprocessing_SemLock__rebuild()
|
/third_party/python/Lib/tkinter/ |
D | simpledialog.py | 274 minvalue = None, maxvalue = None, argument 279 self.maxvalue = maxvalue 323 if self.maxvalue is not None and result > self.maxvalue: 327 "Please try again." % self.maxvalue, 433 maxvalue=100))
|
/third_party/ffmpeg/libavutil/ |
D | pca.c | 109 double maxvalue= -1; in ff_pca() local 111 if(eigenvalue[j] > maxvalue){ in ff_pca() 112 maxvalue= eigenvalue[j]; in ff_pca() 117 eigenvalue[i]= maxvalue; in ff_pca()
|
/third_party/python/Lib/multiprocessing/ |
D | synchronize.py | 50 def __init__(self, kind, value, maxvalue, *, ctx): argument 58 kind, value, maxvalue, self._make_name(), 107 return (h, sl.kind, sl.maxvalue, sl.name) 153 (self.__class__.__name__, value, self._semlock.maxvalue)
|
/third_party/python/Tools/demo/ |
D | sortvisu.py | 48 self.size = self.maxvalue = 0 58 self.maxvalue = max(data) 60 height=(self.maxvalue+1)*YGRID) 327 y2 = (self.array.maxvalue+1)*YGRID
|
/third_party/python/Lib/idlelib/ |
D | format.py | 353 maxvalue=16) 386 maxvalue=16)
|
/third_party/python/Doc/howto/ |
D | descriptor.rst | 396 def __init__(self, minvalue=None, maxvalue=None): 398 self.maxvalue = maxvalue 407 if self.maxvalue is not None and value > self.maxvalue: 409 f'Expected {value!r} to be no more than {self.maxvalue!r}'
|
/third_party/gstreamer/gstplugins_good/sys/oss4/ |
D | oss4-soundcard.h | 1774 int maxvalue; member
|
/third_party/python/Lib/ |
D | turtle.py | 848 minvalue=minval, maxvalue=maxval,
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 108818 Convert the image values from 0-maxvalue to 0-255 when
|