HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 276 - 300 of 3625) sorted by null

<<11121314151617181920>>

  /external/kernel-headers/original/uapi/linux/netfilter/
xt_u32.h 21 __u32 max; member in struct:xt_u32_value_element
  /external/libchrome/base/metrics/
histogram_samples.cc 21 HistogramBase::Sample* max,
52 HistogramBase::Sample* max,
56 *max = max_;
123 HistogramBase::Sample max; local
127 it->Get(&min, &max, &count);
129 !pickle->WriteInt(max) ||
sample_map.cc 33 HistogramBase::Sample* max,
61 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const {
65 if (max)
66 *max = iter_->first + 1;
112 Sample max; local
115 iter->Get(&min, &max, &count);
116 if (min + 1 != max)
  /external/libchrome/base/numerics/
safe_conversions.h 85 // Default boundaries for integral/float: max/infinity, lowest/-infinity, 0/NaN.
93 static constexpr T max() { return std::numeric_limits<T>::max(); } function in struct:base::SaturationDefaultHandler
97 : std::numeric_limits<T>::max();
  /external/libmicrohttpd/src/testcurl/https/
test_empty_response.c 73 MHD_socket max; local
137 max = 0;
141 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
152 select (max + 1, &rs, &ws, &es, &tv);
test_https_get_select.c 87 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/
test_callback.c 40 called_twice(void *cls, uint64_t pos, char *buf, size_t max)
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);
test_parse_cookies.c 120 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);
test_process_arguments.c 123 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/
ideint_cac_ssse3.c 171 __m128i min, max, diff, thresh; local
182 max = _mm_max_epu8(top_avg, bot_avg);
184 diff = _mm_sub_epi16(max, min);
  /external/libopus/celt/x86/
vq_sse2.c 155 __m128 max, max2; local
163 max = _mm_setzero_ps();
175 /* Update the index of the max. */
176 pos = _mm_max_epi16(pos, _mm_and_si128(count, _mm_castps_si128(_mm_cmpgt_ps(r4, max))));
177 /* Update the max. */
178 max = _mm_max_ps(max, r4);
182 /* Horizontal max */
183 max2 = _mm_max_ps(max, _mm_shuffle_ps(max, max, _MM_SHUFFLE(1, 0, 3, 2)))
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_highbd_block_error_intrin_sse2.c 21 __m128i max, min, cmp0, cmp1, cmp2, cmp3; local
33 max = _mm_set1_epi32(0x3fff);
35 cmp0 = _mm_xor_si128(_mm_cmpgt_epi32(mm_coeff, max),
37 cmp1 = _mm_xor_si128(_mm_cmpgt_epi32(mm_coeff2, max),
39 cmp2 = _mm_xor_si128(_mm_cmpgt_epi32(mm_dqcoeff, max),
41 cmp3 = _mm_xor_si128(_mm_cmpgt_epi32(mm_dqcoeff2, max),
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct4x4_add_sse2.c 93 int16_t max = 0, min = 0; local
115 max = _mm_extract_epi16(max_input, 0);
119 if (bd == 8 || (max < 4096 && min >= -4096)) {
127 if (max < 32767 && min > -32768) {
  /external/libxaac/decoder/drc_src/
impd_drc_peak_limiter.c 28 #ifndef max
29 #define max(a, b) (((a) > (b)) ? (a) : (b)) macro
102 tmp = max(tmp, (FLOAT32)fabs(samples[i * num_channels + j]));
133 pre_smoothed_gain = max(pre_smoothed_gain, gain);
  /external/libxcam/modules/ocl/
cv_edgetaper.cpp 52 double min, max; local
53 cv::minMaxLoc (rows_cor, &min, &max);
54 rows_cor /= max;
55 cv::minMaxLoc (cols_cor, &min, &max);
56 cols_cor /= max;
  /external/ltp/testcases/realtime/func/measurement/
rdtsc-latency.c 103 unsigned long long max, min, avg, tsc_a, tsc_b, tsc_period; local
144 max = min = avg = 0;
151 if (deltas[i] > max)
152 max = deltas[i];
161 printf(" Max: %llu ns\n", max);
  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_stats.h 38 uint32_t max; member in struct:stat_bucket
39 /* max = 0 indicates uninitialized bucket */
74 void ffsb_statsc_addbucket(ffsb_statsc_t *, uint32_t min, uint32_t max);
  /external/mesa3d/src/gallium/auxiliary/util/
u_prim_restart.c 133 unsigned count, max; member in struct:range_info
144 if (info->max == 0) {
145 info->max = 10;
146 info->ranges = MALLOC(info->max * sizeof(struct range));
151 else if (info->count == info->max) {
154 info->max * sizeof(struct range),
155 2 * info->max * sizeof(struct range));
160 info->max *= 2;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
Convert.h 183 else if (exp > (0x70 + 0x1E)) // Too big to represent -> max representable value
252 src = std::max(src, 0.0f);
276 src = std::max(src, -1.0f);
304 UINT max = (1 << FormatTraits<DstFormat>::GetBPC(comp)) - 1; // 2^numBits - 1 local
306 outColor[comp] = std::min(max, outColor[comp]);
319 INT max = (1 << (FormatTraits<DstFormat>::GetBPC(comp) - 1)) - 1; local
320 INT min = -1 - max;
325 out = std::max(out, min);
326 out = std::min(out, max);
  /external/mesa3d/src/intel/common/
gen_l3_config.c 291 const unsigned max = (devinfo->gen == 9 ? 1008 : ~0); local
292 return MIN2(max, cfg->n[GEN_L3P_URB] * get_l3_way_size(devinfo)) /
  /external/mesa3d/src/intel/vulkan/
gen7_cmd_buffer.c 37 clamp_int64(int64_t x, int64_t min, int64_t max)
41 else if (x < max)
44 return max;
71 const int max = 0xffff; local
74 .ScissorRectangleYMin = clamp_int64(s->offset.y, 0, max),
75 .ScissorRectangleXMin = clamp_int64(s->offset.x, 0, max),
76 .ScissorRectangleYMax = clamp_int64((uint64_t) s->offset.y + s->extent.height - 1, 0, max),
77 .ScissorRectangleXMax = clamp_int64((uint64_t) s->offset.x + s->extent.width - 1, 0, max)
  /external/mesa3d/src/util/
format_rgb9e5.h 47 union { float f; uint32_t u; } f, max; local
49 max.f = MAX_RGB9E5;
54 else if (f.u >= max.u)
55 return max.u;
  /external/nanopb-c/tests/encode_unittests/
encode_unittests.c 128 int32_t max = INT32_MAX; local
137 field.data_size = sizeof(max);
138 TEST(WRITES(pb_enc_svarint(&s, &field, &max), "\xfe\xff\xff\xff\x0f"));
  /external/oauth/core/src/main/java/net/oauth/
SimpleOAuthValidator.java 92 long max = now + timestampWindow; local
93 if (timestamp < min || max < timestamp) {
95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max);
  /external/pdfium/third_party/base/numerics/
safe_conversions.h 84 // Default boundaries for integral/float: max/infinity, lowest/-infinity, 0/NaN.
92 static constexpr T max() { return std::numeric_limits<T>::max(); } function in struct:pdfium::base::SaturationDefaultHandler
96 : std::numeric_limits<T>::max();

Completed in 1090 milliseconds

<<11121314151617181920>>