Home
last modified time | relevance | path

Searched defs:Block (Results 1 – 25 of 117) sorted by relevance

12345

/external/ceres-solver/internal/ceres/
Dblock_structure.h50 struct Block { struct
51 Block() : size(-1), position(-1) {} in Block() function
52 Block(int size_, int position_) : size(size_), position(position_) {} in Block() function
54 BlockSize size; argument
73 Block block; argument
/external/skia/src/core/
DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in SkChunkAlloc
21 Block* fNext;
22 size_t fFreeSize;
23 char* fFreePtr;
26 size_t blockSize() { in blockSize()
32 void reset() { in reset()
38 char* startOfData() { in startOfData()
42 static void FreeChain(Block* block) { in FreeChain()
50 bool contains(const void* addr) const { in contains()
DSkDeque.cpp12 struct SkDeque::Block { struct in SkDeque
13 Block* fNext;
14 Block* fPrev;
15 char* fBegin; // start of used section in this chunk
16 char* fEnd; // end of used section in this chunk
17 char* fStop; // end of the allocated chunk
19 char* start() { return (char*)(this + 1); } in start()
20 const char* start() const { return (const char*)(this + 1); } in start()
22 void init(size_t size) { in init()
DSkVarAlloc.cpp10 struct SkVarAlloc::Block { struct in SkVarAlloc
11 Block* prev;
12 char* data() { return (char*)(this + 1); } in data()
14 static Block* Alloc(Block* prev, size_t size) { in Alloc()
DSkStream.cpp495 struct SkDynamicMemoryWStream::Block { struct in SkDynamicMemoryWStream
496 Block* fNext;
497 char* fCurr;
498 char* fStop;
500 const char* start() const { return (const char*)(this + 1); } in start()
501 char* start() { return (char*)(this + 1); } in start()
502 size_t avail() const { return fStop - fCurr; } in avail()
503 size_t written() const { return fCurr - this->start(); } in written()
505 void init(size_t size) in init()
512 const void* append(const void* data, size_t size) in append()
DSkTLList.h221 struct Block { struct
235 Block* block = reinterpret_cast<Block*>(sk_malloc_throw(sizeof(Block))); in createNode() argument
/external/llvm/lib/Target/WebAssembly/
DRelooper.h79 struct Block { struct
85 OwningBlockBranchMap BranchesOut; argument
86 BlockSet BranchesIn; argument
87 OwningBlockBranchMap ProcessedBranchesOut; argument
88 BlockSet ProcessedBranchesIn; argument
102 Block(const char *CodeInit, const char *BranchVarInit); argument
/external/clang/docs/
DPCHInternals.rst199 .. _pchinternals-sourcemgr:
227 .. _pchinternals-preprocessor:
240 .. _pchinternals-types:
263 .. _pchinternals-decls:
394 .. _pchinternals-method-pool:
/external/deqp/framework/delibs/decpp/
DdeAppendList.hpp68 struct Block struct in de::AppendList
70 const size_t blockNdx;
71 ElementType* elements;
72 Block* volatile next;
74 Block (size_t blockNdx_, size_t size) in Block() function
82 ~Block (void) in ~Block()
/external/clang/lib/Analysis/
DThreadSafetyTIL.cpp171 for (auto *Block : successors()) in topologicalSort() local
264 for (auto *Block : Blocks) in renumberInstrs() local
309 for (auto *Block : Blocks) in computeNormalForm() local
322 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
328 for (auto *Block : Blocks) { in computeNormalForm() local
333 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DBlock.java20 public class Block class
26 public Block(CodeEmitter e) { in Block() method in Block
/external/llvm/lib/IR/
DGCOV.cpp208 GCOVBlock &Block = *Blocks[BlockNo]; in readGCNO() local
312 GCOVBlock &Block = *Blocks[BlockNo]; in readGCDA() local
346 for (const auto &Block : Blocks) in dump() local
358 for (const auto &Block : Blocks) in collectLineCounts() local
605 for (const GCOVBlock *Block : Blocks) { in print() local
662 for (const GCOVBlock *Block : Blocks) { in print() local
695 for (const GCOVBlock &Block : Func->blocks()) in printFunctionSummary() local
707 void FileInfo::printBlockInfo(raw_ostream &OS, const GCOVBlock &Block, in printBlockInfo()
717 void FileInfo::printBranchInfo(raw_ostream &OS, const GCOVBlock &Block, in printBranchInfo()
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h48 struct Block { struct
52 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() function
DBitstreamReader.h190 struct Block { struct
193 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block() argument
/external/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { in insert()
66 bool alreadySet(const CFGBlock *Block) { in alreadySet()
/external/llvm/lib/Target/SystemZ/
DSystemZLongBranch.cpp177 MBBInfo &Block) { in skipNonTerminators()
274 MBBInfo &Block = MBBs[I]; in initMBBInfo() local
336 for (auto &Block : MBBs) { in setWorstCaseAddresses() local
437 for (auto &Block : MBBs) { in relaxBranches() local
/external/llvm/lib/CodeGen/
DLexicalScopes.cpp152 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateRegularScope() local
178 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateInlinedScope() local
204 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateAbstractScope() local
/external/llvm/tools/lli/
DRemoteMemoryManager.cpp39 sys::MemoryBlock Block = allocateSection(Size); in allocateCodeSection() local
55 sys::MemoryBlock Block = allocateSection(Size); in allocateDataSection() local
/external/clang/test/SemaObjC/
Darc-type-conversion.m64 typedef void (^Block)(); typedef
/external/clang/test/SemaObjCXX/
Darc-type-conversion.mm195 typedef void (^Block)(); typedef
/external/v8/test/cctest/heap/
Dtest-alloc.cc200 class Block { class
202 Block(Address base_arg, int size_arg) in Block() function in Block
/external/clang/test/Index/
Dcomment-c-decls.c97 int (^Block) (int i, int j); variable
Dformat-comment-cdecls.c92 int (^Block) (int i, int j); variable
/external/clang/lib/CodeGen/
DCGCleanup.h166 llvm::BasicBlock *Block; member
197 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { in setCatchAllHandler()
201 void setHandler(unsigned I, llvm::Constant *Type, llvm::BasicBlock *Block) { in setHandler()
207 void setHandler(unsigned I, CatchTypeInfo Type, llvm::BasicBlock *Block) { in setHandler()
373 llvm::BasicBlock *Block) { in addBranchAfter()
409 bool addBranchThrough(llvm::BasicBlock *Block) { in addBranchThrough()
/external/clang/test/PCH/
Dtypes.h16 typedef int (^Block)(int, float); typedef

12345