Searched defs:BlockSize (Results 1 - 13 of 13) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dblock_structure.h48 typedef int32 BlockSize; typedef in namespace:ceres::internal
54 BlockSize size;
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_cache_perftest.cc142 int BlockSize() { function in namespace:__anon9141
242 EXPECT_TRUE(files.CreateBlock(disk_cache::RANKINGS, BlockSize(),
255 EXPECT_TRUE(files.CreateBlock(disk_cache::RANKINGS, BlockSize(),
H A Daddr.h111 int BlockSize() const { function in class:disk_cache::Addr
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp68 unsigned BlockSize = 0; local
71 BlockSize += TII->GetInstSizeInBytes(MBBI);
73 BlockSizes[MBB->getNumber()] = BlockSize;
74 FuncSize += BlockSize;
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp78 unsigned BlockSize = 0; local
81 BlockSize += TII->GetInstSizeInBytes(MBBI);
83 BlockSizes[MBB->getNumber()] = BlockSize;
84 FuncSize += BlockSize;
/external/lzma/CS/7zip/
H A DICoder.cs99 BlockSize, enumerator in enum:SevenZip.CoderPropID
/external/clang/lib/CodeGen/
H A DCGBlocks.h212 CharUnits BlockSize; member in class:clang::CodeGen::CGBlockInfo
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrixTriangular.h123 // - the current destination block is processed per panel of actual_mc x BlockSize
124 // where BlockSize is set to the minimal value allowing gebp to be as fast as possible
137 BlockSize = EIGEN_PLAIN_ENUM_MAX(mr,nr) enumerator in enum:Eigen::internal::tribb_kernel::__anon20767
142 Matrix<ResScalar,BlockSize,BlockSize,ColMajor> buffer;
144 // let's process the block per panel of actual_mc x BlockSize,
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, actualBlockSize, alpha,
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp68 /// BlockSize - This is the size in bytes of this memory block,
70 uintptr_t BlockSize : (sizeof(intptr_t)*CHAR_BIT - 2); member in struct:__anon25848::MemoryRangeHeader
78 const_cast<MemoryRangeHeader *>(this))+BlockSize);
119 void *EndOfBlock = (char*)this + BlockSize;
120 ((intptr_t *)EndOfBlock)[-1] = BlockSize;
184 BlockSize += FollowingFreeBlock.BlockSize;
195 PrevFreeBlock->GrowBlock(PrevFreeBlock->BlockSize + BlockSize);
216 assert(NewSize > BlockSize
434 uintptr_t BlockSize = FunctionEnd - (uint8_t *)CurBlock; variable
452 uintptr_t BlockSize = result + Size - (uint8_t *)CurBlock; variable
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dlcms2_internal.h367 cmsUInt32Number BlockSize; member in struct:_cmsSubAllocator_chunk_st
H A Dcmscgats.c113 cmsUInt32Number BlockSize; member in struct:_SubAllocator
1077 cmsUInt32Number Free = it8 ->Allocator.BlockSize - it8 ->Allocator.Used;
1084 if (it8 -> Allocator.BlockSize == 0)
1086 it8 -> Allocator.BlockSize = 20*1024;
1088 it8 ->Allocator.BlockSize *= 2;
1090 if (it8 ->Allocator.BlockSize < size)
1091 it8 ->Allocator.BlockSize = size;
1094 it8 ->Allocator.Block = (cmsUInt8Number*) AllocBigBlock(it8, it8 ->Allocator.BlockSize);
1298 it8->Allocator.BlockSize = 0;
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4338 static bool isREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) { argument
4339 assert((BlockSize == 16 || BlockSize == 32 || BlockSize == 64) &&
4350 BlockElts = BlockSize / EltSz;
4352 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4700 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) { argument
4701 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
4712 BlockElts = BlockSize / EltSz;
4714 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)

Completed in 3492 milliseconds