HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 751 - 775 of 2969) sorted by null

<<31323334353637383940>>

  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
opt.h 279 double max; ///< maximum valid value for the option member in struct:AVOption
304 double value_min, value_max; ///< For string ranges this represents the min/max length, for dimensions this represents the min/max pixel count
  /external/opencv3/modules/core/src/
parallel.cpp 49 #undef max macro
94 #undef max macro
148 nstripes = cvRound(_nstripes <= 0 ? len : MIN(MAX(_nstripes, 1.), len));
266 parallel(MAX(0, numThreads))
452 return std::max(0, (int)Concurrency::Context::VirtualProcessorId()); // zero for master thread, unique number for others but not necessary 1,2,3,...
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
reduce.hpp 173 __device__ __forceinline__ static void max(R* ptr, R val) function in struct:cv::cudev::grid_reduce_detail::AtomicUnroll
195 __device__ __forceinline__ static void max(R* ptr, val_type val) function in struct:cv::cudev::grid_reduce_detail::AtomicUnroll
220 __device__ __forceinline__ static void max(R* ptr, val_type val) function in struct:cv::cudev::grid_reduce_detail::AtomicUnroll
248 __device__ __forceinline__ static void max(R* ptr, val_type val) function in struct:cv::cudev::grid_reduce_detail::AtomicUnroll
294 return numeric_limits<T>::max();
307 return -numeric_limits<T>::max();
357 mymin = numeric_limits<work_type>::max();
358 mymax = -numeric_limits<work_type>::max();
  /external/opencv3/modules/imgcodecs/src/
loadsave.cpp 49 #undef max macro
132 maxlen = std::max(maxlen, len);
169 maxlen = std::max(maxlen, len);
  /external/pdfium/third_party/freetype/src/psnames/
psmodule.c 401 PS_UniMap *min, *max, *mid, *result = NULL; local
407 max = min + table->num_maps - 1;
409 while ( min <= max )
414 mid = min + ( ( max - min ) >> 1 );
427 if ( min == max )
433 max = mid - 1;
453 FT_UInt max = table->num_maps; local
459 while ( min < max )
461 mid = min + ( ( max - min ) >> 1 );
478 max = mid
    [all...]
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDimReader.cpp 204 int32_t max = patternLength; local
205 for (int32_t i = 0; i < max; i++) {
BC_OnedCode39Reader.cpp 97 int32_t max = result.GetLength() - 1; local
100 for (int32_t k = 0; k < max; k++) {
106 if (result[max] != (ALPHABET_STRING)[total % 43]) {
149 row->IsRange(std::max(0, patternStart - (i - patternStart) / 2),
182 #undef max macro
  /external/skia/src/animator/
SkDrawGroup.cpp 38 int max = fCopies.count() << 5; local
40 if (index >= max || markedForDelete(index))
255 int max = fCopies.count() << 5; local
257 if (index >= max || copySet(index) == false)
  /external/skia/src/core/
SkBitmapProcShader.cpp 151 int max = state.maxCountForBufferSize(sizeof(buffer[0]) * BUF_MAX); local
157 if (n > max) {
158 n = max;
  /external/skia/src/gpu/gl/
GrGLCaps.cpp 79 GrGLint max; local
80 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
81 fMaxFragmentUniformVectors = max / 4;
    [all...]
  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 62 double max = SkTMax(-SkTMin(SkTMin(c[0], c[1]), c[2]), SkTMax(SkTMax(c[0], c[1]), c[2])); local
63 return approximately_zero_when_compared_to(a - b, max);
SkDLineIntersection.cpp 183 double max = line[1].fY; local
184 if (min > max) {
185 SkTSwap(min, max);
187 if (min > y || max < y) {
190 if (AlmostEqualUlps(min, max) && max - min < fabs(line[0].fX - line[1].fX)) {
259 double max = line[1].fX; local
260 if (min > max) {
261 SkTSwap(min, max);
263 if (!precisely_between(min, x, max)) {
    [all...]
  /external/skia/tests/
RRectInPathTest.cpp 351 const float max = SkBits2Float(0x4b7f1c1d); /* 16718877.000000 */ local
356 const SkRect rectx = SkRect::MakeLTRB(min, min, max, big);
357 const SkRect recty = SkRect::MakeLTRB(min, min, big, max);
ScalarTest.cpp 133 float max = 3.402823466e+38f; local
134 float inf = max * max;
138 test_floatclass(reporter, max, kFinite);
139 test_floatclass(reporter, -max, kFinite);
149 { max * 0.75f, true },
150 { max, true },
151 { -max * 0.75f, true },
152 { -max, true },
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
ZipExtractorTask.java 128 int max = progress[1]; local
129 mDialog.setMax(max);
  /external/tcpdump/
tcpdump-stdinc.h 348 #ifndef max
349 #define max(a,b) ((b)>(a)?(b):(a)) macro
  /external/tinyalsa/
mixer.c 75 unsigned int max = mixer->ctl[n].info->value.enumerated.items; local
76 for (m = 0; m < max; m++)
270 range = (ei->value.integer.max - ei->value.integer.min);
277 int range = (ei->value.integer.max - ei->value.integer.min);
510 return ctl->info->value.integer.max;
tinyplay.c 167 unsigned int max; local
177 max = pcm_params_get_max(params, param);
178 if (value > max) {
180 param_unit, max, param_unit);
  /external/toybox/lib/
lib.h 212 long len, max; member in struct:linestack
  /external/toybox/toys/pending/
compress.c 34 -9 max compression (default)
54 -9 Max compression (default)
141 int fd, bitpos, len, max; member in struct:bitbuf
150 bb->max = size;
163 len = (bb->len = read(bb->fd, bb->buf, bb->max)) << 3;
211 memset(bb->buf, 0, bb->max);
221 if (click == bb->max) {
345 litlen = bitbuf_get(bb, 5)+257; // max 288
346 distlen = bitbuf_get(bb, 5)+1; // max 32
347 hufflen = bitbuf_get(bb, 4)+4; // max 1
    [all...]
  /external/v8/src/compiler/
node.cc 90 const int max = kMaxInlineCapacity; local
91 capacity = std::min(input_count + 3, max);
  /external/valgrind/perf/
ffbench.c 114 120.21 DEC 3MAX, MIPS 3000, "-O4".
155 #define max(a,b) ((a)>(b)?(a):(b)) macro
292 rmax = max(r, rmax);
294 imax = max(ij, imax);
297 printf("Real min %.4g, max %.4g. Imaginary min %.4g, max %.4g.\n",
  /external/vboot_reference/firmware/lib/
vboot_display.c 60 uint32_t max; local
65 max = ((FontArrayHeader *)ptr)->num_entries;
77 for(i=0; i<max; i++) {
  /external/vulkan-validation-layers/libs/vkjson/
vkjson.cc 54 static uint32_t max() { return VK_PHYSICAL_DEVICE_TYPE_END_RANGE; } function in struct:__anon26520::EnumTraits
59 static uint32_t max() { return VK_FORMAT_END_RANGE; } function in struct:__anon26520::EnumTraits
413 assert(value.size() <= std::numeric_limits<uint32_t>::max());
484 d > static_cast<double>(std::numeric_limits<int32_t>::max()))
500 d < 0.0 || d > static_cast<double>(std::numeric_limits<uint32_t>::max()))
509 if (value32 > std::numeric_limits<uint8_t>::max())
557 if (value < EnumTraits<T>::min() || value > EnumTraits<T>::max())
  /external/webrtc/webrtc/base/
win32.cc 89 int max = 0; local
96 if (current > max) {
98 max = current;
107 if (max > 0) {
149 i += (max - 1);

Completed in 4084 milliseconds

<<31323334353637383940>>