HomeSort by relevance Sort by last modified time
    Searched refs:maxvalue (Results 1 - 25 of 26) sorted by null

1 2

  /external/python/cpython2/Modules/_multiprocessing/
semaphore.c 18 int maxvalue; member in struct:__anon32729
359 /* We will only check properly the maxvalue == 1 case */
360 if (self->maxvalue == 1) {
384 does not rise above maxvalue. */
387 } else if (sval >= self->maxvalue) {
409 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue)
420 self->maxvalue = maxvalue;
429 int kind, maxvalue, value; local
431 static char *kwlist[] = {"kind", "value", "maxvalue", NULL}
479 int kind, maxvalue; local
    [all...]
  /external/python/cpython3/Modules/_multiprocessing/
semaphore.c 19 int maxvalue; member in struct:__anon33337
354 /* We will only check properly the maxvalue == 1 case */
355 if (self->maxvalue == 1) {
379 does not rise above maxvalue. */
382 } else if (sval >= self->maxvalue) {
404 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue,
416 self->maxvalue = maxvalue;
425 int kind, maxvalue, value, unlink; local
428 static char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink"
474 int kind, maxvalue; local
    [all...]
  /external/python/cpython2/Lib/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /external/libvpx/libvpx/test/
dct_partial_test.cc 71 const int16_t maxvalue = local
73 const int16_t minvalue = -maxvalue;
82 input_block.Set(maxvalue);
86 input_block.Set(&rnd, minvalue, maxvalue);
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder_ops_test.cc 179 TTypes<int16>::ConstFlat maxvalue = maxvalue_tensor.flat<int16>(); local
194 CHECK_LT(maxvalue(maxvalue_offset) + 1, chip_size);
195 const int value = LogUniform(gen, maxvalue(maxvalue_offset));
211 Tensor maxvalue{DT_INT16, {1, 1, 1, 1}};
212 maxvalue.flat<int16>()(0) = kMaxValue;
218 BuildCdf(&gen, &data, &temp, maxvalue);
238 Tensor maxvalue{DT_INT16, {kDimensionSize}};
239 PopulateMaxValues(&gen, &maxvalue, kMinMaxValue, kMaxMaxValue);
244 ASSERT_TRUE(maxvalue1.CopyFrom(maxvalue, {1, 1, kDimensionSize}));
254 ASSERT_TRUE(maxvalue2.CopyFrom(maxvalue, {1, kDimensionSize, 1}))
    [all...]
  /external/python/cpython3/Lib/tkinter/
simpledialog.py 259 minvalue = None, maxvalue = None,
267 self.maxvalue = maxvalue
311 if self.maxvalue is not None and result > self.maxvalue:
315 "Please try again." % self.maxvalue,
415 maxvalue=100))
  /external/python/cpython2/Lib/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 74 def __init__(self, kind, value, maxvalue):
75 sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
97 return (Popen.duplicate_for_child(sl.handle), sl.kind, sl.maxvalue)
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
138 (value, self._semlock.maxvalue)
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 51 def __init__(self, kind, value, maxvalue, *, ctx):
59 kind, value, maxvalue, self._make_name(),
108 return (h, sl.kind, sl.maxvalue, sl.name)
153 return '<%s(value=%s, maxvalue=%s)>' % \
154 (self.__class__.__name__, value, self._semlock.maxvalue)
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 48 self.size = self.maxvalue = 0
58 self.maxvalue = max(data)
60 height=(self.maxvalue+1)*YGRID)
325 y2 = (self.array.maxvalue+1)*YGRID
  /external/python/cpython3/Tools/demo/
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
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java     [all...]
  /external/python/cpython2/Lib/idlelib/
EditorWindow.py     [all...]
  /external/python/cpython3/Lib/idlelib/
editor.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
EditorWindow.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
EditorWindow.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py     [all...]

Completed in 848 milliseconds

1 2