Home
last modified time | relevance | path

Searched refs:Len (Results 1 – 25 of 206) sorted by relevance

123456789

/third_party/openssl/test/ssl-tests/
D13-fragmentation.conf21 test-16 = 16-Maximum Fragment Len extension set to 1024 w. FragmentSize disabled
22 test-17 = 17-Maximum Fragment Len extension equal FragmentSize to 2048
23 test-18 = 18-Maximum Fragment Len extension 512 lower than FragmentSize 1024
24 test-19 = 19-Maximum Fragment Len extension 1024 lower than FragmentSize 1024
25 test-20 = 20-Maximum Fragment Len extension 4096 greater than FragmentSize 2048
26 test-21 = 21-Maximum Fragment Len extension 2048 greater than FragmentSize 1024
412 [16-Maximum Fragment Len extension set to 1024 w. FragmentSize disabled]
413 ssl_conf = 16-Maximum Fragment Len extension set to 1024 w. FragmentSize disabled-ssl
415 [16-Maximum Fragment Len extension set to 1024 w. FragmentSize disabled-ssl]
416 server = 16-Maximum Fragment Len extension set to 1024 w. FragmentSize disabled-server
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_asn1write.data52 ASN.1 Write / Read Length #0 (Len = 0, short form)
55 ASN.1 Write / Read Length #1 (Len = 127, short form)
58 ASN.1 Write / Read Length #2 (Len = 127, buffer too small)
61 ASN.1 Write / Read Length #3 (Len = 128, long form)
64 ASN.1 Write / Read Length #4 (Len = 255, long form)
67 ASN.1 Write / Read Length #5 (Len = 255, buffer too small)
70 ASN.1 Write / Read Length #6 (Len = 258, byte order)
73 ASN.1 Write / Read Length #7 (Len = 65535, long form)
76 ASN.1 Write / Read Length #8 (Len = 65535, buffer too small)
79 ASN.1 Write / Read Length #9 (Len = 66051, byte order)
[all …]
/third_party/json/test/thirdparty/Fuzzer/test/
DStrcmpTest.cpp13 size_t Len = strlen(Str); in Eq() local
14 if (Size < Len) return false; in Eq()
15 if (Len >= sizeof(Buff)) return false; in Eq()
16 memcpy(Buff, (char*)Data, Len); in Eq()
17 Buff[Len] = 0; in Eq()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolData.cpp22 auto Len = RawSymbol->getLength(); in getLineNumbers() local
23 Len = Len ? Len : 1; in getLineNumbers()
25 return Session.findLineNumbersByRVA(RVA, Len); in getLineNumbers()
29 Section, RawSymbol->getAddressOffset(), Len); in getLineNumbers()
/third_party/giflib/
Dgiftext.c39 static void PrintPixelBlock(GifByteType *PixelBlock, int Len, bool Reset);
48 int i, j, ExtCode, ErrorCode, CodeSize, NumFiles, Len, ImageNum = 1; in main() local
114 Len = GifFile->SColorMap->ColorCount; in main()
117 for (i = 0; i < Len; i+=4) { in main()
118 for (j = 0; j < 4 && j < Len; j++) { in main()
159 Len = 1 << GifFile->Image.ColorMap->BitsPerPixel; in main()
160 for (i = 0; i < Len; i+=4) { in main()
161 for (j = 0; j < 4 && j < Len; j++) { in main()
319 int i, Len; in PrintCodeBlock() local
346 Len = CodeBlock[0]; in PrintCodeBlock()
[all …]
/third_party/mingw-w64/mingw-w64-headers/include/
Daf_irda.h142 u_short Len; member
146 u_char Len; member
161 u_long Len; member
165 u_long Len; member
179 int Len; member
184 int Len; member
200 int Len; member
205 int Len; member
Drtmv2.h45 #define RTM_IPV4_MAKE_NET_ADDRESS(NetAddress,Addr,Len) RTM_IPV4_SET_ADDR_AND_LEN(NetAddress,Addr,Le… argument
47 #define RTM_CHECK_NTH_BIT(Value,N,Len) if ((Value) & (1 << (N))) { (Len) += (N); (Value) <<= (N); } argument
48Len,Mask) { ULONG _Temp_ = ntohl(Mask); (Len) = 0; RTM_CHECK_NTH_BIT(_Temp_,16,(Len)); RTM_CHECK_N… argument
49 #define RTM_IPV4_MASK_FROM_LEN(Len) ((Len) ? htonl(~0 << (32 - (Len))): 0); argument
51 …V4_SET_ADDR_AND_LEN(NetAddress,Addr,Len) (NetAddress)->AddressFamily = AF_INET; (NetAddress)->NumB… argument
52 #define RTM_IPV4_GET_ADDR_AND_LEN(Addr,Len,NetAddress) (Len) = (NetAddress)->NumBits; (Addr) = (*(U… argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Utils/
DX86ShuffleDecode.cpp46 void DecodeInsertElementMask(unsigned NumElts, unsigned Idx, unsigned Len, in DecodeInsertElementMask() argument
48 assert((Idx + Len) <= NumElts && "Insertion out of range"); in DecodeInsertElementMask()
52 for (unsigned i = 0; i != Len; ++i) in DecodeInsertElementMask()
415 void DecodeEXTRQIMask(unsigned NumElts, unsigned EltSize, int Len, int Idx, in DecodeEXTRQIMask() argument
420 Len &= 0x3F; in DecodeEXTRQIMask()
425 if (0 != (Len % EltSize) || 0 != (Idx % EltSize)) in DecodeEXTRQIMask()
429 if (Len == 0) in DecodeEXTRQIMask()
430 Len = 64; in DecodeEXTRQIMask()
433 if ((Len + Idx) > 64) { in DecodeEXTRQIMask()
439 Len /= EltSize; in DecodeEXTRQIMask()
[all …]
/third_party/boost/boost/metaparse/v1/cpp11/impl/
Dstring_at.hpp19 template <int MaxLen, int Len, class T>
20 constexpr T string_at(const T (&s)[Len], int n) in string_at() argument
24 static_assert(Len <= MaxLen + 1, "String literal is too long."); in string_at()
25 return n >= Len - 1 ? T() : s[n]; in string_at()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeHeader.cpp62 : ID(kInvalid), FType(kBufferType), Len(0), Data(0) {} in NaClBitcodeHeaderField()
65 : ID(MyID), FType(kFlagType), Len(0), Data(0) { in NaClBitcodeHeaderField()
70 : ID(MyID), FType(kUInt32Type), Len(4), Data(new uint8_t[4]) { in NaClBitcodeHeaderField()
88 : ID(MyID), FType(kBufferType), Len(MyLen), Data(new uint8_t[MyLen]) { in NaClBitcodeHeaderField()
96 size_t FieldsLen = kTagLenSize + Len; in Write()
101 Len > std::numeric_limits<FixedSubfield>::max()) in Write()
105 WriteFixedSubfield(static_cast<FixedSubfield>(Len), in Write()
107 memcpy(Buf + kTagLenSize, Data, Len); in Write()
125 if (Len != Length) { in Read()
131 Len = Length; in Read()
[all …]
/third_party/boost/boost/move/detail/
Dtype_traits.hpp970 template<std::size_t Len, std::size_t Align>
974 template<std::size_t Len>\
975 struct BOOST_ALIGNMENT(A) aligned_struct<Len, A>\
977 unsigned char data[Len];\
1000 template<std::size_t Len, std::size_t Align>
1003 aligned_struct<Len, Align> aligner;
1004 unsigned char data[sizeof(aligned_struct<Len, Align>)];
1007 template<std::size_t Len, std::size_t Align>
1010 typedef aligned_struct_wrapper<Len, Align> type;
1015 template<class T, std::size_t Len>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DNativeFormatting.cpp59 size_t Len = 0; in write_unsigned_impl() local
60 Len = format_to_buffer(N, NumberBuffer); in write_unsigned_impl()
65 if (Len < MinDigits && Style != IntegerStyle::Number) { in write_unsigned_impl()
66 for (size_t I = Len; I < MinDigits; ++I) in write_unsigned_impl()
71 writeWithCommas(S, ArrayRef<char>(std::end(NumberBuffer) - Len, Len)); in write_unsigned_impl()
73 S.write(std::end(NumberBuffer) - Len, Len); in write_unsigned_impl()
244 unsigned Len; in write_double() local
245 Len = format(Spec.c_str(), N).snprint(Buf, sizeof(Buf)); in write_double()
247 ++Len; in write_double()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineOutliner.h43 unsigned Len = 0; member
88 unsigned getLength() const { return Len; } in getLength()
94 unsigned getEndIdx() const { return StartIdx + Len - 1; } in getEndIdx()
120 Candidate(unsigned StartIdx, unsigned Len, in Candidate()
124 : StartIdx(StartIdx), Len(Len), FirstInst(FirstInst), LastInst(LastInst), in Candidate()
/third_party/boost/boost/beast/core/detail/
Dtype_traits.hpp60 template<std::size_t Len, class... Ts>
68 (Len > max_sizeof<Ts...>()) ? Len : (max_sizeof<Ts...>()),
72 template<std::size_t Len, class... Ts>
74 typename aligned_union<Len, Ts...>::type;
/third_party/boost/libs/metaparse/example/constexpr_parser/
Dmain.cpp102 template <class T, int Len>
106 const_list<T, Len - 1> tail;
108 constexpr const_list(const T& h, const const_list<T, Len - 1>& t) : in const_list()
113 constexpr const_list<T, Len + 1> push_front(const T& t) const in push_front()
115 return const_list<T, Len + 1>(t, *this); in push_front()
223 template <class ValueType, class L, int Len>
226 constexpr static const_list<ValueType, Len> run() in run()
229 const_list<ValueType, Len>( in run()
234 Len - 1 in run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTrigramIndex.cpp37 unsigned Len = 0; in insert() local
53 Len = 0; in insert()
64 Len++; in insert()
65 if (Len < 3) in insert()
DValgrind.cpp38 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { in ValgrindDiscardTranslations() argument
42 VALGRIND_DISCARD_TRANSLATIONS(Addr, Len); in ValgrindDiscardTranslations()
51 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) { in ValgrindDiscardTranslations() argument
/third_party/uboot/u-boot-2020.01/lib/zlib/
Dtrees.c168 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
174 send_bits(s, tree[c].Code, tree[c].Len); }
298 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
300 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
301 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
310 static_dtree[n].Len = 5; in tr_static_init()
345 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
351 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
516 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/libwebsockets/win32port/zlib/
Dtrees.c168 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
174 send_bits(s, tree[c].Code, tree[c].Len); }
298 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
299 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
300 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
301 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
310 static_dtree[n].Len = 5; in tr_static_init()
345 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
351 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
516 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/skia/third_party/externals/zlib/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/zlib/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/flutter/skia/third_party/externals/zlib/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]
/third_party/node/deps/zlib/
Dtrees.c161 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
167 send_bits(s, tree[c].Code, tree[c].Len); }
291 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
292 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++; in tr_static_init()
293 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++; in tr_static_init()
294 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++; in tr_static_init()
303 static_dtree[n].Len = 5; in tr_static_init()
338 static_ltree[i].Len, SEPARATOR(i, L_CODES+1, 5)); in gen_trees_header()
344 static_dtree[i].Len, SEPARATOR(i, D_CODES-1, 5)); in gen_trees_header()
508 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
[all …]

123456789