HomeSort by relevance Sort by last modified time
    Searched refs:Block (Results 1 - 25 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/leveldatabase/src/table/
block.h 17 class Block {
19 // Initialize the block with the specified contents.
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/
macro.c 8 #include <Block.h>
  /external/eigen/Eigen/src/Eigen2Support/
Block.h 30 * \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)
    [all...]
  /external/ceres-solver/internal/ceres/
block_structure.h 31 // Block structure objects are used to carry information about the
32 // dense block structure of sparse matrices. The BlockSparseMatrix
35 // friendly block oriented linear algebra operations on the matrix
50 struct Block {
51 Block() : size(-1), position(-1) {}
52 Block(int size_, int position_) : size(size_), position(position_) {}
63 // Column or row block id as the case maybe.
73 Block block; member in struct:ceres::internal::CompressedList
81 vector<Block> cols
    [all...]
  /external/eigen/doc/examples/
class_Block.cpp 7 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);
class_FixedBlock.cpp 7 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/
block_nonconst_ctor_on_const_xpr_0.cpp 12 Block<Matrix3d,3,3> b(m,0,0);
block_nonconst_ctor_on_const_xpr_1.cpp 12 Block<Matrix3d> b(m,0,0,3,3);
block_nonconst_ctor_on_const_xpr_2.cpp 13 Block<Matrix3d,3,1> b(m,0);
block_on_const_type_actually_const_0.cpp 13 Block<CV_QUALIFIER Matrix3f>(m, 0, 0, 3, 3).coeffRef(0, 0) = 1.0f;
block_on_const_type_actually_const_1.cpp 13 Block<CV_QUALIFIER MatrixXf, 3, 3>(m, 0, 0).coeffRef(0, 0) = 1.0f;
const_qualified_block_method_retval_0.cpp 12 Block<Matrix3d,3,3> b(m.block<3,3>(0,0));
const_qualified_block_method_retval_1.cpp 12 Block<Matrix3d> b(m.block(0,0,3,3));
  /external/lldb/include/lldb/Symbol/
Block.h 1 //===-- Block.h -------------------------------------------------*- C++ -*-===//
24 /// @class Block Block.h "lldb/Symbol/Block.h"
25 /// @brief A class that describes a single lexical block.
28 /// Block objects. The BlockList object contains a section offset
29 /// address range, and Block objects contain one or more ranges
31 /// ranges within the BlockList adress range, and each block can
34 /// Each block has a variable list that represents local, argument, and
35 /// static variables that are scoped to the block
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
CallbackStack.h 59 class Block;
61 void invokeOldestCallbacks(Block*, Block*, Visitor*);
65 Block* m_first;
66 Block* m_last;
CallbackStack.cpp 12 class CallbackStack::Block {
14 explicit Block(Block* next)
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* current = m_first->next(); current; current = next)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTObjectPool.h 84 * The type for a new block of entries for the list.
86 struct Block {
88 SK_DECLARE_INTERNAL_SLIST_INTERFACE(Block);
90 SkTInternalSList<Block> fBlocks;
95 * a new block of them.
100 Block* block = SkNEW(Block); local
101 fBlocks.push(block);
103 fAvailable.push(&block->entries[index])
    [all...]
SkChunkAlloc.cpp 20 struct SkChunkAlloc::Block {
21 Block* fNext;
30 static void FreeChain(Block* block) {
31 while (block) {
32 Block* next = block->fNext;
33 sk_free(block);
34 block = next;
64 Block::FreeChain(fBlock)
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size, local
99 Block* block = fBlock; local
120 Block* block = fBlock; local
134 const Block* block = fBlock; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocPool.cpp 14 struct GrAllocPool::Block {
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
24 block->fNext = next;
25 block->fPtr = (char*)block + sizeof(Block)
69 Block* block = fBlock; local
107 Block* block = fBlock; local
    [all...]
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 15 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;
20 /** \internal expression type of a block of whole columns */
21 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ColsBlockXpr;
22 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, Dynamic, !IsRowMajor> ConstColsBlockXpr;
23 /** \internal expression type of a block of whole rows */
24 typedef Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr;
25 typedef const Block<const Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXp (…)
56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) function
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const function
680 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) function
687 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const function
712 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, function
720 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, function
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkChunkAlloc.h 37 success, the number of bytes freed is returned, or 0 if the block could
56 struct Block;
58 Block* fBlock;
65 Block* newBlock(size_t bytes, AllocFailType ftype);
SkDeque.h 19 * beginning/end of the list as necessary while each block tracks the used
22 * empty block from the beginning/end of the list (Presumably so push/pop pairs
23 * on the block boundaries don't cause thrashing). This can result in the first/
24 * last element not residing in the first/last block.
30 * allocCount specifies how many elements are to be allocated as a block
62 struct Block;
84 SkDeque::Block* fCurBlock;
121 Block* fFrontBlock;
122 Block* fBackBlock;
126 int fAllocCount; // number of elements to allocate per block
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Block.java 20 public class Block
26 public Block(CodeEmitter e) {
  /external/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 50 bool insert(const CFGBlock *Block) {
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (!Block)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) {
67 return VisitedBlockIDs.test(Block->getBlockID());
  /external/lldb/source/Symbol/
Block.cpp 1 //===-- Block.cpp -----------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Block.h"
25 Block::Block(lldb::user_id_t uid) :
38 Block::~Block ()
43 Block::GetDescription(Stream *s, Function *function, lldb::DescriptionLevel level, Target *target) const
73 Block::Dump(Stream *s, addr_t base_addr, int32_t depth, bool show_context) const
77 Block *parent = GetParent();
88 *s << "Block" << ((const UserID&)*this)
    [all...]

Completed in 3672 milliseconds

1 2 3 4 5 6 7 8 91011>>