HomeSort by relevance Sort by last modified time
    Searched refs:MAX_LENGTH (Results 1 - 25 of 30) sorted by null

1 2

  /cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
ExampleObjects.java 25 private static final int MAX_LENGTH = 1000;
84 int lastNum = MAX_LENGTH - 1;
85 for (int i = 0; i < MAX_LENGTH; i++) {
  /external/ltp/testcases/kernel/syscalls/sethostname/
sethostname02.c 85 #define LARGE_LENGTH MAX_LENGTH + 1
86 #define MAX_LENGTH _UTSNAME_LENGTH - 1
92 static char hostname[MAX_LENGTH];
93 static char hname[MAX_LENGTH];
sethostname01.c 74 #define MAX_LENGTH __NEW_UTS_LEN
81 static char hname[MAX_LENGTH]; /* host name */
sethostname03.c 78 #define MAX_LENGTH __NEW_UTS_LEN
84 static char hname[MAX_LENGTH];
  /external/brotli/java/org/brotli/dec/
Huffman.java 14 private static final int MAX_LENGTH = 15;
48 while (len < MAX_LENGTH) {
67 int[] count = new int[MAX_LENGTH + 1]; // Number of codes of each length.
68 int[] offset = new int[MAX_LENGTH + 1]; // Offsets in sorted table for each length.
78 for (int len = 1; len < MAX_LENGTH; len++) {
94 if (offset[MAX_LENGTH] == 1) {
115 for (int len = rootBits + 1, step = 2; len <= MAX_LENGTH; len++, step <<= 1) {
  /external/freetype/src/base/
ftinit.c 107 #define MAX_LENGTH 128
118 char module_name[MAX_LENGTH + 1];
119 char property_name[MAX_LENGTH + 1];
120 char property_value[MAX_LENGTH + 1];
137 for ( i = 0; i < MAX_LENGTH; i++ )
150 for ( i = 0; i < MAX_LENGTH; i++ )
163 for ( i = 0; i < MAX_LENGTH; i++ )
  /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;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
BERConstructedOctetString.java 16 private static final int MAX_LENGTH = 1000;
111 for (int i = 0; i < string.length; i += MAX_LENGTH)
115 if (i + MAX_LENGTH > string.length)
121 end = i + MAX_LENGTH;
  /external/libpng/contrib/tools/
png-fix-itxt.c 28 * rebuild png-fix-itxt with a larger values of MAX_LENGTH (or a smaller value
35 #define MAX_LENGTH 500000
45 unsigned char buf[MAX_LENGTH];
77 if (length >= MAX_LENGTH-12)
106 if (length >= MAX_LENGTH-12)
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
SupportMessageTest.java 38 static final CharSequence MAX_LENGTH =
80 setShortMessage(ShortMessage.MAX_LENGTH);
  /external/webp/src/enc/
backward_references_enc.c 221 return (len < MAX_LENGTH) ? len : MAX_LENGTH;
270 if (len > MAX_LENGTH) {
271 // Skip the pixels that match for distance=1 and length>MAX_LENGTH
275 memset(chain + pos, 0xff, (len - MAX_LENGTH) * sizeof(*chain));
276 pos += len - MAX_LENGTH;
277 len = MAX_LENGTH;
340 if (best_length == MAX_LENGTH) pos = min_pos - 1;
363 assert(best_length <= MAX_LENGTH);
379 if (best_length == MAX_LENGTH && best_distance != 1 &
    [all...]
backward_references_cost_enc.c 150 // the cost for the MAX_LENGTH following pixels computed. Those following pixels
151 // at index index_ + k (k from 0 to MAX_LENGTH) have a cost of:
154 // array of size MAX_LENGTH.
155 // Instead of performing MAX_LENGTH comparisons per pixel, we keep track of the
190 double cost_cache_[MAX_LENGTH]; // Contains the GetLengthCost(cost_model, k).
254 const int cost_cache_size = (pix_count > MAX_LENGTH) ? MAX_LENGTH : pix_count;
277 // different cost, hence MAX_LENGTH but that is impossible with the current
279 assert(manager->cache_intervals_size_ <= MAX_LENGTH);
324 assert(k >= 0 && k < MAX_LENGTH);
    [all...]
backward_references_enc.h 116 #define MAX_LENGTH ((1 << MAX_LENGTH_BITS) - 1)
127 // defined in MaxFindCopyLength with MAX_LENGTH=4096.
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UTF8.java 149 static int MAX_LENGTH = 4;
  /external/icu/icu4c/source/test/cintltst/
ncnvtst.c 30 #define MAX_LENGTH 999
    [all...]
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 107 private static final int MAX_LENGTH = 253;
149 checkArgument(name.length() <= MAX_LENGTH,
  /external/icu/icu4c/source/common/
messagepattern.cpp 558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) {
567 if(length>Part::MAX_LENGTH) {
610 if(length>Part::MAX_LENGTH) {
686 if(length>Part::MAX_LENGTH) {
725 if(length>Part::MAX_LENGTH) {
808 if(length>Part::MAX_LENGTH) {
843 if((index-valueIndex)>Part::MAX_LENGTH) {
857 if(length>Part::MAX_LENGTH) {
    [all...]
uniset.cpp 58 constexpr int32_t MAX_LENGTH = UNICODESET_HIGH + 1;
    [all...]
  /external/icu/icu4c/source/common/unicode/
messagepattern.h 820 static const int32_t MAX_LENGTH=0xffff;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MessagePattern.java 729 private static final int MAX_LENGTH=0xffff;
    [all...]
UnicodeSet.java 317 private static final int MAX_LENGTH = HIGH + 1;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessagePattern.java 788 private static final int MAX_LENGTH=0xffff;
    [all...]
UnicodeSet.java 319 private static final int MAX_LENGTH = HIGH + 1;
    [all...]
  /external/caliper/lib/
joda-time-2.1.jar 
  /external/cldr/tools/java/libs/
guava.jar 

Completed in 1603 milliseconds

1 2