Home
last modified time | relevance | path

Searched refs:Block (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/external/e2fsprogs/tests/r_move_itable/
Dexpect27 Block count: 9985
32 Block size: 1024
51 Block bitmap at 130 (+129), Inode bitmap at 131 (+130)
59 Block bitmap at 386 (+129), Inode bitmap at 387 (+130)
65 Block bitmap at 513 (+0), Inode bitmap at 514 (+1)
73 Block bitmap at 898 (+129), Inode bitmap at 899 (+130)
79 Block bitmap at 1025 (+0), Inode bitmap at 1026 (+1)
87 Block bitmap at 1410 (+129), Inode bitmap at 1411 (+130)
93 Block bitmap at 1537 (+0), Inode bitmap at 1538 (+1)
101 Block bitmap at 1922 (+129), Inode bitmap at 1923 (+130)
[all …]
/external/e2fsprogs/tests/m_meta_bg/
Dexpect.13 Block size=1024 (log=0)
38 Block count: 131072
43 Block size: 1024
60 Block bitmap at 3 (+2), Inode bitmap at 4 (+3)
67 Block bitmap at 1027 (+2), Inode bitmap at 1028 (+3)
73 Block bitmap at 2049 (+0), Inode bitmap at 2050 (+1)
80 Block bitmap at 3074 (+1), Inode bitmap at 3075 (+2)
86 Block bitmap at 4097 (+0), Inode bitmap at 4098 (+1)
93 Block bitmap at 5122 (+1), Inode bitmap at 5123 (+2)
99 Block bitmap at 6145 (+0), Inode bitmap at 6146 (+1)
[all …]
/external/e2fsprogs/tests/r_resize_inode/
Dexpect25 Block count: 65536
30 Block size: 1024
49 Block bitmap at 259 (+258), Inode bitmap at 260 (+259)
57 Block bitmap at 1283 (+258), Inode bitmap at 1284 (+259)
63 Block bitmap at 2049 (+0), Inode bitmap at 2050 (+1)
71 Block bitmap at 3331 (+258), Inode bitmap at 3332 (+259)
77 Block bitmap at 4097 (+0), Inode bitmap at 4098 (+1)
85 Block bitmap at 5379 (+258), Inode bitmap at 5380 (+259)
91 Block bitmap at 6145 (+0), Inode bitmap at 6146 (+1)
99 Block bitmap at 7427 (+258), Inode bitmap at 7428 (+259)
[all …]
/external/e2fsprogs/tests/m_raid_opt/
Dexpect.13 Block size=1024 (log=0)
39 Block count: 131072
44 Block size: 1024
64 Block bitmap at 294 (+293), Inode bitmap at 295 (+294)
72 Block bitmap at 1331 (+306), Inode bitmap at 1332 (+307)
78 Block bitmap at 2107 (+58), Inode bitmap at 2108 (+59)
86 Block bitmap at 3405 (+332), Inode bitmap at 3406 (+333)
92 Block bitmap at 4181 (+84), Inode bitmap at 4182 (+85)
100 Block bitmap at 5479 (+358), Inode bitmap at 5480 (+359)
106 Block bitmap at 6255 (+110), Inode bitmap at 6256 (+111)
[all …]
/external/clang/lib/Analysis/
DCFG.cpp256 CFGBlock *Block; member in __anon7207fde30111::CFGBuilder
299 Block(NULL), Succ(NULL), in CFGBuilder()
382 return Block; in NYS()
385 void autoCreateBlock() { if (!Block) Block = createBlock(); } in autoCreateBlock()
581 Block = NULL; // the EXIT block is empty. Create all other blocks lazily. in buildCFG()
668 return Block; in addInitializer()
689 appendInitializer(Block, I); in addInitializer()
700 return Block; in addInitializer()
784 Block = createNoReturnBlock(); in addAutomaticObjDtors()
788 appendAutomaticObjDtor(Block, *I, S); in addAutomaticObjDtors()
[all …]
DReachableCode.cpp48 bool isDeadCodeRoot(const CFGBlock *Block);
50 const Stmt *findDeadCode(const CFGBlock *Block);
65 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { in isDeadCodeRoot() argument
68 for (CFGBlock::const_pred_iterator I = Block->pred_begin(), in isDeadCodeRoot()
69 E = Block->pred_end(); I != E; ++I) { in isDeadCodeRoot()
96 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { in findDeadCode() argument
97 for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I!=E; ++I) in findDeadCode()
104 if (CFGTerminator T = Block->getTerminator()) { in findDeadCode()
126 const CFGBlock *Block = WorkList.pop_back_val(); in scanBackwards() local
130 if (Reachable[Block->getBlockID()]) in scanBackwards()
[all …]
/external/skia/src/gpu/
DGrAllocPool.cpp15 struct GrAllocPool::Block { struct in GrAllocPool
16 Block* fNext; argument
21 static Block* Create(size_t size, Block* next) { in Create() argument
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size); in Create()
26 block->fPtr = (char*)block + sizeof(Block); in Create()
70 Block* block = fBlock; in reset()
72 Block* next = block->fNext; in reset()
85 fBlock = Block::Create(blockSize, fBlock); in alloc()
97 Block* next = fBlock->fNext; in release()
109 Block* block = fBlock; in validate()
/external/skia/src/core/
DSkChunkAlloc.cpp12 struct SkChunkAlloc::Block { struct in SkChunkAlloc
13 Block* fNext; argument
23 Block* block = this; in freeChain()
25 Block* next = block->fNext; in freeChain()
31 Block* tail() { in tail() argument
32 Block* block = this; in tail()
35 Block* next = block->fNext; in tail()
77 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) { in newBlock()
78 Block* block = fPool; in newBlock()
89 block = (Block*)sk_malloc_flags(sizeof(Block) + size, in newBlock()
[all …]
DSkWriter32.cpp10 struct SkWriter32::Block { struct in SkWriter32
11 Block* fNext; argument
34 static Block* Create(size_t size) { in Create() argument
36 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); in Create()
51 Block* block = fHead; in reset()
53 Block* next = block->fNext; in reset()
80 Block* block = fTail; in reserve()
84 fHead = fTail = block = Block::Create(SkMax32(size, fMinSize)); in reserve()
86 fTail = Block::Create(SkMax32(size, fMinSize)); in reserve()
104 Block* block = fHead; in peek32()
[all …]
/external/clang/docs/
DBlockLanguageSpec.txt5 2008/8/13 — revised, Block globals
17 The Block Type
19 … extension, Objective-C, C++, and Objective-C++. Like function types, the Block type is a pair con…
21 …o a Block that, when invoked, takes two parameters, the first of type char and the second of type …
24 Block Variable Declarations
26 A variable with Block type is declared using function pointer style notation substituting ^ for *. …
31 Variadic ... arguments are supported. [variadic.c] A Block that takes no arguments must specify vo…
33Block reference may be cast to a pointer of arbitrary type and vice versa. [cast.c] A Block refer…
36 Block Literal Expressions
38 A Block literal expression produces a reference to a Block. It is introduced by the use of the ^ to…
[all …]
/external/stlport/test/eh/
Dnc_alloc.cpp118 if (s <= sizeof(Block)) { in Allocate()
131 Block* b = (Block*)p; in Free()
139 struct Block;
140 friend struct Block;
151 struct Block { struct in FastAllocator
153 Block *next;
159 static Block* mBlocks;
160 static Block *mFree;
164 FastAllocator::Block *FastAllocator::mBlocks = argument
165 (FastAllocator::Block*)EH_CSTD::calloc( sizeof(FastAllocator::Block), FastAllocator::kBlockCount );
[all …]
/external/e2fsprogs/tests/m_uninit/
Dexpect.13 Block size=1024 (log=0)
39 Block count: 131072
44 Block size: 1024
63 Block bitmap at 259 (+258), Inode bitmap at 260 (+259)
71 Block bitmap at 8451 (+258), Inode bitmap at 8452 (+259)
77 Block bitmap at 16385 (+0), Inode bitmap at 16386 (+1)
85 Block bitmap at 24835 (+258), Inode bitmap at 24836 (+259)
91 Block bitmap at 32769 (+0), Inode bitmap at 32770 (+1)
99 Block bitmap at 41219 (+258), Inode bitmap at 41220 (+259)
105 Block bitmap at 49153 (+0), Inode bitmap at 49154 (+1)
[all …]
/external/valgrind/main/coregrind/
Dm_mallocfree.c148 Block; typedef
207 Block* freelist[N_MALLOC_LISTS];
282 SizeT get_bszB_as_is ( Block* b ) in get_bszB_as_is()
295 SizeT get_bszB ( Block* b ) in get_bszB()
302 void set_bszB ( Block* b, SizeT bszB ) in set_bszB()
313 Bool is_inuse_block ( Block* b ) in is_inuse_block()
369 SizeT get_pszB ( Arena* a, Block* b ) in get_pszB()
378 UByte* get_block_payload ( Arena* a, Block* b ) in get_block_payload()
385 Block* get_payload_block ( Arena* a, UByte* payload ) in get_payload_block()
387 return (Block*)&payload[ -overhead_szB_lo(a) ]; in get_payload_block()
[all …]
/external/libpcap/doc/
Dpcap.txt64 2.1 General Block Structure . . . . . . . . . . . . . . . . . . . 4
65 2.2 Block Types . . . . . . . . . . . . . . . . . . . . . . . . . 5
66 2.3 Block Hierarchy and Precedence . . . . . . . . . . . . . . . . 5
68 3. Block Definition . . . . . . . . . . . . . . . . . . . . . . . 8
69 3.1 Section Header Block (mandatory) . . . . . . . . . . . . . . . 8
70 3.2 Interface Description Block (mandatory) . . . . . . . . . . . 9
71 3.3 Packet Block (optional) . . . . . . . . . . . . . . . . . . . 13
72 3.4 Simple Packet Block (optional) . . . . . . . . . . . . . . . . 15
73 3.5 Name Resolution Block (optional) . . . . . . . . . . . . . . . 16
74 3.6 Interface Statistics Block (optional) . . . . . . . . . . . . 18
[all …]
/external/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { in insert() argument
55 if (Block == 0) in insert()
57 if (VisitedBlockIDs.test(Block->getBlockID())) in insert()
59 VisitedBlockIDs.set(Block->getBlockID()); in insert()
66 bool alreadySet(const CFGBlock *Block) { in alreadySet() argument
67 return VisitedBlockIDs.test(Block->getBlockID()); in alreadySet()
/external/e2fsprogs/tests/m_std/
Dexpect.13 Block size=1024 (log=0)
39 Block count: 65536
44 Block size: 1024
63 Block bitmap at 258 (+257), Inode bitmap at 259 (+258)
71 Block bitmap at 8450 (+257), Inode bitmap at 8451 (+258)
77 Block bitmap at 16385 (+0), Inode bitmap at 16386 (+1)
85 Block bitmap at 24834 (+257), Inode bitmap at 24835 (+258)
91 Block bitmap at 32769 (+0), Inode bitmap at 32770 (+1)
99 Block bitmap at 41218 (+257), Inode bitmap at 41219 (+258)
105 Block bitmap at 49153 (+0), Inode bitmap at 49154 (+1)
[all …]
/external/e2fsprogs/tests/m_no_opt/
Dexpect.13 Block size=1024 (log=0)
38 Block count: 65536
43 Block size: 1024
60 Block bitmap at 3 (+2), Inode bitmap at 4 (+3)
67 Block bitmap at 8195 (+2), Inode bitmap at 8196 (+3)
74 Block bitmap at 16387 (+2), Inode bitmap at 16388 (+3)
81 Block bitmap at 24579 (+2), Inode bitmap at 24580 (+3)
88 Block bitmap at 32771 (+2), Inode bitmap at 32772 (+3)
95 Block bitmap at 40963 (+2), Inode bitmap at 40964 (+3)
102 Block bitmap at 49155 (+2), Inode bitmap at 49156 (+3)
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp114 DIEBlock *Block) { in addBlock() argument
115 Block->ComputeSize(Asm); in addBlock()
116 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on. in addBlock()
117 Die->addValue(Attribute, Block->BestForm(), Block); in addBlock()
271 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addAddress() local
274 addRegisterOp(Block, Location.getReg()); in addAddress()
276 addRegisterOffset(Block, Location.getReg(), Location.getOffset()); in addAddress()
279 addBlock(Die, Attribute, 0, Block); in addAddress()
290 DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); in addComplexAddress() local
297 addRegisterOffset(Block, Location.getReg(), DV->getAddrElement(1)); in addComplexAddress()
[all …]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DSerializedGrammar.java49 Block block;
50 public Rule(String name, Block block) { in Rule()
59 class Block { class in SerializedGrammar
61 public Block(List[] alts) { in Block() method in SerializedGrammar.Block
127 Block b = readBlock(in); in readRule()
133 protected Block readBlock(DataInputStream in) throws IOException { in readBlock()
142 return new Block(alts); in readBlock()
172 Block b = readBlock(in); in readAlt()
/external/skia/include/core/
DSkChunkAlloc.h60 struct Block;
61 Block* fBlock;
63 Block* fPool;
66 Block* newBlock(size_t bytes, AllocFailType ftype);
/external/libvpx/mkvparser/
Dmkvparser.hpp77 class Block class
79 Block(const Block&);
80 Block& operator=(const Block&);
86 Block(long long start, long long size);
87 ~Block();
138 virtual const Block* GetBlock() const = 0;
160 const Block* GetBlock() const;
163 Block m_block;
186 const Block* GetBlock() const;
193 Block m_block;
[all …]
/external/v8/test/mjsunit/harmony/
Ddebug-blockscopes.js280 CheckScopeChain([debug.ScopeType.Block,
302 CheckScopeChain([debug.ScopeType.Block,
325 CheckScopeChain([debug.ScopeType.Block,
354 debug.ScopeType.Block,
374 CheckScopeChain([debug.ScopeType.Block,
397 CheckScopeChain([debug.ScopeType.Block,
398 debug.ScopeType.Block,
420 CheckScopeChain([debug.ScopeType.Block,
441 CheckScopeChain([debug.ScopeType.Block,
442 debug.ScopeType.Block,
[all …]
/external/clang/lib/CodeGen/
DCGCleanup.h149 llvm::BasicBlock *Block; member
180 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { in setCatchAllHandler() argument
181 setHandler(I, /*catchall*/ 0, Block); in setCatchAllHandler()
184 void setHandler(unsigned I, llvm::Value *Type, llvm::BasicBlock *Block) { in setHandler() argument
187 getHandlers()[I].Block = Block; in setHandler()
331 llvm::BasicBlock *Block) { in addBranchAfter() argument
333 if (ExtInfo.Branches.insert(Block)) in addBranchAfter()
334 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index)); in addBranchAfter()
367 bool addBranchThrough(llvm::BasicBlock *Block) { in addBranchThrough() argument
368 return getExtInfo().Branches.insert(Block); in addBranchThrough()
/external/e2fsprogs/tests/m_dasd_bs/
Dexpect.13 Block size=2048 (log=1)
39 Block count: 32768
44 Block size: 2048
63 Block bitmap at 33 (+33), Inode bitmap at 34 (+34)
71 Block bitmap at 16417 (+33), Inode bitmap at 16418 (+34)
/external/valgrind/main/memcheck/
Dmc_errors.c107 } Block; member
323 SizeT block_szB = ai->Addr.Block.block_szB; in mc_pp_AddrInfo()
324 PtrdiffT rwoffset = ai->Addr.Block.rwoffset; in mc_pp_AddrInfo()
341 a, delta, relative, ai->Addr.Block.block_desc, in mc_pp_AddrInfo()
343 ai->Addr.Block.block_kind==Block_Mallocd ? "alloc'd" in mc_pp_AddrInfo()
344 : ai->Addr.Block.block_kind==Block_Freed ? "free'd" in mc_pp_AddrInfo()
348 VG_(pp_ExeContext)(ai->Addr.Block.lastchange); in mc_pp_AddrInfo()
962 ai->Addr.Block.block_kind = Block_Mallocd; // Nb: Not 'Block_Freed' in MC_()
963 ai->Addr.Block.block_desc = "block"; in MC_()
964 ai->Addr.Block.block_szB = mc->szB; in MC_()
[all …]

12345678910>>...12