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

1234567891011>>

/external/tensorflow/tensorflow/core/lib/io/
H A Dblock.h28 class Block { class in namespace:tensorflow::table
31 explicit Block(const BlockContents& contents);
33 ~Block();
44 bool owned_; // Block owns data_[]
47 Block(const Block&);
48 void operator=(const Block&);
/external/compiler-rt/test/BlocksRuntime/
H A Dmacro.c8 #include <Block.h>
H A Dbyrefcopy.c15 #include <Block.h>
H A Dbyrefcopyinner.c7 #include <Block.h>
H A Dbyrefcopystack.c17 #include <Block.h>
/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/deqp/framework/delibs/decpp/
H A DdeAppendList.hpp68 struct Block struct in class:de::AppendList
72 Block* volatile next;
74 Block (size_t blockNdx_, size_t size) function in struct:de::AppendList::Block
82 ~Block (void)
90 Block* m_first;
91 Block* volatile m_last;
98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_)
148 Block* m_curBlock;
167 , m_first (new Block(0, blockSize))
176 Block* curBloc
[all...]
/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/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);
/external/skqp/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);
/external/valgrind/none/tests/amd64/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon29673
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/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon29829
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/protobuf/src/google/protobuf/
H A Darena.cc66 GOOGLE_CHECK_GE(options_.initial_block_size, sizeof(Block))
70 Block* first_block = reinterpret_cast<Block*>(options_.initial_block);
118 Arena::Block* Arena::NewBlock(void* me, Block* my_last_block, size_t n,
133 Block* b = reinterpret_cast<Block*>(options_.block_alloc(size));
151 void Arena::AddBlock(Block* b) {
156 void Arena::AddBlockInternal(Block* b) {
157 b->next = reinterpret_cast<Block*>(googl
[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>
H A Dformat-comment-cdecls.c92 int (^Block) (int i, int j);
93 // CHECK: <Declaration>int (^Block)(int, int)</Declaration>
/external/clang/test/PCH/
H A Dtypes.h16 typedef int (^Block)(int, float);

Completed in 478 milliseconds

1234567891011>>