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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/BlocksRuntime/
macro.c 8 #include <Block.h>
  /external/skia/src/core/
SkVarAlloc.cpp 10 struct SkVarAlloc::Block {
11 Block* prev;
14 static Block* Alloc(Block* prev, size_t size) {
15 SkASSERT(size >= sizeof(Block));
16 Block* b = (Block*)sk_malloc_throw(size);
37 Block* b = fBlock;
39 Block* prev = b->prev;
49 while (alloc < bytes + sizeof(Block)) {
    [all...]
SkChunkAlloc.cpp 20 struct SkChunkAlloc::Block {
21 Block* fNext;
42 static void FreeChain(Block* block) {
43 while (block) {
44 Block* next = block->fNext;
45 sk_free(block);
46 block = next;
77 Block::FreeChain(fBlock)
124 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size, local
143 Block* block = this->newBlock(bytes, ftype); local
165 Block* block = this->addBlockIfNecessary(bytes, ftype); local
183 Block* block = fBlock; local
199 const Block* block = fBlock; local
    [all...]
SkVarAlloc.h 15 // Smallest block we'll allocate is 2**N bytes.
50 struct Block;
51 Block* fBlock;
  /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/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/llvm/lib/Target/WebAssembly/
Relooper.h 34 struct Block;
38 /// Info about a branching from one block to another
53 // of getting to the target block. We break or continue on it
71 typedef SetVector<Block *> BlockSet;
72 typedef MapVector<Block *, Branch *> BlockBranchMap;
73 typedef MapVector<Block *, std::unique_ptr<Branch>> OwningBlockBranchMap;
76 /// Represents a basic block of code - some instructions that end with a
79 struct Block {
91 // uniquely identifies a *logical* block - if we split it, the two
93 const char *Code; // The string representation of the code in this block
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/block/
block.hpp 56 struct Block
77 uint STRIDE = Block::blockSize();
78 It t = beg + Block::threadLineId();
87 uint STRIDE = Block::blockSize();
88 uint tid = Block::threadLineId();
98 uint STRIDE = Block::blockSize();
99 InIt t = beg + Block::threadLineId();
109 uint STRIDE = Block::blockSize();
110 InIt t = beg + Block::threadLineId();
120 uint STRIDE = Block::blockSize()
    [all...]
  /external/skia/include/core/
SkChunkAlloc.h 42 success, the number of bytes freed is returned, or 0 if the block could
62 struct Block;
64 Block* fBlock;
72 Block* newBlock(size_t bytes, AllocFailType ftype);
73 Block* addBlockIfNecessary(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/valgrind/helgrind/
hg_addrdescr.c 52 /* hctxt/tnr/haddr/hszB describe the addr if it is a heap block. */
58 /* First, see if it's in any heap block. Unfortunately this
60 assertion says that if it's detected as a heap block, then we
74 ai->Addr.Block.block_kind = Block_Mallocd;
75 ai->Addr.Block.block_desc = "block";
76 ai->Addr.Block.block_szB = hszB;
77 ai->Addr.Block.rwoffset = (Word)(a) - (Word)(haddr);
78 ai->Addr.Block.allocated_at = hctxt;
79 VG_(initThreadInfo) (&ai->Addr.Block.alloc_tinfo)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 50 std::pair<llvm::NoneType, 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/valgrind/none/tests/amd64/
movbe.c 13 typedef struct { UChar cs[40]; } Block;
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \
  /external/valgrind/none/tests/x86/
movbe.c 13 typedef struct { UChar cs[40]; } Block;
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign32(sizeof(Block)); \

Completed in 767 milliseconds

1 2 3 4 5 6 7 8 91011>>