Home
last modified time | relevance | path

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

12345

/NextBSD/usr.sbin/quot/
HDquot.c109 get_inode(int fd, struct fs *super, ino_t ino) in get_inode() argument
121 if (super != NULL && super->fs_magic == FS_UFS2_MAGIC) { in get_inode()
129 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) { in get_inode()
130 if (super->fs_magic == FS_UFS2_MAGIC && in get_inode()
131 (!cgp || cg != ino_to_cg(super, ino))) { in get_inode()
132 cg = ino_to_cg(super, ino); in get_inode()
133 if (!cgp && !(cgp = malloc(super->fs_cgsize))) in get_inode()
135 if (lseek(fd, (off_t)cgtod(super, cg) << super->fs_fshift, 0) < 0) in get_inode()
137 if (read(fd, cgp, super->fs_cgsize) != super->fs_cgsize) in get_inode()
143 && !(ipbuf = malloc(INOSZ(super)))) in get_inode()
[all …]
/NextBSD/contrib/unbound/dns64/
HDdns64.c673 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) in dns64_adjust_a() argument
675 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id]; in dns64_adjust_a()
683 log_assert(super->region); in dns64_adjust_a()
688 if(!super->return_msg) { in dns64_adjust_a()
689 super->return_msg = (struct dns_msg*)regional_alloc( in dns64_adjust_a()
690 super->region, sizeof(struct dns_msg)); in dns64_adjust_a()
691 if(!super->return_msg) in dns64_adjust_a()
693 memset(super->return_msg, 0, sizeof(*super->return_msg)); in dns64_adjust_a()
694 super->return_msg->qinfo = super->qinfo; in dns64_adjust_a()
702 cp = construct_reply_info_base(super->region, rep->flags, rep->qdcount, in dns64_adjust_a()
[all …]
HDdns64.h63 struct module_qstate* super);
/NextBSD/contrib/unbound/util/
HDalloc.c102 alloc_init(struct alloc_cache* alloc, struct alloc_cache* super, in alloc_init() argument
106 alloc->super = super; in alloc_init()
120 if(alloc->super) in alloc_init()
122 if(!alloc->super) { in alloc_init()
135 if(!alloc->super) { in alloc_clear()
138 if(alloc->super && alloc->quar) { in alloc_clear()
143 lock_quick_lock(&alloc->super->lock); in alloc_clear()
144 alloc_set_special_next(p, alloc->super->quar); in alloc_clear()
145 alloc->super->quar = alloc->quar; in alloc_clear()
146 alloc->super->num_quar += alloc->num_quar; in alloc_clear()
[all …]
HDalloc.h76 struct alloc_cache* super; member
107 void alloc_init(struct alloc_cache* alloc, struct alloc_cache* super,
/NextBSD/lib/libdispatch/src/
HDobject_internal.h31 #define DISPATCH_DECL_INTERNAL_SUBCLASS(name, super) \ argument
32 OS_OBJECT_DECL_SUBCLASS(name, super)
35 #define DISPATCH_DECL_SUBCLASS_INTERFACE(name, super) \ argument
36 _OS_OBJECT_DECL_SUBCLASS_INTERFACE(name, super)
38 #define DISPATCH_DECL_INTERNAL_SUBCLASS(name, super) DISPATCH_DECL(name) argument
40 #define DISPATCH_DECL_SUBCLASS_INTERFACE(name, super) argument
47 #define DISPATCH_VTABLE_SUBCLASS_INSTANCE(name, super, ...) \ argument
50 DISPATCH_VTABLE_HEADER(super); \
55 #define DISPATCH_VTABLE_SUBCLASS_INSTANCE(name, super, ...) \ argument
56 DISPATCH_CONST_STRUCT_INSTANCE(dispatch_##super##_vtable_s, \
[all …]
HDobject.m325 self = [super init];
333 [super _xref_dispose];
375 [super _xref_dispose];
385 [super _xref_dispose];
411 self = [super init];
442 self = [super init];
/NextBSD/sbin/pfctl/
HDpfctl_optimize.c1542 exclude_supersets(struct pf_rule *super, struct pf_rule *sub) in exclude_supersets() argument
1544 if (super->ifname[0] == '\0') in exclude_supersets()
1546 if (super->direction == PF_INOUT) in exclude_supersets()
1548 if ((super->proto == 0 || super->proto == sub->proto) && in exclude_supersets()
1549 super->flags == 0 && super->flagset == 0 && (sub->flags || in exclude_supersets()
1551 sub->flags = super->flags; in exclude_supersets()
1552 sub->flagset = super->flagset; in exclude_supersets()
1554 if (super->proto == 0) in exclude_supersets()
1557 if (super->src.port_op == 0) { in exclude_supersets()
1562 if (super->dst.port_op == 0) { in exclude_supersets()
[all …]
/NextBSD/sys/fs/nandfs/
HDnandfs_vfsops.c218 struct nandfs_super_block *super) in nandfs_check_superblock_crc() argument
223 if (super->s_magic != NANDFS_SUPER_MAGIC) in nandfs_check_superblock_crc()
227 super_crc = super->s_sum; in nandfs_check_superblock_crc()
230 super->s_sum = (0); in nandfs_check_superblock_crc()
231 comp_crc = crc32((uint8_t *)super, fsdata->f_sbbytes); in nandfs_check_superblock_crc()
234 super->s_sum = super_crc; in nandfs_check_superblock_crc()
242 struct nandfs_super_block *super) in nandfs_calc_superblock_crc() argument
247 super->s_sum = 0; in nandfs_calc_superblock_crc()
248 comp_crc = crc32((uint8_t *)super, fsdata->f_sbbytes); in nandfs_calc_superblock_crc()
251 super->s_sum = comp_crc; in nandfs_calc_superblock_crc()
[all …]
/NextBSD/sbin/fsck_ffs/
HDsetup.c319 ufs2_daddr_t super; in readsb() local
323 super = bflag; in readsb()
325 if ((blread(fsreadfd, (char *)&sblock, super, (long)SBLOCKSIZE))) in readsb()
339 super = sblock_try[i] / dev_bsize; in readsb()
341 if ((blread(fsreadfd, (char *)&sblock, super, in readsb()
366 super *= dev_bsize; in readsb()
368 sblk.b_bno = super / dev_bsize; in readsb()
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDRegionInfo.h566 typename std::conditional<IsConst, const BlockT, BlockT>::type *> super;
570 typedef typename super::pointer pointer;
574 : super(df_begin(Entry)) {
578 super::Visited.insert(Exit);
582 block_iterator_wrapper() : super(df_end<pointer>((BlockT *)nullptr)) {}
584 /*implicit*/ block_iterator_wrapper(super I) : super(I) {}
590 return const_cast<BlockT *>(super::operator*());
HDRegionIterator.h36 typedef std::iterator<std::forward_iterator_tag, NodeType, ptrdiff_t> super; typedef
92 typedef typename super::pointer pointer;
160 typedef std::iterator<std::forward_iterator_tag, NodeType, ptrdiff_t> super; typedef
169 typedef typename super::pointer pointer;
/NextBSD/contrib/llvm/include/llvm/IR/
HDCFG.h33 Ptr*> super; typedef
44 typedef typename super::pointer pointer;
45 typedef typename super::reference reference;
117 super; typedef
120 typedef typename super::pointer pointer;
121 typedef typename super::reference reference;
/NextBSD/contrib/llvm/include/llvm/ADT/
HDSparseMultiSet.h247 typedef std::iterator<std::bidirectional_iterator_tag, ValueT> super; typedef
248 typedef typename super::value_type value_type;
249 typedef typename super::difference_type difference_type;
250 typedef typename super::pointer pointer;
251 typedef typename super::reference reference;
HDEquivalenceClasses.h243 const ElemTy, ptrdiff_t> super; typedef
248 typedef typename super::pointer pointer;
249 typedef typename super::reference reference;
HDilist.h151 NodeTy, ptrdiff_t> super;
153 typedef typename super::value_type value_type;
154 typedef typename super::difference_type difference_type;
155 typedef typename super::pointer pointer;
156 typedef typename super::reference reference;
/NextBSD/include/os/
HDobject.h81 #define OS_OBJECT_DECL_SUBCLASS(name, super) \ argument
82 OS_OBJECT_DECL(name, <OS_OBJECT_CLASS(super)>)
/NextBSD/lib/libdispatch/os/
HDobject.h81 #define OS_OBJECT_DECL_SUBCLASS(name, super) \ argument
82 OS_OBJECT_DECL(name, <OS_OBJECT_CLASS(super)>)
HDobject_private.h93 #define _OS_OBJECT_DECL_SUBCLASS_INTERFACE(name, super) \ argument
94 @interface OS_OBJECT_CLASS(name) : OS_OBJECT_CLASS(super) \
/NextBSD/sys/boot/ficl/softwords/
HDstring.fr127 this --> super --> hashcode
136 2swap 2over --> super --> set
141 2swap 2over --> super --> cat
/NextBSD/contrib/compiler-rt/lib/asan/scripts/
HDasan_symbolize.py69 super(LLVMSymbolizer, self).__init__()
135 super(Addr2LineSymbolizer, self).__init__()
202 super(DarwinSymbolizer, self).__init__()
238 super(ChainSymbolizer, self).__init__()
272 super(BreakpadSymbolizer, self).__init__()
/NextBSD/contrib/gdb/gdb/
HDobjc-lang.c1759 read_objc_super (CORE_ADDR addr, struct objc_super *super) in read_objc_super() argument
1761 super->receiver = read_memory_unsigned_integer (addr, 4); in read_objc_super()
1762 super->class = read_memory_unsigned_integer (addr + 4, 4); in read_objc_super()
1888 CORE_ADDR super; in resolve_msgsend_super() local
1892 super = OBJC_FETCH_POINTER_ARGUMENT (0); in resolve_msgsend_super()
1895 read_objc_super (super, &sstr); in resolve_msgsend_super()
1912 CORE_ADDR super; in resolve_msgsend_super_stret() local
1916 super = OBJC_FETCH_POINTER_ARGUMENT (1); in resolve_msgsend_super_stret()
1919 read_objc_super (super, &sstr); in resolve_msgsend_super_stret()
/NextBSD/contrib/gcc/config/arm/
HDREADME-interworking106 -mcaller-super-interworking
127 -mcallee-super-interworking
142 -mcallee-super-interworking, which affects all externally visible
191 `-mcallee-super-interworking' switch, or with the `interfacearm'
196 *Use `-mcaller-super-interworking'*
199 code must be compiled with the `-mcaller-super-interworking'
316 6. How caller-super-interworking support works
319 When the -mcaller-super-interworking command line switch is specified
372 7. How callee-super-interworking support works
375 When -mcallee-super-interworking is specified on the command line the
[all …]
/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
HDerr.D_DECL_COMBO.UnionWithoutColon.d51 union superStruct super; variable
/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/
HDerr.D_DECL_COMBO.StructWithoutColon.d56 struct superStruct super; variable

12345