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

1234567891011>>

/external/compiler-rt/test/BlocksRuntime/
H A Dmacro.c8 #include <Block.h>
/external/skia/src/core/
H A DSkVarAlloc.cpp17 struct SkVarAlloc::Block { struct in class:SkVarAlloc
18 Block* prev;
21 static Block* Alloc(Block* prev, size_t size, unsigned flags) {
22 SkASSERT(size >= sizeof(Block));
23 Block* b = (Block*)sk_malloc_flags(size, flags);
44 Block* b = fBlock;
46 Block* prev = b->prev;
56 while (alloc < bytes + sizeof(Block)) {
[all...]
H A DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
21 Block* fNext;
42 static void FreeChain(Block* block) {
44 Block* next = block->fNext;
77 Block::FreeChain(fBlock);
89 Block* largest = fBlock;
92 Block* next;
93 for (Block* cur = largest->fNext; cur; cur = next) {
118 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
124 Block* bloc
[all...]
/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/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/skia/include/core/
H A DSkChunkAlloc.h62 struct Block;
64 Block* fBlock;
72 Block* newBlock(size_t bytes, AllocFailType ftype);
73 Block* addBlockIfNecessary(size_t bytes, AllocFailType ftype);
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);
/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/valgrind/helgrind/
H A Dhg_addrdescr.c74 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);
80 ai->Addr.Block.alloc_tinfo.tnr = tnr;
81 ai->Addr.Block.freed_at = VG_(null_ExeContext)();;
/external/valgrind/none/tests/amd64/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon16629
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)); \
/external/valgrind/none/tests/x86/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon16780
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)); \
/external/lldb/source/Symbol/
H A DBlock.cpp1 //===-- Block.cpp -----------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Block.h"
25 Block::Block(lldb::user_id_t uid) : function in class:Block
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" << ((cons
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { argument
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) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
/external/clang/test/Index/
H A Dcomment-c-decls.c97 int (^Block) (int i, int j);
98 // CHECK: <Declaration>int (^Block)(int, int)</Declaration>

Completed in 542 milliseconds

1234567891011>>