Searched refs:Block (Results 1 - 25 of 328) 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/test/BlocksRuntime/
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
50 struct Block { struct in namespace:ceres::internal
51 Block() : size(-1), position(-1) {} function in struct:ceres::internal::Block
52 Block(int size_, int position_) : size(size_), position(position_) {} function in struct:ceres::internal::Block
73 Block block;
81 vector<Block> cols;
86 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/lldb/include/lldb/Symbol/
H A DBlock.h1 //===-- Block.h -------------------------------------------------*- C++ -*-===//
24 /// @class Block Block.h "lldb/Symbol/Block.h"
28 /// Block objects. The BlockList object contains a section offset
29 /// address range, and Block objects contain one or more ranges
41 class Block : class in namespace:lldb_private
73 Block (lldb::user_id_t uid);
78 virtual ~Block ();
124 virtual Block *
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.h59 class Block;
61 void invokeOldestCallbacks(Block*, Block*, Visitor*);
65 Block* m_first;
66 Block* m_last;
H A DCallbackStack.cpp12 class CallbackStack::Block { class in class:blink::CallbackStack
14 explicit Block(Block* next) function in class:blink::CallbackStack::Block
22 ~Block()
34 Block* next() const { return m_next; }
35 void setNext(Block* next) { m_next = next; }
112 Block* m_next;
115 CallbackStack::CallbackStack() : m_first(new Block(0)), m_last(m_first)
129 Block* next;
130 for (Block* curren
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkTObjectPool.h86 struct Block { struct in class:SkTObjectPool
88 SK_DECLARE_INTERNAL_SLIST_INTERFACE(Block);
90 SkTInternalSList<Block> fBlocks;
100 Block* block = SkNEW(Block);
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 DSkTObjectPool.h86 struct Block { struct in class:SkTObjectPool
88 SK_DECLARE_INTERNAL_SLIST_INTERFACE(Block);
90 SkTInternalSList<Block> fBlocks;
100 Block* block = SkNEW(Block);
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/src/gpu/
H A DGrAllocPool.cpp14 struct GrAllocPool::Block { struct in class:GrAllocPool
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
25 block->fPtr = (char*)block + sizeof(Block);
69 Block* block = fBlock;
71 Block* nex
[all...]
/external/skia/src/gpu/
H A DGrAllocPool.cpp14 struct GrAllocPool::Block { struct in class:GrAllocPool
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
25 block->fPtr = (char*)block + sizeof(Block);
69 Block* block = fBlock;
71 Block* nex
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h15 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ColXpr;
16 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor> ConstColXpr;
18 typedef Block<Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowXpr;
19 typedef const Block<const Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowXpr;
21 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ColsBlockXpr;
22 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ConstColsBlockXpr;
24 typedef Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr;
25 typedef const Block<const Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXpr;
27 template<int N> struct NColsBlockXpr { typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, N, !IsRowMajor> Type; };
28 template<int N> struct ConstNColsBlockXpr { typedef const Block<cons
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DBlock.java20 public class Block class
26 public Block(CodeEmitter e) { method in class:Block
/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);

Completed in 284 milliseconds

1234567891011>>