Searched defs:max (Results 276 - 300 of 1064) sorted by relevance

<<11121314151617181920>>

/external/libmicrohttpd/src/testcurl/https/
H A Dtest_https_get_select.c87 MHD_socket max; local
149 max = 0;
153 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
162 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
172 select (max + 1, &rs, &ws, &es, &tv);
/external/libmicrohttpd/src/testcurl/
H A Dtest_callback.c40 called_twice(void *cls, uint64_t pos, char *buf, size_t max) argument
46 memset(buf, 0, max);
91 MHD_socket max; local
133 max = MHD_INVALID_SOCKET;
140 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
151 MHD_get_fdset(d, &rs, &ws, &es, &max))
161 select(max + 1, &rs, &ws, &es, &tv);
H A Dtest_parse_cookies.c120 MHD_socket max; local
174 max = 0;
179 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
188 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
198 select (max + 1, &rs, &ws, &es, &tv);
H A Dtest_process_arguments.c123 MHD_socket max; local
173 max = 0;
178 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
187 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max))
197 select (max + 1, &rs, &ws, &es, &tv);
/external/libmpeg2/common/x86/
H A Dideint_cac_ssse3.c171 __m128i min, max, diff, thresh; local
182 max = _mm_max_epu8(top_avg, bot_avg);
184 diff = _mm_sub_epi16(max, min);
/external/libnl/include/
H A Dnetlink-local.h129 #define max(x,y) ({ \ macro
/external/libvorbis/vq/
H A Ddistribution.c37 float max; local
79 max=min=_float32_unpack(c->q_min);
84 if(val>max)max=val;
88 printf("Maximum scalar value: %f\n",max);
169 sprintf(buf,"getting min/max (%.2f::%.2f). lines...",min,max);
174 min=max=code;
182 if(code>max)max
[all...]
H A Dhuffbuild.c25 static int getval(FILE *in,int begin,int n,int group,int max){ argument
44 return(getval(in,begin,n,group,max));
46 val = val*max+(int)v;
H A Dvqgen.h42 float *max; member in struct:vqgen
/external/libweave/third_party/chromium/base/numerics/
H A Dsafe_conversions_impl.h33 // type if both numeric_limits<Src>::max() <= numeric_limits<Dst>::max() and
138 static Dst max() { function in struct:base::internal::NarrowingRange
139 // The following logic avoids warnings where the max function is
152 return DstLimits::max() - static_cast<Dst>((UINTMAX_C(1) << shift) - 1);
156 return std::numeric_limits<Dst>::is_iec559 ? -DstLimits::max()
200 return GetRangeConstraint((value <= NarrowingRange<Dst, Src>::max()),
213 return GetRangeConstraint(value <= NarrowingRange<Dst, Src>::max(), true);
228 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
245 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.c240 int i, max = 0; local
242 max = MAX2(max, remap_table[i]);
244 remap_table[generic_index] = max + 1;
/external/mesa3d/src/mesa/main/
H A Dapi_validate.c58 * Find the max index in the given element/index buffer
66 GLuint max = 0; local
79 if (((GLuint *) indices)[i] > max)
80 max = ((GLuint *) indices)[i];
84 if (((GLushort *) indices)[i] > max)
85 max = ((GLushort *) indices)[i];
90 if (((GLubyte *) indices)[i] > max)
91 max = ((GLubyte *) indices)[i];
98 return max;
175 GLuint min, max; local
[all...]
/external/mesa3d/src/mesa/swrast_setup/
H A Dss_tritmp.h132 const GLfloat max = ctx->DrawBuffer->_DepthMaxF; local
150 oz0 = CLAMP(v[0]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0F, max);
151 oz1 = CLAMP(v[1]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0F, max);
152 oz2 = CLAMP(v[2]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0F, max);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DCAVLCReader.java119 public int readTE(int max) throws IOException { argument
120 if (max > 1)
/external/opencv/cvaux/src/
H A D_cvvectrack.h51 #undef max macro
54 #define max(a,b) ((a)<(b) ? (b) : (a)) macro
76 /* Simakov: modify __max to max */
77 return (max(abs(p1.x - p2.x), abs(p1.y - p2.y)) < err);
/external/opencv3/3rdparty/openexr/Half/
H A DhalfLimits.h64 static half max () throw () {return HALF_MAX;} function in class:std::numeric_limits
/external/opencv3/3rdparty/openexr/Imath/
H A DImathBox.h80 T max; member in class:Imath::Box
156 max = point;
164 max = maxT;
172 return (min == src.min && max == src.max);
180 return (min != src.min || max != src.max);
188 max = T(T::baseTypeMin());
195 max = T(T::baseTypeMax());
208 if (point[i] > max[
351 Vec2<T> max; member in class:Imath::Box
593 Vec3<T> max; member in class:Imath::Box
[all...]
/external/opencv3/modules/calib3d/test/
H A Dtest_reproject_image_to_3d.cpp113 template<class InT, class OutT> void runCase(int caseId, InT min, InT max) argument
120 randu(disp, Scalar(min), Scalar(max));
133 if (numeric_limits<OutT>::max() == numeric_limits<float>::max())
/external/opencv3/modules/photo/test/
H A Dtest_hdr.cpp55 double max = 1.0; local
56 minMaxLoc(abs(img0 - img1), NULL, &max);
57 ASSERT_FALSE(max > threshold) << "max=" << max << " threshold=" << threshold << " method=" << name;
238 double max; local
239 minMaxLoc(diff, NULL, &max);
240 ASSERT_FALSE(max > 0.1);
/external/opencv3/modules/videoio/
H A Dprecomp.hpp75 #undef max macro
/external/opencv3/modules/videoio/src/
H A Dprecomp.hpp75 #undef max macro
/external/opencv3/samples/gpu/
H A Ddriver_api_stereo_multi.cpp22 # undef max macro
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttkern.c236 FT_UInt max = num_pairs; local
239 while ( min < max )
241 FT_UInt mid = ( min + max ) >> 1;
256 max = mid;
/external/pdfium/third_party/zlib_v128/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max !
[all...]
/external/pdfium/xfa/src/fxbarcode/qrcode/
H A DBC_QRAlignmentPatternFinder.cpp189 int32_t max = m_possibleCenters.GetSize(); local
190 for (int32_t index = 0; index < max; index++) {

Completed in 774 milliseconds

<<11121314151617181920>>