/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
merge.h | 40 /** @brief Merge routine being able to merge only the @c max_length 50 * @param max_length Maximum number of elements to merge. 61 _DifferenceTp max_length, Comparator comp) 64 while (begin1 != end1 && begin2 != end2 && max_length > 0) 71 --max_length; 76 target = std::copy(begin1, begin1 + max_length, target); 77 begin1 += max_length; 81 target = std::copy(begin2, begin2 + max_length, target); 82 begin2 += max_length; 87 /** @brief Merge routine being able to merge only the @c max_length [all...] |
/external/clang/test/CXX/class.access/class.access.nest/ |
p1.cpp | 10 static const unsigned long max_length; member in struct:test0::A::C 14 const unsigned long A::C::max_length = sizeof(B); member in class:test0::A::C
|
/external/chromium/webkit/glue/ |
form_field.cc | 27 : max_length(0), 35 : max_length(0), 47 max_length = input_element.size(); 70 int max_length, 76 max_length(max_length), 89 max_length == field.max_length); 101 max_length == field.max_length); [all...] |
form_field.h | 34 int max_length, 53 int max_length; member in struct:webkit_glue::FormField
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.stdcvt/ |
codecvt_utf16_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
codecvt_utf8_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
codecvt_utf8_utf16_max_length.pass.cpp | 20 // int max_length() const throw(); 30 int r = c.max_length(); 36 int r = c.max_length(); 42 int r = c.max_length(); 48 int r = c.max_length(); 54 int r = c.max_length(); 60 int r = c.max_length();
|
/external/llvm/test/CodeGen/X86/ |
2008-03-10-RegAllocInfLoop.ll | 6 define x86_stdcallcc i32 @parse_backslash(i8** inreg %word, i32* inreg %word_length, i32* inreg %max_length) nounwind { 11 %tmp26 = call fastcc i8* @w_addchar( i8* null, i32* %word_length, i32* %max_length, i8 signext %tmp6 ) nounwind ; <i8*> [#uses=1]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERConstructedOctetString.java | 14 private static final int MAX_LENGTH = 1000; 109 for (int i = 0; i < string.length; i += MAX_LENGTH) 113 if (i + MAX_LENGTH > string.length) 119 end = i + MAX_LENGTH;
|
BEROctetString.java | 11 private static final int MAX_LENGTH = 1000; 95 for (int i = 0; i < string.length; i += MAX_LENGTH) 99 if (i + MAX_LENGTH > string.length) 105 end = i + MAX_LENGTH;
|
/external/oprofile/libdb/ |
db_stat.c | 30 size_t max_length = 0; local 58 if (cur_length > max_length) 59 max_length = cur_length; 67 result->max_list_length = max_length;
|
/external/wpa_supplicant_8/src/utils/ |
radiotap_iter.h | 27 * @max_length: length of radiotap header in cpu byte ordering 38 int max_length; member in struct:ieee80211_radiotap_iterator 51 int max_length);
|
/external/openfst/src/include/fst/script/ |
randgen.h | 46 ropts(arc_selector, opts.max_length, 52 ropts(arc_selector, opts.max_length, 58 ropts(arc_selector, opts.max_length,
|
/external/llvm/utils/lint/ |
common_lint.py | 7 def VerifyLineLength(filename, lines, max_length): 14 max_length: maximum acceptable line length as number 24 if length > max_length: 26 'Line exceeds %d chars (%d)' % (max_length, length)))
|
/hardware/qcom/power/ |
power.c | 36 #define MAX_LENGTH 50 67 char data[MAX_LENGTH]; 77 snprintf(data, MAX_LENGTH, "2:%d", client); 80 snprintf(data, MAX_LENGTH, "3:%d", client); 93 char data[MAX_LENGTH]; 103 snprintf(data, MAX_LENGTH, "5:%d", client); 106 snprintf(data, MAX_LENGTH, "6:%d", client); 150 char data[MAX_LENGTH]; 159 snprintf(data, MAX_LENGTH, "1:%d", client);
|
/external/chromium_org/base/debug/ |
crash_logging.cc | 42 // The longest max_length allowed by the system. 58 if (!crash_key || crash_key->max_length <= g_chunk_max_length_) { 67 i < NumChunksForLength(crash_key->max_length); 86 if (!crash_key || crash_key->max_length <= g_chunk_max_length_) { 91 for (size_t i = 0; i < NumChunksForLength(crash_key->max_length); ++i) { 155 total_keys += NumChunksForLength(keys[i].max_length); 156 DCHECK_LT(keys[i].max_length, kLargestValueAllowed); 183 std::string value_string = value.substr(0, crash_key.max_length).as_string();
|
/external/chromium_org/components/autofill/core/browser/ |
password_generator.h | 21 // |max_length| is used as a hint for the generated password's length. 22 explicit PasswordGenerator(size_t max_length);
|
/external/chromium_org/components/autofill/core/common/ |
form_data_unittest.cc | 27 field_data.max_length = 200; 42 field_data.max_length = 150;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 4);
|
char32_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 4);
|
char_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 1);
|
wchar_t_max_length.pass.cpp | 14 // int max_length() const throw(); 25 assert(f.max_length() == 1);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
Romkan.java | 148 private static final int MAX_LENGTH = 4; 169 StrSegment[] str = new StrSegment[MAX_LENGTH]; 170 int start = MAX_LENGTH; 171 int checkLength = Math.min(cursor, MAX_LENGTH); 173 str[MAX_LENGTH - i] = text.getStrSegment(1, cursor - i); 178 while (start < MAX_LENGTH) { 179 for (int i = start; i < MAX_LENGTH; i++) { 191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 192 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 196 str[start].from, str[MAX_LENGTH - 1].to - 1) [all...] |
RomkanFullKatakana.java | 144 private static final int MAX_LENGTH = 4; 173 StrSegment[] str = new StrSegment[MAX_LENGTH]; 174 int start = MAX_LENGTH; 175 int checkLength = Math.min(cursor, MAX_LENGTH); 177 str[MAX_LENGTH - i] = text.getStrSegment(1, cursor - i); 182 while (start < MAX_LENGTH) { 183 for (int i = start; i < MAX_LENGTH; i++) { 195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 196 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 200 str[start].from, str[MAX_LENGTH - 1].to - 1) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
thread_cache.cc | 159 const int num_to_move = min<int>(list->max_length(), batch_size); 173 if (list->max_length() < batch_size) { 174 list->set_max_length(list->max_length() + 1); 179 int new_length = min<int>(list->max_length() + batch_size, 181 // The list's max_length must always be a multiple of batch_size, 197 // num_objects_to_move, so the code below tries to make max_length 200 if (list->max_length() < batch_size) { 201 // Slow start the max_length so we don't overreserve. 202 list->set_max_length(list->max_length() + 1); 203 } else if (list->max_length() > batch_size) [all...] |