Home
last modified time | relevance | path

Searched refs:MAX_LENGTH (Results 1 – 25 of 42) sorted by relevance

12

/third_party/freetype/src/base/
Dftinit.c107 #define MAX_LENGTH 128 macro
118 char module_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
119 char property_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
120 char property_value[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
137 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
150 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
163 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
DHuffman.java14 private static final int MAX_LENGTH = 15; field in Huffman
48 while (len < MAX_LENGTH) { in nextTableBitSize()
70 int[] count = new int[MAX_LENGTH + 1]; // Number of codes of each length. in buildHuffmanTable()
71 int[] offset = new int[MAX_LENGTH + 1]; // Offsets in sorted table for each length. in buildHuffmanTable()
81 for (int len = 1; len < MAX_LENGTH; len++) { in buildHuffmanTable()
97 if (offset[MAX_LENGTH] == 1) { in buildHuffmanTable()
119 for (int len = rootBits + 1, step = 2; len <= MAX_LENGTH; len++, step <<= 1) { in buildHuffmanTable()
/third_party/flutter/skia/third_party/externals/freetype/src/base/
Dftinit.c107 #define MAX_LENGTH 128 macro
118 char module_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
119 char property_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
120 char property_value[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
137 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
150 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
163 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
/third_party/skia/third_party/externals/freetype/src/base/
Dftinit.c107 #define MAX_LENGTH 128 macro
118 char module_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
119 char property_name[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
120 char property_value[MAX_LENGTH + 1]; in FT_Set_Default_Properties()
137 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
150 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
163 for ( i = 0; i < MAX_LENGTH; i++ ) in FT_Set_Default_Properties()
/third_party/node/test/parallel/
Dtest-buffer-constants.js6 const { MAX_LENGTH, MAX_STRING_LENGTH } = require('buffer').constants;
8 assert.strictEqual(typeof MAX_LENGTH, 'number');
10 assert(MAX_STRING_LENGTH <= MAX_LENGTH);
17 assert.strictEqual(kMaxLength, MAX_LENGTH);
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpng-fix-itxt.c35 #define MAX_LENGTH 500000 macro
45 unsigned char buf[MAX_LENGTH]; in main()
77 if (length >= MAX_LENGTH-12) in main()
106 if (length >= MAX_LENGTH-12) in main()
/third_party/libpng/contrib/tools/
Dpng-fix-itxt.c35 #define MAX_LENGTH 500000 macro
45 unsigned char buf[MAX_LENGTH]; in main()
77 if (length >= MAX_LENGTH-12) in main()
106 if (length >= MAX_LENGTH-12) in main()
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
Dpng-fix-itxt.c35 #define MAX_LENGTH 500000 macro
45 unsigned char buf[MAX_LENGTH]; in main()
77 if (length >= MAX_LENGTH-12) in main()
106 if (length >= MAX_LENGTH-12) in main()
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dbackward_references_enc.c222 return (len < MAX_LENGTH) ? len : MAX_LENGTH; in MaxFindCopyLength()
271 if (len > MAX_LENGTH) { in VP8LHashChainFill()
276 memset(chain + pos, 0xff, (len - MAX_LENGTH) * sizeof(*chain)); in VP8LHashChainFill()
277 pos += len - MAX_LENGTH; in VP8LHashChainFill()
278 len = MAX_LENGTH; in VP8LHashChainFill()
341 if (best_length == MAX_LENGTH) pos = min_pos - 1; in VP8LHashChainFill()
364 assert(best_length <= MAX_LENGTH); in VP8LHashChainFill()
380 if (best_length == MAX_LENGTH && best_distance != 1 && in VP8LHashChainFill()
381 base_position + MAX_LENGTH < max_base_position) { in VP8LHashChainFill()
384 if (best_length < MAX_LENGTH) { in VP8LHashChainFill()
[all …]
Dbackward_references_cost_enc.c190 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; in CostManagerInit()
279 assert(manager->cache_intervals_size_ <= MAX_LENGTH); in CostManagerInit()
324 assert(k >= 0 && k < MAX_LENGTH); in UpdateCost()
476 assert(k >= 0 && k < MAX_LENGTH); in PushInterval()
651 assert(len == MAX_LENGTH || len == pix_count - i); in BackwardReferencesHashChainDistanceOnly()
/third_party/skia/third_party/externals/libwebp/src/enc/
Dbackward_references_enc.c253 return (len < MAX_LENGTH) ? len : MAX_LENGTH; in MaxFindCopyLength()
302 if (len > MAX_LENGTH) { in VP8LHashChainFill()
307 memset(chain + pos, 0xff, (len - MAX_LENGTH) * sizeof(*chain)); in VP8LHashChainFill()
308 pos += len - MAX_LENGTH; in VP8LHashChainFill()
309 len = MAX_LENGTH; in VP8LHashChainFill()
372 if (best_length == MAX_LENGTH) pos = min_pos - 1; in VP8LHashChainFill()
395 assert(best_length <= MAX_LENGTH); in VP8LHashChainFill()
411 if (best_length == MAX_LENGTH && best_distance != 1 && in VP8LHashChainFill()
412 base_position + MAX_LENGTH < max_base_position) { in VP8LHashChainFill()
415 if (best_length < MAX_LENGTH) { in VP8LHashChainFill()
[all …]
Dbackward_references_cost_enc.c190 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; in CostManagerInit()
279 assert(manager->cache_intervals_size_ <= MAX_LENGTH); in CostManagerInit()
324 assert(k >= 0 && k < MAX_LENGTH); in UpdateCost()
476 assert(k >= 0 && k < MAX_LENGTH); in PushInterval()
651 assert(len == MAX_LENGTH || len == pix_count - i); in BackwardReferencesHashChainDistanceOnly()
/third_party/icu/icu4c/source/test/cintltst/
Dncnvtst.c30 #define MAX_LENGTH 999 macro
695 UChar *standardForm = (UChar*)malloc(MAX_LENGTH*sizeof(UChar)); in TestRegressionUTF8()
696 uint8_t *utf8 = (uint8_t*)malloc(MAX_LENGTH); in TestRegressionUTF8()
702 && offset16 < ((int32_t)(MAX_LENGTH/sizeof(UChar) - MAX_UTF16_LEN)) in TestRegressionUTF8()
703 && offset8 < (MAX_LENGTH - MAX_UTF8_LEN)) in TestRegressionUTF8()
766 UChar *standardForm = (UChar*)malloc(MAX_LENGTH*sizeof(UChar)); in TestRegressionUTF32()
767 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); in TestRegressionUTF32()
773 && offset16 < ((int32_t)(MAX_LENGTH/sizeof(UChar) - MAX_UTF16_LEN)) in TestRegressionUTF32()
774 && offset32 < ((int32_t)(MAX_LENGTH/sizeof(UChar32) - MAX_UTF32_LEN))) in TestRegressionUTF32()
916 TestWithBufferSize(MAX_LENGTH, 1); in TestFlushInternalBuffer()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DMessagePattern.java729 private static final int MAX_LENGTH=0xffff; field in MessagePattern.Part
962 if(length>Part.MAX_LENGTH || number>Part.MAX_VALUE) { in parseArg()
970 if(length>Part.MAX_LENGTH) { in parseArg()
1004 if(length>Part.MAX_LENGTH) { in parseArg()
1073 if(length>Part.MAX_LENGTH) { in parseSimpleStyle()
1102 if(length>Part.MAX_LENGTH) { in parseChoiceStyle()
1172 if(length>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
1204 if((index-valueIndex)>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
1213 if(length>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessagePattern.java788 private static final int MAX_LENGTH=0xffff; field in MessagePattern.Part
1033 if(length>Part.MAX_LENGTH || number>Part.MAX_VALUE) { in parseArg()
1041 if(length>Part.MAX_LENGTH) { in parseArg()
1075 if(length>Part.MAX_LENGTH) { in parseArg()
1144 if(length>Part.MAX_LENGTH) { in parseSimpleStyle()
1173 if(length>Part.MAX_LENGTH) { in parseChoiceStyle()
1243 if(length>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
1275 if((index-valueIndex)>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
1284 if(length>Part.MAX_LENGTH) { in parsePluralOrSelectStyle()
/third_party/skia/third_party/externals/icu/source/common/
Dmessagepattern.cpp558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg()
567 if(length>Part::MAX_LENGTH) { in parseArg()
610 if(length>Part::MAX_LENGTH) { in parseArg()
686 if(length>Part::MAX_LENGTH) { in parseSimpleStyle()
725 if(length>Part::MAX_LENGTH) { in parseChoiceStyle()
808 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
857 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
Duniset.cpp40 constexpr int32_t MAX_LENGTH = UNICODESET_HIGH + 1; variable
1635 if (newCapacity > MAX_LENGTH) { in nextCapacity()
1636 newCapacity = MAX_LENGTH; in nextCapacity()
1643 if (newLen > MAX_LENGTH) { in ensureCapacity()
1644 newLen = MAX_LENGTH; in ensureCapacity()
1666 if (newLen > MAX_LENGTH) { in ensureBufferCapacity()
1667 newLen = MAX_LENGTH; in ensureBufferCapacity()
/third_party/icu/icu4c/source/common/
Dmessagepattern.cpp558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg()
567 if(length>Part::MAX_LENGTH) { in parseArg()
610 if(length>Part::MAX_LENGTH) { in parseArg()
686 if(length>Part::MAX_LENGTH) { in parseSimpleStyle()
725 if(length>Part::MAX_LENGTH) { in parseChoiceStyle()
808 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
857 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
Duniset.cpp40 constexpr int32_t MAX_LENGTH = UNICODESET_HIGH + 1; variable
1635 if (newCapacity > MAX_LENGTH) { in nextCapacity()
1636 newCapacity = MAX_LENGTH; in nextCapacity()
1643 if (newLen > MAX_LENGTH) { in ensureCapacity()
1644 newLen = MAX_LENGTH; in ensureCapacity()
1666 if (newLen > MAX_LENGTH) { in ensureBufferCapacity()
1667 newLen = MAX_LENGTH; in ensureBufferCapacity()
/third_party/node/deps/icu-small/source/common/
Dmessagepattern.cpp558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg()
567 if(length>Part::MAX_LENGTH) { in parseArg()
610 if(length>Part::MAX_LENGTH) { in parseArg()
686 if(length>Part::MAX_LENGTH) { in parseSimpleStyle()
725 if(length>Part::MAX_LENGTH) { in parseChoiceStyle()
808 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
857 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
Duniset.cpp40 constexpr int32_t MAX_LENGTH = UNICODESET_HIGH + 1; variable
1634 if (newCapacity > MAX_LENGTH) { in nextCapacity()
1635 newCapacity = MAX_LENGTH; in nextCapacity()
1642 if (newLen > MAX_LENGTH) { in ensureCapacity()
1643 newLen = MAX_LENGTH; in ensureCapacity()
1665 if (newLen > MAX_LENGTH) { in ensureBufferCapacity()
1666 newLen = MAX_LENGTH; in ensureBufferCapacity()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dmessagepattern.cpp558 if(length>Part::MAX_LENGTH || number>Part::MAX_VALUE) { in parseArg()
567 if(length>Part::MAX_LENGTH) { in parseArg()
610 if(length>Part::MAX_LENGTH) { in parseArg()
686 if(length>Part::MAX_LENGTH) { in parseSimpleStyle()
725 if(length>Part::MAX_LENGTH) { in parseChoiceStyle()
808 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
857 if(length>Part::MAX_LENGTH) { in parsePluralOrSelectStyle()
Duniset.cpp58 constexpr int32_t MAX_LENGTH = UNICODESET_HIGH + 1; variable
1645 if (newCapacity > MAX_LENGTH) { in nextCapacity()
1646 newCapacity = MAX_LENGTH; in nextCapacity()
1653 if (newLen > MAX_LENGTH) { in ensureCapacity()
1654 newLen = MAX_LENGTH; in ensureCapacity()
1676 if (newLen > MAX_LENGTH) { in ensureBufferCapacity()
1677 newLen = MAX_LENGTH; in ensureBufferCapacity()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DUTF8.java149 static int MAX_LENGTH = 4; field in UTF8
/third_party/node/deps/npm/node_modules/safer-buffer/
Dsafer.js70 MAX_LENGTH: safer.kMaxLength property

12