Searched refs:Block (Results 1 - 25 of 274) sorted by relevance

1234567891011

/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.h17 class Block { class in namespace:leveldb
20 explicit Block(const BlockContents& contents);
22 ~Block();
33 bool owned_; // Block owns data_[]
36 Block(const Block&);
37 void operator=(const Block&);
/external/compiler-rt/BlocksRuntime/tests/
H A Dmacro.c8 #include <Block.h>
/external/eigen/Eigen/src/Eigen2Support/
H A DBlock.h30 * \sa class Block, block(Index,Index,Index,Index)
33 inline Block<Derived> DenseBase<Derived>
41 return Block<Derived>(derived(), 0, 0, cRows, cCols);
43 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
45 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols);
47 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
53 inline const Block<Derived>
61 return Block<Derived>(derived(), 0, 0, cRows, cCols);
63 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
65 return Block<Derive
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_structure.h31 // Block structure objects are used to carry information about the
52 struct Block { struct in namespace:ceres::internal
53 Block() : size(-1), position(-1) {} function in struct:ceres::internal::Block
54 Block(int size_, int position_) : size(size_), position(position_) {} function in struct:ceres::internal::Block
75 Block block;
83 vector<Block> cols;
88 vector<Block> rows;
/external/eigen/doc/examples/
H A Dclass_Block.cpp7 Eigen::Block<Derived>
10 return Eigen::Block<Derived>(m.derived(), 0, 0, rows, cols);
14 const Eigen::Block<const Derived>
17 return Eigen::Block<const Derived>(m.derived(), 0, 0, rows, cols);
H A Dclass_FixedBlock.cpp7 Eigen::Block<Derived, 2, 2>
10 return Eigen::Block<Derived, 2, 2>(m.derived(), 0, 0);
14 const Eigen::Block<const Derived, 2, 2>
17 return Eigen::Block<const Derived, 2, 2>(m.derived(), 0, 0);
/external/eigen/failtest/
H A Dblock_nonconst_ctor_on_const_xpr_0.cpp12 Block<Matrix3d,3,3> b(m,0,0);
H A Dblock_nonconst_ctor_on_const_xpr_1.cpp12 Block<Matrix3d> b(m,0,0,3,3);
H A Dblock_nonconst_ctor_on_const_xpr_2.cpp13 Block<Matrix3d,3,1> b(m,0);
H A Dblock_on_const_type_actually_const_0.cpp13 Block<CV_QUALIFIER Matrix3f>(m, 0, 0, 3, 3).coeffRef(0, 0) = 1.0f;
H A Dblock_on_const_type_actually_const_1.cpp13 Block<CV_QUALIFIER MatrixXf, 3, 3>(m, 0, 0).coeffRef(0, 0) = 1.0f;
H A Dconst_qualified_block_method_retval_0.cpp12 Block<Matrix3d,3,3> b(m.block<3,3>(0,0));
H A Dconst_qualified_block_method_retval_1.cpp12 Block<Matrix3d> b(m.block(0,0,3,3));
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAllocPool.cpp15 struct GrAllocPool::Block { struct in class:GrAllocPool
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size);
26 block->fPtr = (char*)block + sizeof(Block);
70 Block* block = fBlock;
72 Block* nex
[all...]
H A DGrAllocPool.h39 struct Block;
41 Block* fBlock;
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h17 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ColXpr;
18 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ConstColXpr;
20 typedef Block<Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowXpr;
21 typedef const Block<const Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowXpr;
23 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ColsBlockXpr;
24 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ConstColsBlockXpr;
26 typedef Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr;
27 typedef const Block<const Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXpr;
29 template<int N> struct NColsBlockXpr { typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, N, !IsRowMajor> Type; };
30 template<int N> struct ConstNColsBlockXpr { typedef const Block<cons
[all...]
/external/skia/src/gpu/
H A DGrAllocPool.cpp15 struct GrAllocPool::Block { struct in class:GrAllocPool
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size);
26 block->fPtr = (char*)block + sizeof(Block);
70 Block* block = fBlock;
72 Block* nex
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
21 Block* fNext;
30 static void FreeChain(Block* block) {
32 Block* next = block->fNext;
64 Block::FreeChain(fBlock);
72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size,
99 Block* bloc
[all...]
/external/skia/src/core/
H A DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
21 Block* fNext;
30 static void FreeChain(Block* block) {
32 Block* next = block->fNext;
64 Block::FreeChain(fBlock);
72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size,
99 Block* bloc
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkDeque.h62 struct Block;
84 SkDeque::Block* fCurBlock;
121 Block* fFrontBlock;
122 Block* fBackBlock;
128 Block* allocateBlock(int allocCount);
129 void freeBlock(Block* block);
H A DSkChunkAlloc.h56 struct Block;
58 Block* fBlock;
65 Block* newBlock(size_t bytes, AllocFailType ftype);
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { argument
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (Block == 0)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
/external/skia/include/core/
H A DSkDeque.h62 struct Block;
84 SkDeque::Block* fCurBlock;
121 Block* fFrontBlock;
122 Block* fBackBlock;
128 Block* allocateBlock(int allocCount);
129 void freeBlock(Block* block);
H A DSkChunkAlloc.h56 struct Block;
58 Block* fBlock;
65 Block* newBlock(size_t bytes, AllocFailType ftype);
/external/valgrind/main/none/tests/amd64/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon27765
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign(32, sizeof(Block)); \

Completed in 1139 milliseconds

1234567891011