Home
last modified time | relevance | path

Searched refs:block (Results 1 – 25 of 2847) sorted by relevance

12345678910>>...114

/external/e2fsprogs/tests/f_jnl_64bit/
Dexpect.01 Journal starts at block 67, transaction 32
2 Found expected sequence 32, type 5 (revoke table) at block 67
3 Dumping revoke block, sequence 32, at block 67:
4 Revoke FS block 0
5 Revoke FS block 1536
6 Revoke FS block 0
7 Revoke FS block 1472
8 Revoke FS block 0
9 Revoke FS block 1473
10 Revoke FS block 0
[all …]
/external/e2fsprogs/tests/f_jnl_32bit/
Dexpect.01 Journal starts at block 1, transaction 2
2 Found expected sequence 2, type 1 (descriptor block) at block 1
3 Dumping descriptor block, sequence 2, at block 1:
4 FS block 2 logged at journal block 2 (flags 0x8)
5 Found expected sequence 2, type 2 (commit block) at block 3
6 Found expected sequence 3, type 1 (descriptor block) at block 4
7 Dumping descriptor block, sequence 3, at block 4:
8 FS block 82 logged at journal block 5 (flags 0x0)
9 FS block 2 logged at journal block 6 (flags 0x2)
10 FS block 99 logged at journal block 7 (flags 0x2)
[all …]
/external/valgrind/main/none/tests/x86/
Dbug132813-x86.c6 unsigned int block[3]; in do_pushb_pos() local
17 : : "r"(&block) : "eax","edx","cc","memory" in do_pushb_pos()
20 block[0] - block[1], block[2]); in do_pushb_pos()
25 unsigned int block[3]; in do_pushb_neg() local
36 : : "r"(&block) : "eax","edx","cc","memory" in do_pushb_neg()
39 block[0] - block[1], block[2]); in do_pushb_neg()
44 unsigned int block[3]; in do_pushw_pos() local
55 : : "r"(&block) : "eax","edx","cc","memory" in do_pushw_pos()
58 block[0] - block[1], block[2]); in do_pushw_pos()
63 unsigned int block[3]; in do_pushw_neg() local
[all …]
/external/valgrind/main/none/tests/amd64/
Dbug132813-amd64.c6 unsigned long long int block[3]; in do_pushb_pos() local
17 : : "r"(&block) : "rax","rdx","cc","memory" in do_pushb_pos()
20 block[0] - block[1], block[2]); in do_pushb_pos()
25 unsigned long long int block[3]; in do_pushb_neg() local
36 : : "r"(&block) : "rax","rdx","cc","memory" in do_pushb_neg()
39 block[0] - block[1], block[2]); in do_pushb_neg()
44 unsigned long long int block[3]; in do_pushw_pos() local
55 : : "r"(&block) : "rax","rdx","cc","memory" in do_pushw_pos()
58 block[0] - block[1], block[2]); in do_pushw_pos()
63 unsigned long long int block[3]; in do_pushw_neg() local
[all …]
/external/valgrind/main/memcheck/tests/
Datomic_incs.c29 unsigned long block[2]; in atomic_add_8bit() local
30 block[0] = (unsigned long)p; in atomic_add_8bit()
31 block[1] = n; in atomic_add_8bit()
36 : : "S"(&block[0])/* S means "esi only" */ : "memory","cc","eax","ebx" in atomic_add_8bit()
39 unsigned long block[2]; in atomic_add_8bit()
40 block[0] = (unsigned long)p; in atomic_add_8bit()
41 block[1] = n; in atomic_add_8bit()
46 : : "S"(&block[0])/* S means "rsi only" */ : "memory","cc","rax","rbx" in atomic_add_8bit()
83 unsigned int block[3] in atomic_add_8bit()
95 : /*in*/ "r"(&block[0]) in atomic_add_8bit()
[all …]
/external/e2fsprogs/ext2ed/
Dext2.descriptors60 __u32 bg_block_bitmap; /* Blocks bitmap block */
61 __u32 bg_inode_bitmap; /* Inodes bitmap block */
62 __u32 bg_inode_table; /* Inodes table block */
116 * Structure of the super block
146 __u16 s_block_group_nr; /* block group # of this superblock */
170 __u32 s_reserved[0]; /* Padding to the end of the block */
415 __u32 block[0];
417 __u32 block[1];
419 __u32 block[2];
421 __u32 block[3];
[all …]
/external/e2fsprogs/tests/f_h_reindex/
Dexpect.11 Backing up journal inode block information.
5 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
[all …]
/external/chromium_org/third_party/skia/src/core/
DSkChunkAlloc.cpp30 static void FreeChain(Block* block) { in FreeChain()
31 while (block) { in FreeChain()
32 Block* next = block->fNext; in FreeChain()
33 sk_free(block); in FreeChain()
34 block = next; in FreeChain()
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size, in newBlock() local
81 if (block) { in newBlock()
83 block->fFreeSize = size; in newBlock()
84 block->fFreePtr = block->startOfData(); in newBlock()
91 return block; in newBlock()
[all …]
/external/skia/src/core/
DSkChunkAlloc.cpp30 static void FreeChain(Block* block) { in FreeChain()
31 while (block) { in FreeChain()
32 Block* next = block->fNext; in FreeChain()
33 sk_free(block); in FreeChain()
34 block = next; in FreeChain()
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size, in newBlock() local
81 if (block) { in newBlock()
83 block->fFreeSize = size; in newBlock()
84 block->fFreePtr = block->startOfData(); in newBlock()
91 return block; in newBlock()
[all …]
/external/llvm/test/tools/llvm-cov/Inputs/
Dtest_-a.cpp.gcov16 8589934592: 10-block 0
19 $$$$$: 12-block 0
23 $$$$$: 15-block 0
29 2: 20-block 0
35 $$$$$: 25-block 0
41 8: 30-block 0
45 2: 33-block 0
46 6: 33-block 1
47 4: 33-block 2
49 4: 34-block 0
[all …]
Dtest_-a_-b.cpp.gcov17 8589934592: 10-block 0
21 $$$$$: 12-block 0
26 $$$$$: 15-block 0
33 2: 20-block 0
40 $$$$$: 25-block 0
47 8: 30-block 0
52 2: 33-block 0
53 6: 33-block 1
56 4: 33-block 2
58 4: 34-block 0
[all …]
/external/chromium_org/third_party/skia/src/gpu/
DGrMemoryPool.cpp46 BlockHeader* block = CreateBlock(blockSize); in allocate() local
48 block->fPrev = fTail; in allocate()
49 block->fNext = NULL; in allocate()
51 fTail->fNext = block; in allocate()
52 fTail = block; in allocate()
72 BlockHeader* block = *reinterpret_cast<BlockHeader**>(ptr); in release() local
73 if (1 == block->fLiveCount) { in release()
75 if (fHead == block) { in release()
81 BlockHeader* prev = block->fPrev; in release()
82 BlockHeader* next = block->fNext; in release()
[all …]
/external/skia/src/gpu/
DGrMemoryPool.cpp46 BlockHeader* block = CreateBlock(blockSize); in allocate() local
48 block->fPrev = fTail; in allocate()
49 block->fNext = NULL; in allocate()
51 fTail->fNext = block; in allocate()
52 fTail = block; in allocate()
72 BlockHeader* block = *reinterpret_cast<BlockHeader**>(ptr); in release() local
73 if (1 == block->fLiveCount) { in release()
75 if (fHead == block) { in release()
81 BlockHeader* prev = block->fPrev; in release()
82 BlockHeader* next = block->fNext; in release()
[all …]
/external/libpcap/
Dgencode.h244 struct block *succ;
245 struct block *pred;
249 struct block { struct
261 struct block *head; argument
262 struct block *link; /* link field used by optimizer */ argument
274 struct block *b; /* protocol checks */ argument
292 void gen_and(struct block *, struct block *);
293 void gen_or(struct block *, struct block *);
294 void gen_not(struct block *);
296 struct block *gen_scode(const char *, struct qual);
[all …]
/external/valgrind/main/none/tests/arm/
Dvcvt_fixed_float_VFP.c57 double block[2]; in s32_to_f64_imm1() local
58 memset(block, 0x55, sizeof(block)); in s32_to_f64_imm1()
65 : : /*IN*/"r"(&block[0]), "r"(x) : /*TRASH*/"r8","s28","d14","memory" in s32_to_f64_imm1()
67 return block[0]; in s32_to_f64_imm1()
72 double block[2]; in s32_to_f64_imm32() local
73 memset(block, 0x55, sizeof(block)); in s32_to_f64_imm32()
80 : : /*IN*/"r"(&block[0]), "r"(x) : /*TRASH*/"r8","s28","d14","memory" in s32_to_f64_imm32()
82 return block[0]; in s32_to_f64_imm32()
97 double block[2]; in u32_to_f64_imm1() local
98 memset(block, 0x55, sizeof(block)); in u32_to_f64_imm1()
[all …]
/external/compiler-rt/lib/builtins/arm/
Dumodsi3.S93 #define block(shift) \ macro
97 block(31)
98 block(30)
99 block(29)
100 block(28)
101 block(27)
102 block(26)
103 block(25)
104 block(24)
105 block(23)
[all …]
Dudivsi3.S97 #define block(shift) \ macro
102 block(31)
103 block(30)
104 block(29)
105 block(28)
106 block(27)
107 block(26)
108 block(25)
109 block(24)
110 block(23)
[all …]
Dudivmodsi4.S99 #define block(shift) \ macro
104 block(31)
105 block(30)
106 block(29)
107 block(28)
108 block(27)
109 block(26)
110 block(25)
111 block(24)
112 block(23)
[all …]
/external/fsck_msdos/
Dboot.c55 u_char block[DOSBOOTBLOCKSIZE]; local
60 if (read(dosfs, block, sizeof block) < sizeof block) {
65 if (block[510] != 0x55 || block[511] != 0xaa) {
66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510]);
74 boot->BytesPerSec = block[11] + (block[12] << 8);
75 boot->SecPerClust = block[13];
76 boot->ResSectors = block[14] + (block[15] << 8);
77 boot->FATs = block[16];
78 boot->RootDirEnts = block[17] + (block[18] << 8);
79 boot->Sectors = block[19] + (block[20] << 8);
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
Dinterface_base.cpp69 {% block constructor_getter %}{% endblock %}
75 {% block replaceable_attribute_setter_and_callback %}{% endblock %}
76 {% block security_check_functions %}{% endblock %}
105 {% block origin_safe_method_setter %}{% endblock %}
110 {% block overloaded_constructor %}{% endblock %}
111 {% block event_constructor %}{% endblock %}
113 {% block indexed_property_getter %}{% endblock %}
114 {% block indexed_property_getter_callback %}{% endblock %}
115 {% block indexed_property_setter %}{% endblock %}
116 {% block indexed_property_setter_callback %}{% endblock %}
[all …]
/external/chromium_org/v8/src/compiler/
Dschedule.h69 inline bool LoopContains(BasicBlockData* block) const { in LoopContains() argument
72 DCHECK(block->rpo_number_ >= 0); in LoopContains()
74 return block->rpo_number_ >= rpo_number_ && block->rpo_number_ < loop_end_; in LoopContains()
169 BasicBlock* block(Node* node) const { in block() function
194 BasicBlock* block = this->block(a); in SameBasicBlock() local
195 return block != NULL && block == this->block(b); in SameBasicBlock()
200 BasicBlock* block = in NewBasicBlock() local
202 all_blocks_.push_back(block); in NewBasicBlock()
203 return block; in NewBasicBlock()
208 inline void PlanNode(BasicBlock* block, Node* node) { in PlanNode() argument
[all …]
/external/llvm/test/MC/ARM/
Dv8_IT_manual.s11 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
14 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
18 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
30 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
34 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
42 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
46 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
50 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
59 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
71 @ CHECK: [[@LINE+2]]:1: warning: deprecated instruction in IT block
[all …]
/external/libvpx/libvpx/vp8/common/
Dmbpitch.c22 x->block[r*4+c].predictor = x->predictor + r * 4 * 16 + c * 4; in vp8_setup_block_dptrs()
30 x->block[16+r*2+c].predictor = x->predictor + 256 + r * 4 * 8 + c * 4; in vp8_setup_block_dptrs()
39 x->block[20+r*2+c].predictor = x->predictor + 320 + r * 4 * 8 + c * 4; in vp8_setup_block_dptrs()
46 x->block[r].qcoeff = x->qcoeff + r * 16; in vp8_setup_block_dptrs()
47 x->block[r].dqcoeff = x->dqcoeff + r * 16; in vp8_setup_block_dptrs()
48 x->block[r].eob = x->eobs + r; in vp8_setup_block_dptrs()
54 int block; in vp8_build_block_doffsets() local
56 for (block = 0; block < 16; block++) /* y blocks */ in vp8_build_block_doffsets()
58 x->block[block].offset = in vp8_build_block_doffsets()
59 (block >> 2) * 4 * x->dst.y_stride + (block & 3) * 4; in vp8_build_block_doffsets()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Dmbpitch.c22 x->block[r*4+c].predictor = x->predictor + r * 4 * 16 + c * 4; in vp8_setup_block_dptrs()
30 x->block[16+r*2+c].predictor = x->predictor + 256 + r * 4 * 8 + c * 4; in vp8_setup_block_dptrs()
39 x->block[20+r*2+c].predictor = x->predictor + 320 + r * 4 * 8 + c * 4; in vp8_setup_block_dptrs()
46 x->block[r].qcoeff = x->qcoeff + r * 16; in vp8_setup_block_dptrs()
47 x->block[r].dqcoeff = x->dqcoeff + r * 16; in vp8_setup_block_dptrs()
48 x->block[r].eob = x->eobs + r; in vp8_setup_block_dptrs()
54 int block; in vp8_build_block_doffsets() local
56 for (block = 0; block < 16; block++) /* y blocks */ in vp8_build_block_doffsets()
58 x->block[block].offset = in vp8_build_block_doffsets()
59 (block >> 2) * 4 * x->dst.y_stride + (block & 3) * 4; in vp8_build_block_doffsets()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dtst_bitmaps_exp4 Setting block 12, was clear before
6 Setting block 12, was set before
8 Clearing block 12, was set before
10 Clearing block 12, was clear before
12 Setting block 12, was clear before
14 Setting block 14, was clear before
16 Setting block 16, was clear before
26 Setting block 13, was clear before
28 Setting block 15, was clear before
38 block bitmap: 00f80000000000000000000000000000
[all …]

12345678910>>...114