Home
last modified time | relevance | path

Searched refs:BlockSize (Results 1 – 25 of 33) sorted by relevance

12

/external/opencv3/modules/cudaimgproc/test/
Dtest_corners.cpp54 IMPLEMENT_PARAM_CLASS(BlockSize, int);
58 PARAM_TEST_CASE(CornerHarris, cv::cuda::DeviceInfo, MatType, BorderType, BlockSize, ApertureSize) in PARAM_TEST_CASE() argument
100 testing::Values(BlockSize(3), BlockSize(5), BlockSize(7)),
106 PARAM_TEST_CASE(CornerMinEigen, cv::cuda::DeviceInfo, MatType, BorderType, BlockSize, ApertureSize) in PARAM_TEST_CASE() argument
146 testing::Values(BlockSize(3), BlockSize(5), BlockSize(7)),
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp186 static uint64_t bytesToBlocks(uint64_t NumBytes, uint64_t BlockSize) { in bytesToBlocks() argument
187 return RoundUpToAlignment(NumBytes, BlockSize) / BlockSize; in bytesToBlocks()
190 static uint64_t blockToOffset(uint64_t BlockNumber, uint64_t BlockSize) { in blockToOffset() argument
191 return BlockNumber * BlockSize; in blockToOffset()
200 outs() << "BlockSize: " << SB->BlockSize << '\n'; in dumpStructure()
209 if (SB->BlockSize % sizeof(support::ulittle32_t) != 0) in dumpStructure()
221 bytesToBlocks(SB->NumDirectoryBytes, SB->BlockSize); in dumpStructure()
229 if (NumDirectoryBlocks > SB->BlockSize / sizeof(support::ulittle32_t)) in dumpStructure()
234 uint64_t BlockMapOffset = (uint64_t)SB->BlockMapAddr * SB->BlockSize; in dumpStructure()
274 blockToOffset(DirectoryBlockAddr, SB->BlockSize); in dumpStructure()
[all …]
/external/boringssl/src/ssl/test/runner/
Dticket.go174 encrypted := make([]byte, aes.BlockSize+len(serialized)+sha256.Size)
175 iv := encrypted[:aes.BlockSize]
185 cipher.NewCTR(block, iv).XORKeyStream(encrypted[aes.BlockSize:], serialized)
195 if len(encrypted) < aes.BlockSize+sha256.Size {
199 iv := encrypted[:aes.BlockSize]
214 ciphertext := encrypted[aes.BlockSize : len(encrypted)-sha256.Size]
Dconn.go393 blockSize := c.BlockSize()
522 blockSize := c.BlockSize()
909 explicitIVLen = cbc.BlockSize()
Ddtls.go282 explicitIVLen = cbc.BlockSize()
/external/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp69 unsigned BlockSize = 0; in runOnMachineFunction() local
72 BlockSize += TII->GetInstSizeInBytes(MBBI); in runOnMachineFunction()
74 BlockSizes[MBB->getNumber()] = BlockSize; in runOnMachineFunction()
75 FuncSize += BlockSize; in runOnMachineFunction()
/external/boringssl/src/crypto/cipher/test/
Dmake_legacy_aead_tests.go208 iv := make([]byte, block.BlockSize())
218 sealed = make([]byte, 0, len(input)+len(digest)+cbc.BlockSize())
221 paddingLen := cbc.BlockSize() - (len(sealed) % cbc.BlockSize())
223 if paddingLen != cbc.BlockSize() {
230 paddingLen += cbc.BlockSize()
/external/ceres-solver/internal/ceres/
Dblock_structure.h48 typedef int32 BlockSize; typedef
54 BlockSize size;
/external/llvm/lib/Target/PowerPC/
DPPCBranchSelector.cpp104 unsigned BlockSize = 0; in runOnMachineFunction() local
107 BlockSize += TII->GetInstSizeInBytes(MBBI); in runOnMachineFunction()
109 BlockSizes[MBB->getNumber()] = BlockSize; in runOnMachineFunction()
110 FuncSize += BlockSize; in runOnMachineFunction()
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrixTriangular.h137 BlockSize = EIGEN_PLAIN_ENUM_MAX(mr,nr)
142 Matrix<ResScalar,BlockSize,BlockSize,ColMajor> buffer;
146 for (Index j=0; j<size; j+=BlockSize)
148 Index actualBlockSize = std::min<Index>(BlockSize,size - j);
160 …gebp_kernel(buffer.data(), BlockSize, blockA+depth*i, actual_b, actualBlockSize, depth, actualBloc…
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dnack_unittest.cc62 EXPECT_EQ(kPacketLength, header.BlockSize()); in TEST()
89 EXPECT_EQ(kWrapPacketLength, header.BlockSize()); in TEST()
143 EXPECT_EQ(length, header.BlockSize()); in TEST()
Dapp_unittest.cc38 EXPECT_EQ(header.BlockSize(), packet->Length()); in ParsePacket()
Dextended_jitter_report_unittest.cc33 EXPECT_EQ(header.BlockSize(), packet->Length()); in ParsePacket()
Dsli_unittest.cc49 EXPECT_EQ(length, header.BlockSize()); in ParseSli()
Dreceiver_report_unittest.cc47 EXPECT_EQ(header.BlockSize(), packet->Length()); in ParsePacket()
Dbye_unittest.cc39 EXPECT_EQ(header.BlockSize(), packet->Length()); in ParsePacket()
/external/llvm/test/DebugInfo/PDB/
Dpdbdump-headers.test3 ; CHECK: BlockSize: 4096
/external/lzma/CS/7zip/
DICoder.cs99 BlockSize, enumerator
/external/pdfium/third_party/lcms2-2.6/src/
Dcmserr.c379 chunk ->BlockSize = Initial; in _cmsCreateSubAllocChunk()
428 cmsUInt32Number Free = sub -> h ->BlockSize - sub -> h -> Used; in _cmsSubAlloc()
439 newSize = sub -> h ->BlockSize * 2; in _cmsSubAlloc()
Dcmscgats.c113 cmsUInt32Number BlockSize; member
1077 cmsUInt32Number Free = it8 ->Allocator.BlockSize - it8 ->Allocator.Used; in AllocChunk()
1084 if (it8 -> Allocator.BlockSize == 0) in AllocChunk()
1086 it8 -> Allocator.BlockSize = 20*1024; in AllocChunk()
1088 it8 ->Allocator.BlockSize *= 2; in AllocChunk()
1090 if (it8 ->Allocator.BlockSize < size) in AllocChunk()
1091 it8 ->Allocator.BlockSize = size; in AllocChunk()
1094 it8 ->Allocator.Block = (cmsUInt8Number*) AllocBigBlock(it8, it8 ->Allocator.BlockSize); in AllocChunk()
1298 it8->Allocator.BlockSize = 0; in cmsIT8Alloc()
/external/clang/lib/CodeGen/
DCGBlocks.h232 CharUnits BlockSize; variable
DCGBlocks.cpp99 blockInfo.BlockSize.getQuantity())); in buildBlockDescriptor()
302 info.BlockSize = 3 * CGM.getPointerSize() + 2 * CGM.getIntSize(); in initializeForBlockHeader()
454 info.BlockHeaderForcedGapOffset = info.BlockSize; in computeBlockInfo()
457 CharUnits &blockSize = info.BlockSize; in computeBlockInfo()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_utility.h325 uint32_t BlockSize() const { in BlockSize() function
Drtcp_utility.cc175 _ptrRTCPBlockEnd = _ptrRTCPData + header.BlockSize(); in IterateTopLevel()
1692 _ptrBlock += _header.BlockSize(); in Iterate()
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBTypes.h518 support::ulittle32_t BlockSize; member

12