Searched defs:maxvalue (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/test/
H A Ddct_partial_test.cc71 const int16_t maxvalue = local
73 const int16_t minvalue = -maxvalue;
82 input_block.Set(maxvalue);
86 input_block.Set(&rnd, minvalue, maxvalue);
/external/python/cpython2/Modules/_multiprocessing/
H A Dsemaphore.c18 int maxvalue; member in struct:__anon19397
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) argument
420 self->maxvalue = maxvalue;
429 int kind, maxvalue, value; local
431 static char *kwlist[] = {"kind", "value", "maxvalue", NUL
479 int kind, maxvalue; local
[all...]
/external/python/cpython3/Modules/_multiprocessing/
H A Dsemaphore.c19 int maxvalue; member in struct:__anon20005
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, argument
416 self->maxvalue = maxvalue;
425 int kind, maxvalue, value, unlink; local
428 static char *kwlist[] = {"kind", "value", "maxvalue", "nam
474 int kind, maxvalue; local
[all...]
/external/tensorflow/tensorflow/contrib/coder/kernels/
H A Drange_coder_ops_test.cc179 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, {
[all...]

Completed in 1044 milliseconds