HomeSort by relevance Sort by last modified time
    Searched full:max_length (Results 1 - 25 of 332) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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
  /device/moto/shamu/power/
power_shamu.c 42 #define MAX_LENGTH 50
72 char data[MAX_LENGTH];
82 snprintf(data, MAX_LENGTH, "2:%d", client);
86 snprintf(data, MAX_LENGTH, "3:%d", client);
100 char data[MAX_LENGTH];
110 snprintf(data, MAX_LENGTH, "8:%d", client);
113 snprintf(data, MAX_LENGTH, "7:%d", client);
126 char data[MAX_LENGTH];
136 snprintf(data, MAX_LENGTH, "5:%d", client);
140 snprintf(data, MAX_LENGTH, "6:%d", client)
    [all...]
  /external/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();
  /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/chromium_org/components/autofill/core/browser/
password_generator.cc 27 // |max_length| retrieved from input password field.
28 int GetLengthFromHint(int max_length, int default_length) {
29 if (max_length >= kMinPasswordLength && max_length <= kMaxPasswordLength)
30 return max_length;
79 PasswordGenerator::PasswordGenerator(int max_length)
80 : password_length_(GetLengthFromHint(max_length, kDefaultPasswordLength)) {}
password_generator.h 21 // |max_length| is used as a hint for the generated password's length.
22 explicit PasswordGenerator(int max_length);
  /external/chromium_org/tools/telemetry/telemetry/util/
exception_formatter.py 95 def _AbbreviateMiddleOfString(target, middle, max_length):
96 if max_length < 0:
97 raise ValueError('Must provide positive max_length')
98 if len(middle) > max_length:
99 raise ValueError('middle must not be greater than max_length')
101 if len(target) <= max_length:
103 half_length = (max_length - len(middle)) / 2.
  /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/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);
  /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);

Completed in 796 milliseconds

1 2 3 4 5 6 7 8 91011>>