Searched refs:super (Results 1 - 25 of 71) sorted by relevance

123

/freebsd-11-stable/usr.sbin/quot/
H A Dquot.c111 get_inode(int fd, struct fs *super, ino_t ino) argument
123 if (super != NULL && super->fs_magic == FS_UFS2_MAGIC) {
131 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) {
132 if (super->fs_magic == FS_UFS2_MAGIC &&
133 (!cgp || cg != ino_to_cg(super, ino))) {
134 cg = ino_to_cg(super, ino);
135 if (!cgp && !(cgp = malloc(super->fs_cgsize)))
137 if (lseek(fd, (off_t)cgtod(super, cg) << super
169 virtualblocks(struct fs *super, union dinode *dp) argument
202 isfree(struct fs *super, union dinode *dp) argument
374 dofsizes(int fd, struct fs *super, char *name) argument
446 douser(int fd, struct fs *super, char *name) argument
486 donames(int fd, struct fs *super, char *name) argument
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/
H A Derr.D_DECL_COMBO.StructWithoutColon.d56 struct superStruct super;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
H A Derr.D_DECL_COMBO.UnionWithoutColon.d51 union superStruct super;
/freebsd-11-stable/contrib/unbound/util/
H A Dalloc.c103 alloc_init(struct alloc_cache* alloc, struct alloc_cache* super, argument
107 alloc->super = super;
121 if(alloc->super)
123 if(!alloc->super) {
148 if(!alloc->super) {
154 if(!alloc->super) {
166 if(!alloc->super) {
169 if(alloc->super && alloc->quar) {
170 /* push entire list into super */
[all...]
H A Dub_event_pluggable.c138 struct ub_event_base super; member in struct:my_event_base
143 struct ub_event super; member in struct:my_event
290 my_ev->super.magic = UB_EVENT_MAGIC;
291 my_ev->super.vmt = &default_event_vmt;
292 return &my_ev->super;
310 my_ev->super.magic = UB_EVENT_MAGIC;
311 my_ev->super.vmt = &default_event_vmt;
312 return &my_ev->super;
332 my_ev->super.magic = UB_EVENT_MAGIC;
333 my_ev->super
[all...]
H A Dmodule.c242 struct module_qstate* super)
244 /* Overwrite super's was_ratelimited only when it was not set */
245 if(!super->was_ratelimited) {
246 super->was_ratelimited = qstate->was_ratelimited;
241 copy_state_to_super(struct module_qstate* qstate, int ATTR_UNUSED(id), struct module_qstate* super) argument
H A Dalloc.h70 * The one on top has a NULL super pointer.
73 /** lock, only used for the super. */
76 struct alloc_cache* super; member in struct:alloc_cache
103 * @param super: super to use (init that before with super_init).
107 void alloc_init(struct alloc_cache* alloc, struct alloc_cache* super,
111 * Free the alloc. Pushes all the cached items into the super structure.
112 * Or deletes them if alloc->super is NULL.
/freebsd-11-stable/contrib/unbound/dns64/
H A Ddns64.h63 struct module_qstate* super);
H A Ddns64.c804 * \param super Original AAAA query.
808 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) argument
810 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id];
818 log_assert(super->region);
823 if(!super->return_msg) {
824 super->return_msg = (struct dns_msg*)regional_alloc(
825 super->region, sizeof(struct dns_msg));
826 if(!super->return_msg)
828 memset(super->return_msg, 0, sizeof(*super
905 dns64_adjust_ptr(struct module_qstate* qstate, struct module_qstate* super) argument
940 dns64_inform_super(struct module_qstate* qstate, int id, struct module_qstate* super) argument
[all...]
/freebsd-11-stable/contrib/unbound/ipsecmod/
H A Dipsecmod.h83 /** Subordinate query done, inform this super request of its conclusion */
85 struct module_qstate* super);
/freebsd-11-stable/contrib/unbound/ipset/
H A Dipset.h60 /** Subordinate query done, inform this super request of its conclusion */
62 struct module_qstate* super);
/freebsd-11-stable/sbin/pfctl/
H A Dpfctl_optimize.c1542 exclude_supersets(struct pf_rule *super, struct pf_rule *sub) argument
1544 if (super->ifname[0] == '\0')
1546 if (super->direction == PF_INOUT)
1548 if ((super->proto == 0 || super->proto == sub->proto) &&
1549 super->flags == 0 && super->flagset == 0 && (sub->flags ||
1551 sub->flags = super->flags;
1552 sub->flagset = super->flagset;
1554 if (super
[all...]
/freebsd-11-stable/sys/fs/nandfs/
H A Dnandfs_vfsops.c218 struct nandfs_super_block *super)
222 /* Check super block magic */
223 if (super->s_magic != NANDFS_SUPER_MAGIC)
227 super_crc = super->s_sum;
230 super->s_sum = (0);
231 comp_crc = crc32((uint8_t *)super, fsdata->f_sbbytes);
234 super->s_sum = super_crc;
242 struct nandfs_super_block *super)
247 super->s_sum = 0;
248 comp_crc = crc32((uint8_t *)super, fsdat
217 nandfs_check_superblock_crc(struct nandfs_fsdata *fsdata, struct nandfs_super_block *super) argument
241 nandfs_calc_superblock_crc(struct nandfs_fsdata *fsdata, struct nandfs_super_block *super) argument
307 struct nandfs_super_block *super, *supert; local
408 struct nandfs_super_block *super; local
472 nandfs_select_sb(struct nandfs_device *fsdev, struct nandfs_super_block *supert, struct nandfs_super_block **super, int nsbs) argument
494 nandfs_read_structures_at(struct nandfs_device *fsdev, struct nandfs_fsarea *fstp, struct nandfs_fsdata *fsdata, struct nandfs_super_block *super) argument
[all...]
/freebsd-11-stable/contrib/unbound/cachedb/
H A Dcachedb.h99 /** Subordinate query done, inform this super request of its conclusion */
101 struct module_qstate* super);
/freebsd-11-stable/contrib/unbound/edns-subnet/
H A Dsubnetmod.h118 struct module_qstate* super);
/freebsd-11-stable/contrib/unbound/validator/
H A Dvalidator.h244 * inform validator super.
248 * @param super: the qstate to inform.
251 struct module_qstate* super);
/freebsd-11-stable/sbin/fsck_ffs/
H A Dsetup.c215 * Check and potentially fix certain fields in the super block.
320 * Read in the super block and its summary info.
325 ufs2_daddr_t super; local
329 super = bflag;
331 if ((blread(fsreadfd, (char *)&sblock, super, (long)SBLOCKSIZE)))
345 super = sblock_try[i] / dev_bsize;
347 if ((blread(fsreadfd, (char *)&sblock, super,
372 super *= dev_bsize;
374 sblk.b_bno = super / dev_bsize;
377 * Compare all fields that should not differ in alternate super bloc
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfo.h578 using super =
584 using value_type = typename super::value_type;
588 : super(df_begin(Entry)) {
592 super::Visited.insert(Exit);
596 block_iterator_wrapper() : super(df_end<value_type>((BlockT *)nullptr)) {}
598 /*implicit*/ block_iterator_wrapper(super I) : super(I) {}
604 return const_cast<BlockT *>(super::operator*());
H A DRegionIterator.h41 using super = std::iterator<std::forward_iterator_tag, NodeRef>;
102 using value_type = typename super::value_type;
168 using super = std::iterator<std::forward_iterator_tag, NodeRef>;
177 using value_type = typename super::value_type;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBreadthFirstIterator.h50 using super = std::iterator<std::forward_iterator_tag, typename GT::NodeRef>;
110 using pointer = typename super::pointer;
H A DEquivalenceClasses.h255 using super = std::iterator<std::forward_iterator_tag,
262 using pointer = typename super::pointer;
263 using reference = typename super::reference;
H A DSparseMultiSet.h250 using super = std::iterator<std::bidirectional_iterator_tag, ValueT>;
251 using value_type = typename super::value_type;
252 using difference_type = typename super::difference_type;
253 using pointer = typename super::pointer;
254 using reference = typename super::reference;
/freebsd-11-stable/contrib/unbound/iterator/
H A Diterator.h452 * Return priming query results to interested super querystates.
459 * @param super: the qstate to inform.
462 struct module_qstate* super);
/freebsd-11-stable/contrib/unbound/dynlibmod/
H A Ddynlibmod.h62 struct module_qstate* super);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h328 using super = typename Traits::AggregateBuilderBase;
338 : super(builder, parent) {}
401 using super =
418 : super(builder, parent), EltTy(eltTy) {}
437 using super =
454 : super(builder, parent), StructTy(structTy) {

Completed in 204 milliseconds

123