HomeSort by relevance Sort by last modified time
    Searched defs:max_count (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/wpa_supplicant_8/wpa_supplicant/
blacklist.c 126 int max_count = 0; local
131 if (e->count > max_count)
132 max_count = e->count;
140 wpa_s->extra_blacklist_count += max_count;
  /external/expat/tests/
structdata.h 52 int max_count; /* Number of StructDataEntry items in `entries` */ member in struct:__anon20384
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
list_update_policy.hpp 91 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
103 max_count = Max_Count enumerator in enum:__gnu_pbds::lu_counter_policy::__anon63326
120 { return base_type::operator()(max_count); }
126 { return base_type::operator()(r_data, max_count); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
list_update_policy.hpp 91 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
103 max_count = Max_Count enumerator in enum:__gnu_pbds::lu_counter_policy::__anon63612
120 { return base_type::operator()(max_count); }
126 { return base_type::operator()(r_data, max_count); }
  /system/chre/apps/wifi_offload/
channel_histogram.cc 95 uint32_t max_count = 0; local
96 // since there is at least one non-zero value, max_count won't be 0
98 if (max_count < count) {
99 max_count = count;
103 // linearly map from [1,max_count] to [1,255]
105 scaled_value = scaled_value * 254 / max_count + 1;
  /external/e2fsprogs/e2fsck/
problemP.h 19 int max_count; member in struct:e2fsck_problem
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_lower_uniforms.c 137 uint32_t max_count = 0; local
143 if (count > max_count) {
144 max_count = count;
  /external/curl/tests/libtest/
lib582.c 36 int max_count; /* max number of sockets that fit in allocated array */ member in struct:Sockets
82 sockets->max_count = 20;
84 else if(sockets->count + 1 > sockets->max_count) {
87 (sockets->max_count + 20));
93 sockets->max_count += 20;
  /external/opencv/cv/src/
cvfeatureselect.cpp 62 int max_count = 0; local
87 max_count = *corner_count;
136 if( max_count <= 0 )
211 if( ++count >= max_count )
  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 227 int max_count = (int)(line_end - tsrc); local
240 while( ++len1 < max_count );
295 int max_count = (int)(line_end - data); local
309 while( (max_count -= nch) > 0 );
  /external/webrtc/webrtc/base/
rollingaccumulator.h 28 explicit RollingAccumulator(size_t max_count)
29 : samples_(max_count) {
35 size_t max_count() const { function in class:rtc::RollingAccumulator
55 if (count_ == max_count()) {
83 next_index_ = (next_index_ + 1) % max_count();
103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]);
116 min_ = std::min(min_, samples_[(next_index_ + i) % max_count()]);
133 const size_t max_size = max_count();
  /hardware/qcom/display/msm8909/sdm/libs/core/fb/
hw_info.cpp 103 const uint32_t max_count = kBwModeMax; local
104 char *tokens[max_count] = { NULL };
107 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
151 const uint32_t max_count = 256; local
152 char *tokens[max_count] = { NULL };
156 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
253 if (!ParseString(line.c_str(), tokens, max_count, ": =\n", &token_count)) {
276 char *tokens_fmt[max_count] = { NULL };
278 if (!ParseString(tokens[j+1], tokens_fmt, max_count, ",\n", &token_fmt_count)) {
368 const uint32_t max_count = 10 local
416 const uint32_t max_count = 10; local
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/fb/
hw_info.cpp 103 const uint32_t max_count = kBwModeMax; local
104 char *tokens[max_count] = { NULL };
107 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
151 const uint32_t max_count = 256; local
152 char *tokens[max_count] = { NULL };
156 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
249 if (!ParseString(line.c_str(), tokens, max_count, ": =\n", &token_count)) {
272 char *tokens_fmt[max_count] = { NULL };
274 if (!ParseString(tokens[j+1], tokens_fmt, max_count, ",\n", &token_fmt_count)) {
364 const uint32_t max_count = 10 local
412 const uint32_t max_count = 10; local
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_info.cpp 124 const uint32_t max_count = kBwModeMax; local
125 char *tokens[max_count] = { NULL };
128 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
166 const uint32_t max_count = 256; local
167 char *tokens[max_count] = { NULL };
171 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
258 if (!ParseString(line.c_str(), tokens, max_count, ": =\n", &token_count)) {
281 char *tokens_fmt[max_count] = { NULL };
283 if (!ParseString(tokens[j+1], tokens_fmt, max_count, ",\n", &token_fmt_count)) {
369 const uint32_t max_count = 10 local
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_info.cpp 103 const uint32_t max_count = kBwModeMax; local
104 char *tokens[max_count] = { NULL };
107 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
151 const uint32_t max_count = 256; local
152 char *tokens[max_count] = { NULL };
156 if (!ParseString(line.c_str(), tokens, max_count, ":, =\n", &token_count)) {
249 if (!ParseString(line.c_str(), tokens, max_count, ": =\n", &token_count)) {
272 char *tokens_fmt[max_count] = { NULL };
274 if (!ParseString(tokens[j+1], tokens_fmt, max_count, ",\n", &token_fmt_count)) {
363 const uint32_t max_count = 10 local
411 const uint32_t max_count = 10; local
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 324 const size_t max_count = (repeat == '?') ? 1 : local
329 for (size_t i = 0; i <= max_count; ++i) {
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 324 const size_t max_count = (repeat == '?') ? 1 : local
329 for (size_t i = 0; i <= max_count; ++i) {
  /external/protobuf/gtest/src/
gtest-port.cc 297 const size_t max_count = (repeat == '?') ? 1 : local
302 for (size_t i = 0; i <= max_count; ++i) {
  /external/python/cpython3/Lib/email/
headerregistry.py 190 The subclass should also make sure that a 'max_count' attribute is defined
264 max_count = None variable in class:UnstructuredHeader
275 max_count = 1 variable in class:UniqueUnstructuredHeader
289 max_count = None variable in class:DateHeader
319 max_count = 1 variable in class:UniqueDateHeader
324 max_count = None variable in class:AddressHeader
379 max_count = 1 variable in class:UniqueAddressHeader
394 max_count = 1 variable in class:UniqueSingleAddressHeader
399 max_count = 1 variable in class:MIMEVersionHeader
439 max_count = variable in class:ParameterizedMIMEHeader
501 max_count = 1 variable in class:ContentTransferEncodingHeader
    [all...]
  /external/squashfs-tools/squashfs-tools/
caches-queues-lists.h 165 int max_count; member in union:cache::__anon35262
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-port.cc 299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-port.cc 324 const size_t max_count = (repeat == '?') ? 1 : local
329 for (size_t i = 0; i <= max_count; ++i) {
  /tools/dexter/dexter/
experimental.cc 453 int max_count = 0; local
455 max_count = std::max(max_count, kv.second);
457 printf("\nHistogram: %s [max_count=%d]\n\n", name, max_count);
460 int hist_len = static_cast<int>(static_cast<double>(kv.second) / max_count * kHistogramWidth);
  /art/runtime/jdwp/
jdwp_handler.cc 589 int32_t max_count = request->ReadSigned32("max count"); local
590 if (max_count < 0) {
595 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances);
887 int32_t max_count = request->ReadSigned32("max count"); local
888 if (max_count < 0) {
893 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects);
    [all...]

Completed in 626 milliseconds

1 2 3