Home
last modified time | relevance | path

Searched refs:HdrSize (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/move/test/
Dinplace_merge_test.cpp55 const std::size_t HdrSize = BlockSize + KeySize; in alternating_test() local
56 const std::size_t ArraySize = HdrSize + DataSize; in alternating_test()
77 testarray[HdrSize+szt_k].key = (szt_k/2)*2; in alternating_test()
78 testarray[HdrSize+szt_k].val = szt_k & 1; in alternating_test()
84 testarray[HdrSize+szt_k].key = (szt_k/2)*2; in alternating_test()
85 testarray[HdrSize+szt_k].val = szt_k & 1; in alternating_test()
93 testarray[HdrSize+szt_k].key = (szt_l/2)*2+1; in alternating_test()
94 testarray[HdrSize+szt_k].val = szt_l & 1; in alternating_test()
100 testarray[HdrSize+szt_k].key = (szt_l/2)*2+1; in alternating_test()
101 testarray[HdrSize+szt_k].val = szt_l & 1; in alternating_test()
[all …]
/third_party/boost/boost/container/detail/
Dadaptive_node_pool_impl.hpp456 static const size_type HdrSize = ((sizeof(block_info_t)-1)/MaxAlign+1)*MaxAlign; member in boost::container::dtl::private_adaptive_node_pool_impl_common
666 mem_address += HdrSize; in priv_append_from_new_blocks()
690 …const size_type hdr_subblock_elements = (real_block_alignment - HdrSize - PayloadPerAllocation)/re… in priv_append_from_new_blocks()
720 … (chain, target_elem_in_chain, c_info, hdr_addr + HdrSize, hdr_subblock_elements, real_node_size); in priv_append_from_new_blocks()
974 , std::size_t HdrSize
983 …static const std::size_t alignment = upper_power_of_2_ct<SizeType, HdrSize + RealNodeSize*Node…
985 …static const std::size_t real_num_node = (alignment - PayloadPerAllocation - HdrSize)/RealNodeSize;
989 , std::size_t HdrSize
997 , HdrSize
1006 < upper_power_of_2_ct<SizeType, HdrSize + PayloadPerAllocation + RealNodeSize>::value
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DDecompressor.cpp54 uint64_t HdrSize = Is64Bit ? sizeof(Elf64_Chdr) : sizeof(Elf32_Chdr); in consumeCompressedZLibHeader() local
55 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader()
71 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DELFObjectWriter.cpp813 uint64_t HdrSize = in maybeWriteCompression() local
815 if (Size <= HdrSize + CompressedContents.size()) in maybeWriteCompression()