Home
last modified time | relevance | path

Searched refs:super (Results 1 – 25 of 946) sorted by relevance

12345678910>>...38

/external/e2fsprogs/lib/ext2fs/
Dinitialize.c68 struct ext2_super_block *sb = fs->super; in calc_reserved_gdt_blocks()
98 struct ext2_super_block *super; in ext2fs_initialize() local
138 retval = ext2fs_get_mem(SUPERBLOCK_SIZE, &super); in ext2fs_initialize()
141 fs->super = super; in ext2fs_initialize()
143 memset(super, 0, SUPERBLOCK_SIZE); in ext2fs_initialize()
145 #define set_field(field, default) (super->field = param->field ? \ in ext2fs_initialize()
148 super->s_magic = EXT2_SUPER_MAGIC; in ext2fs_initialize()
149 super->s_state = EXT2_VALID_FS; in ext2fs_initialize()
153 set_field(s_first_data_block, super->s_log_block_size ? 0 : 1); in ext2fs_initialize()
164 if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) { in ext2fs_initialize()
[all …]
Dopenfs.c38 if (!(fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) || in ext2fs_descriptor_block_loc()
39 (i < fs->super->s_first_meta_bg)) in ext2fs_descriptor_block_loc()
42 bg = EXT2_DESC_PER_BLOCK(fs->super) * i; in ext2fs_descriptor_block_loc()
54 if (group_block != fs->super->s_first_data_block && in ext2fs_descriptor_block_loc()
55 ((ret_blk + fs->super->s_blocks_per_group) < in ext2fs_descriptor_block_loc()
56 fs->super->s_blocks_count)) in ext2fs_descriptor_block_loc()
57 ret_blk += fs->super->s_blocks_per_group; in ext2fs_descriptor_block_loc()
134 retval = ext2fs_get_memalign(SUPERBLOCK_SIZE, 512, &fs->super); in ext2fs_open2()
179 fs->super); in ext2fs_open2()
183 memcpy(fs->orig_super, fs->super, SUPERBLOCK_SIZE); in ext2fs_open2()
[all …]
Dclosefs.c37 if (!(fs->super->s_feature_ro_compat & in ext2fs_bg_has_super()
75 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) in ext2fs_super_and_bgd_loc()
76 old_desc_blocks = fs->super->s_first_meta_bg; in ext2fs_super_and_bgd_loc()
79 fs->desc_blocks + fs->super->s_reserved_gdt_blocks; in ext2fs_super_and_bgd_loc()
82 numblocks = (fs->super->s_blocks_count - in ext2fs_super_and_bgd_loc()
83 fs->super->s_first_data_block) % in ext2fs_super_and_bgd_loc()
84 fs->super->s_blocks_per_group; in ext2fs_super_and_bgd_loc()
86 numblocks = fs->super->s_blocks_per_group; in ext2fs_super_and_bgd_loc()
88 numblocks = fs->super->s_blocks_per_group; in ext2fs_super_and_bgd_loc()
96 meta_bg_size = EXT2_DESC_PER_BLOCK(fs->super); in ext2fs_super_and_bgd_loc()
[all …]
Dalloc.c38 if (!(EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in check_block_uninit()
43 blk = (group * fs->super->s_blocks_per_group) + in check_block_uninit()
44 fs->super->s_first_data_block; in check_block_uninit()
49 if (fs->super->s_feature_incompat & in check_block_uninit()
51 old_desc_blocks = fs->super->s_first_meta_bg; in check_block_uninit()
53 old_desc_blocks = fs->desc_blocks + fs->super->s_reserved_gdt_blocks; in check_block_uninit()
55 for (i=0; i < fs->super->s_blocks_per_group; i++, blk++) { in check_block_uninit()
82 if (!(EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in check_inode_uninit()
87 ino = (group * fs->super->s_inodes_per_group) + 1; in check_inode_uninit()
88 for (i=0; i < fs->super->s_inodes_per_group; i++, ino++) in check_inode_uninit()
[all …]
Dalloc_stats.c23 if (ino > fs->super->s_inodes_count) { in ext2fs_inode_alloc_stats2()
40 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in ext2fs_inode_alloc_stats2()
42 ext2_ino_t first_unused_inode = fs->super->s_inodes_per_group - in ext2fs_inode_alloc_stats2()
44 group * fs->super->s_inodes_per_group + 1; in ext2fs_inode_alloc_stats2()
48 group * fs->super->s_inodes_per_group + in ext2fs_inode_alloc_stats2()
49 fs->super->s_inodes_per_group - ino; in ext2fs_inode_alloc_stats2()
53 fs->super->s_free_inodes_count -= inuse; in ext2fs_inode_alloc_stats2()
68 if (blk >= fs->super->s_blocks_count) { in ext2fs_block_alloc_stats()
82 fs->super->s_free_blocks_count -= inuse; in ext2fs_block_alloc_stats()
Dmkjournal.c69 memcpy(jsb->s_uuid, fs->super->s_uuid, sizeof(fs->super->s_uuid)); in ext2fs_create_journal_superblock()
74 if (fs->super->s_feature_incompat & in ext2fs_create_journal_superblock()
301 if (fs->super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_EXTENTS) { in write_journal_inode()
312 group = ext2fs_group_of_blk(fs, (fs->super->s_blocks_count - in write_journal_inode()
313 fs->super->s_first_data_block) / 2); in write_journal_inode()
314 log_flex = 1 << fs->super->s_log_groups_per_flex; in write_journal_inode()
315 if (fs->super->s_log_groups_per_flex && (group > log_flex)) { in write_journal_inode()
332 es.goal = (fs->super->s_blocks_per_group * group) + in write_journal_inode()
333 fs->super->s_first_data_block; in write_journal_inode()
361 memcpy(fs->super->s_jnl_blocks, inode.i_block, EXT2_N_BLOCKS*4); in write_journal_inode()
[all …]
Dcsum.c39 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) { in ext2fs_group_desc_csum()
51 crc = ext2fs_crc16(~0, fs->super->s_uuid, in ext2fs_group_desc_csum()
52 sizeof(fs->super->s_uuid)); in ext2fs_group_desc_csum()
58 if (offset < fs->super->s_desc_size) { in ext2fs_group_desc_csum()
60 fs->super->s_desc_size - offset); in ext2fs_group_desc_csum()
69 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in ext2fs_group_desc_csum_verify()
80 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in ext2fs_group_desc_csum_set()
105 struct ext2_super_block *sb = fs->super; in ext2fs_set_gdt_csum()
113 if (!EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in ext2fs_set_gdt_csum()
153 struct ext2_super_block *sb = fs->super; in print_csum()
[all …]
/external/clang/test/SemaObjC/
Dsuper.m24 [super iMethod]; // expected-warning{{'A' may not respond to 'iMethod'}}
26 // Use of super in a block is ok and does codegen to the right thing.
29 [super instanceMethod];
34 [super cMethod]; // expected-warning{{method '+cMethod' not found (return type defaults to 'id')}}
36 id X[] = { [ super superClassMethod] };
38 [ super.superClassMethod iMethod],
39 super.superClassMethod,
40 (id)super.superClassMethod // not a cast of super: rdar://7853261
50 void f(id super) {
51 [super m];
[all …]
Dcall-super-2.m39 …return i + (size_t)[super class_func0]; // expected-warning {{class method '+class_func0' not fo…
44 …i += [(id <Func>)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an expre…
46 …return i + [(Class <Func>)super class_func0]; // // expected-error {{cannot cast 'super' (it isn't…
50 …return [(Object <Func> *)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an…
54 …return [(Derived <Func> *)super class_func0]; // expected-error {{cannot cast 'super' (it isn't an…
72 …return i + (size_t)[super instance_func0]; // expected-warning {{'Object' may not respond to 'inst…
76 …return [(id <Func>)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't an exp…
80 …return [(Object <Func> *)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't …
84 …return [(Derived <Func> *)super instance_func0]; // expected-error {{cannot cast 'super' (it isn't…
102 if (self = [super initWithInt: i]) {
Dwarn-missing-super.m36 [super dealloc]; // Shouldn't warn
39 [super finalize]; // Shouldn't warn
44 // CHECK: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call
48 // CHECK-GC: warn-missing-super.m:24:1: warning: method possibly missing a [super dealloc] call
49 // CHECK-GC: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] call
53 // CHECK-GC-ONLY: warn-missing-super.m:26:1: warning: method possibly missing a [super finalize] ca…
57 // CHECK-ARC: warn-missing-super.m:36:4: error: ARC forbids explicit message send of 'dealloc'
Dsuper-dealloc-attribute.m33 [super MyDealloc];
38 [super MyDealloc];
39 } // expected-warning {{method possibly missing a [super XXX] call}}
42 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc…
50 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal…
51 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc…
52 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}}
61 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] cal…
62 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDealloc…
63 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}}
[all …]
/external/e2fsprogs/resize/
Dresize2fs.c70 (fs)->super->s_reserved_gdt_blocks)
87 fs->super->s_state |= EXT2_ERROR_FS; in resize_fs()
118 *new_size = rfs->new_fs->super->s_blocks_count; in resize_fs()
127 rfs->old_fs->super->s_free_blocks_count, in resize_fs()
128 rfs->new_fs->super->s_free_blocks_count, in resize_fs()
160 rfs->new_fs->super->s_state &= ~EXT2_ERROR_FS; in resize_fs()
197 if (!(EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in fix_uninit_block_bitmaps()
205 blk = (g * fs->super->s_blocks_per_group) + in fix_uninit_block_bitmaps()
206 fs->super->s_first_data_block; in fix_uninit_block_bitmaps()
211 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) in fix_uninit_block_bitmaps()
[all …]
/external/e2fsprogs/e2fsck/
Dsuper.c79 if ((blk < fs->super->s_first_data_block) || in release_inode_block()
80 (blk >= fs->super->s_blocks_count)) { in release_inode_block()
232 if ((ino = fs->super->s_last_orphan) == 0) in release_orphan_inodes()
239 fs->super->s_last_orphan = 0; in release_orphan_inodes()
247 if (fs->super->s_state & EXT2_ERROR_FS) in release_orphan_inodes()
250 if ((ino < EXT2_FIRST_INODE(fs->super)) || in release_orphan_inodes()
251 (ino > fs->super->s_inodes_count)) { in release_orphan_inodes()
274 ((next_ino < EXT2_FIRST_INODE(fs->super)) || in release_orphan_inodes()
275 (next_ino > fs->super->s_inodes_count))) { in release_orphan_inodes()
324 if (!(fs->super->s_feature_compat & in check_resize_inode()
[all …]
Dpass5.c123 if ((fs->super->s_first_data_block < in check_block_bitmaps()
125 (fs->super->s_blocks_count-1 > in check_block_bitmaps()
128 pctx.blk = fs->super->s_first_data_block; in check_block_bitmaps()
129 pctx.blk2 = fs->super->s_blocks_count -1; in check_block_bitmaps()
138 if ((fs->super->s_first_data_block < in check_block_bitmaps()
140 (fs->super->s_blocks_count-1 > in check_block_bitmaps()
143 pctx.blk = fs->super->s_first_data_block; in check_block_bitmaps()
144 pctx.blk2 = fs->super->s_blocks_count -1; in check_block_bitmaps()
153 csum_flag = EXT2_HAS_RO_COMPAT_FEATURE(fs->super, in check_block_bitmaps()
162 for (i = fs->super->s_first_data_block; in check_block_bitmaps()
[all …]
/external/smali/smali/src/test/resources/LexerTest/
DDirectiveTest.tokens2 SUPER_DIRECTIVE(".super")
35 SUPER_DIRECTIVE(".super")
38 SUPER_DIRECTIVE(".super")
41 SUPER_DIRECTIVE(".super")
44 SUPER_DIRECTIVE(".super")
47 SUPER_DIRECTIVE(".super")
55 SUPER_DIRECTIVE(".super")
57 SUPER_DIRECTIVE(".super")
58 SUPER_DIRECTIVE(".super")
/external/e2fsprogs/ext2ed/
Dsuper_com.c27 struct ext2_super_block *super; in type_ext2_super_block___show() local
28 super=&type_data.u.t_ext2_super_block; in type_ext2_super_block___show()
32 if (super->s_blocks_count != 0) { in type_ext2_super_block___show()
33 … (show_pad,2,40);wprintw (show_pad,"%2.2f%%",100*(float) super->s_r_blocks_count/ (float) super->s… in type_ext2_super_block___show()
34 …(show_pad,3,40);wprintw (show_pad,"%2.2f%%",100*(float) super->s_free_blocks_count/ (float) super-… in type_ext2_super_block___show()
37 if (super->s_inodes_count != 0) { in type_ext2_super_block___show()
38 …(show_pad,4,40);wprintw (show_pad,"%2.2f%%",100*(float) super->s_free_inodes_count/ (float) super-… in type_ext2_super_block___show()
42 switch (super->s_log_block_size) { in type_ext2_super_block___show()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DASTParser.stg16 <super.tokenRef(...)>
23 tokenRefBang(token,label,elementIndex,terminalOptions) ::= "<super.tokenRef(...)>"
26 <super.tokenRef(...)>
49 <super.matchSet(postmatchCode={<gatedAction({@adaptor.add_child( root_0, <createNodeFromToken(...)>…
58 matchSetBang(s,label,elementIndex,postmatchCode) ::= "<super.matchSet(...)>"
63 <super.matchSet(postmatchCode={<gatedAction({root_0 = @adaptor.become_root( <createNodeFromToken(..…
73 <super.ruleRef(...)>
79 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>"
84 <super.ruleRef(...)>
110 <super.wildcard(...)>
[all …]
/external/clang/test/Analysis/
Dself-init.m87 self = [super init];
95 [super init];
99 …return self; // expected-warning {{Returning 'self' while it is not set to the result of '[(super
103 if ((self = [super init]))
130 if ((self = [super init])) {
152 [super init];
157 if (self == [super init]) {
170 [super init];
172 …return self; // expected-warning {{Returning 'self' while it is not set to the result of '[(super
176 if (!(self = [super init]))
[all …]
/external/grub/stage2/
Dfsys_reiserfs.c571 struct reiserfs_super_block super; in reiserfs_mount() local
574 if (part_length < superblock + (sizeof (super) >> SECTOR_BITS) in reiserfs_mount()
576 (char *) &super) in reiserfs_mount()
577 || (substring (REISER3FS_SUPER_MAGIC_STRING, super.s_magic) > 0 in reiserfs_mount()
578 && substring (REISER2FS_SUPER_MAGIC_STRING, super.s_magic) > 0 in reiserfs_mount()
579 && substring (REISERFS_SUPER_MAGIC_STRING, super.s_magic) > 0) in reiserfs_mount()
581 super.s_journal_block * super.s_blocksize in reiserfs_mount()
586 if (part_length < superblock + (sizeof (super) >> SECTOR_BITS) in reiserfs_mount()
588 (char *) &super)) in reiserfs_mount()
591 if (substring (REISER3FS_SUPER_MAGIC_STRING, super.s_magic) > 0 in reiserfs_mount()
[all …]
/external/e2fsprogs/misc/
Ddumpe2fs.c115 if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) in print_bg_opts()
136 } else if (fs->super->s_feature_incompat & in print_bg_rel_offset()
153 blk_t blk_itr = fs->super->s_first_data_block; in list_desc()
156 block_nbytes = EXT2_BLOCKS_PER_GROUP(fs->super) / 8; in list_desc()
157 inode_nbytes = EXT2_INODES_PER_GROUP(fs->super) / 8; in list_desc()
164 inode_blocks_per_group = ((fs->super->s_inodes_per_group * in list_desc()
165 EXT2_INODE_SIZE(fs->super)) + in list_desc()
166 EXT2_BLOCK_SIZE(fs->super) - 1) / in list_desc()
167 EXT2_BLOCK_SIZE(fs->super); in list_desc()
168 reserved_gdt = fs->super->s_reserved_gdt_blocks; in list_desc()
[all …]
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3commontree.c203 tree->baseTree.super = tree; in newPoolTree()
226 ((pANTLR3_COMMON_TREE)(newTree->super))->token = tree->token; in newFromTree()
246 ((pANTLR3_COMMON_TREE)(newTree->super))->token = token; in newFromToken()
299 tree->baseTree.super = tree; in antlr3SetCTAPI()
376 …children = ((pANTLR3_COMMON_TREE)(tree->super))->factory->vFactory->newVector(((pANTLR3_COMMON_TRE… in createChildrenList()
389 return ((pANTLR3_COMMON_TREE)(tree->super))->token; in getToken()
400 theOld = (pANTLR3_COMMON_TREE)(tree->super); in dupNode()
412 if (((pANTLR3_COMMON_TREE)(tree->super))->token == NULL) in isNilNode()
427 theTree = (pANTLR3_COMMON_TREE)(tree->super); in getType()
450 cTree = (pANTLR3_COMMON_TREE)(tree->super); in getLine()
[all …]
/external/markdown/markdown/
Dodict.py9 instance = super(OrderedDict, cls).__new__(cls, *args, **kwargs)
16 super(OrderedDict, self).__init__(data)
31 super(OrderedDict, self).__setitem__(key, value)
36 super(OrderedDict, self).__delitem__(key)
44 result = super(OrderedDict, self).pop(k, *args)
53 result = super(OrderedDict, self).popitem()
62 yield key, super(OrderedDict, self).__getitem__(key)
71 return [super(OrderedDict, self).__getitem__(k) for k in self.keyOrder]
75 yield super(OrderedDict, self).__getitem__(key)
84 return super(OrderedDict, self).setdefault(key, default)
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRRuntimeException.m65 self = [super initWithName:@"ANTLRRuntimeException" reason:@"UnknownException" userInfo:nil];
71 …self = [super initWithName:(NSString *)@"ANTLRRuntimeException" reason:(NSString *)aReason userInf…
77 self = [super initWithName:@"ANTLRRuntimeException" reason:aReason userInfo:aUserInfo];
83 …self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)n…
89 …self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)a…
95 return [super reason];
135 …self = [super initWithName:@"ANTLRIllegalArgumentException" reason:@"UnknownException" userInfo:ni…
141 …self = [super initWithName:@"ANTLRIllegalArgumentException" reason:(NSString *)aReason userInfo:ni…
147 self = [super initWithName:@"ANTLRIllegalArgumentException" reason:aReason userInfo:aUserInfo];
172 … self = [super initWithName:@"ANTLRIllegalStateException" reason:@"UnknownException" userInfo:nil];
[all …]
/external/clang/test/CodeGenObjC/
Dsuper-dotsyntax-property.m24 super.classGetter = 100;
25 return super.classGetter;
29 super.getter = 200;
30 int x = super.getter;
33 super.parent = arg + super.parent;
/external/chromium/chrome/browser/ui/cocoa/
Dhover_image_button.mm15 [super setImage:pressedImage_.get()];
16 [super setAlphaValue:pressedOpacity_];
18 [super setImage:hoverImage_.get()];
19 [super setAlphaValue:hoverOpacity_];
21 [super setImage:defaultImage_.get()];
22 [super setAlphaValue:defaultOpacity_];
25 [super drawRect:rect];

12345678910>>...38