Home
last modified time | relevance | path

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

12345678

/src/usr.sbin/quot/
H A Dquot.c104 get_inode(int fd, struct fs *super, ino_t ino) in get_inode() argument
121 if (ipbuf == NULL || ino < last || ino >= last + INOCNT(super)) { in get_inode()
122 if (super->fs_magic == FS_UFS2_MAGIC && in get_inode()
123 (cgp == NULL || cg != ino_to_cg(super, ino))) { in get_inode()
124 cg = ino_to_cg(super, ino); in get_inode()
125 if (cgp == NULL && (cgp = malloc(super->fs_cgsize)) == NULL) in get_inode()
127 if (lseek(fd, (off_t)cgtod(super, cg) << super->fs_fshift, 0) < 0) in get_inode()
129 if (read(fd, cgp, super->fs_cgsize) != super->fs_cgsize) in get_inode()
134 if (ipbuf == NULL && (ipbuf = malloc(INOSZ(super))) == NULL) in get_inode()
136 last = rounddown(ino, INOCNT(super)); in get_inode()
[all …]
/src/contrib/unbound/dns64/
H A Ddns64.c820 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) in dns64_adjust_a() argument
822 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id]; in dns64_adjust_a()
830 log_assert(super->region); in dns64_adjust_a()
835 if(!super->return_msg) { in dns64_adjust_a()
836 super->return_msg = (struct dns_msg*)regional_alloc( in dns64_adjust_a()
837 super->region, sizeof(struct dns_msg)); in dns64_adjust_a()
838 if(!super->return_msg) in dns64_adjust_a()
840 memset(super->return_msg, 0, sizeof(*super->return_msg)); in dns64_adjust_a()
841 super->return_msg->qinfo = super->qinfo; in dns64_adjust_a()
849 cp = construct_reply_info_base(super->region, rep->flags, rep->qdcount, in dns64_adjust_a()
[all …]
/src/contrib/unbound/util/
H A Dalloc.c103 alloc_init(struct alloc_cache* alloc, struct alloc_cache* super, in alloc_init() argument
107 alloc->super = super; in alloc_init()
121 if(alloc->super) in alloc_init()
123 if(!alloc->super) { in alloc_init()
148 if(!alloc->super) { in alloc_clear_special()
154 if(!alloc->super) { in alloc_clear_special()
166 if(!alloc->super) { in alloc_clear()
169 if(alloc->super && alloc->quar) { in alloc_clear()
174 lock_quick_lock(&alloc->super->lock); in alloc_clear()
175 alloc_set_special_next(p, alloc->super->quar); in alloc_clear()
[all …]
H A Dub_event_pluggable.c138 struct ub_event_base super; member
143 struct ub_event super; member
290 my_ev->super.magic = UB_EVENT_MAGIC; in my_event_new()
291 my_ev->super.vmt = &default_event_vmt; in my_event_new()
292 return &my_ev->super; in my_event_new()
310 my_ev->super.magic = UB_EVENT_MAGIC; in my_signal_new()
311 my_ev->super.vmt = &default_event_vmt; in my_signal_new()
312 return &my_ev->super; in my_signal_new()
332 my_ev->super.magic = UB_EVENT_MAGIC; in my_winsock_register_wsaevent()
333 my_ev->super.vmt = &default_event_vmt; in my_winsock_register_wsaevent()
[all …]
H A Dalloc.h76 struct alloc_cache* super; member
107 void alloc_init(struct alloc_cache* alloc, struct alloc_cache* super,
/src/sbin/pfctl/
H A Dpfctl_optimize.c1562 exclude_supersets(struct pfctl_rule *super, struct pfctl_rule *sub) in exclude_supersets() argument
1564 if (super->ifname[0] == '\0') in exclude_supersets()
1566 if (super->direction == PF_INOUT) in exclude_supersets()
1568 if ((super->proto == 0 || super->proto == sub->proto) && in exclude_supersets()
1569 super->flags == 0 && super->flagset == 0 && (sub->flags || in exclude_supersets()
1571 sub->flags = super->flags; in exclude_supersets()
1572 sub->flagset = super->flagset; in exclude_supersets()
1574 if (super->proto == 0) in exclude_supersets()
1577 if (super->src.port_op == 0) { in exclude_supersets()
1582 if (super->dst.port_op == 0) { in exclude_supersets()
[all …]
/src/tests/atf_python/sys/netpfil/ipfw/
H A Dinsns.py190 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
216 self = super()._parse(data)
241 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
255 self = super()._parse(data)
267 ret = super().__bytes__()
280 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
293 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
303 self = super()._parse(data[:4])
308 return super().__bytes__() + struct.pack("@I", self.u32)
316 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1, u32=kidx)
[all …]
H A Dioctl.py132 super().__init__(obj_type)
193 super().__init__(obj_type)
245 super().__init__(obj_type)
300 super().__init__(obj_type)
355 super().__init__(obj_type, obj_list)
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DDebugify.h236 using super = legacy::PassManager;
245 super::add(P); in add()
258 super::add(createDebugifyFunctionPass(Mode, Name, DebugInfoBeforePass)); in add()
259 super::add(P); in add()
260 super::add(createCheckDebugifyFunctionPass( in add()
265 super::add(createDebugifyModulePass(Mode, Name, DebugInfoBeforePass)); in add()
266 super::add(P); in add()
267 super::add(createCheckDebugifyModulePass( in add()
272 super::add(P); in add()
/src/tests/atf_python/sys/netlink/
H A Dattrs.py81 super().__init__(nla_type, b"")
116 super().__init__(nla_type, b"")
143 super().__init__(nla_type, b"")
170 super().__init__(nla_type, b"")
197 super().__init__(nla_type, b"")
223 super().__init__(nla_type, b"")
268 super().__init__(nla_type, addr)
274 super().__init__(nla_type, addr)
280 super().__init__(nla_type, b"")
310 super().__init__(nla_type, b"")
H A Dnetlink_route.py527 super().__init__(nla_type, data)
546 super().__init__(nla_type, b"")
699 super().__init__(helper, nlm_type)
739 super().__init__(helper, nlm_type)
771 super().__init__(helper, nlm_type)
803 super().__init__(helper, nlm_type)
/src/contrib/unbound/contrib/
H A Daaaa-filter-iterator.patch200 + * @param forq: super query state.
204 + struct module_qstate* super)
207 + struct iter_qstate* super_iq = (struct iter_qstate*)super->minfo[id];
213 + /* let super go to evaluation of targets after this */
218 + log_query_info(VERB_ALGO, "ASN-AAAA-filter: processAAAAResponse super",
219 + &super->qinfo);
229 + log_query_info(VERB_ALGO, "ASN-AAAA-filter: superq", &super->qinfo);
237 + if(!cache_fill_missing(super->env,
238 + super_iq->qchase.qclass, super->region,
247 * Return priming query results to interested super querystates.
[all …]
/src/contrib/lib9p/pytest/
H A Dp9conn.py66 super(RemoteError, self).__init__(self, self.message)
327 super(P9Client, self).__init__(logger)
585 pkt, is_full = super(P9Client, self).read()
726 super(P9Client, self).connect(server, port)
736 super(P9Client, self).write(self.proto.pack_from(req))
787 super(P9Client, self).write(pkt)
805 super(P9Client, self).shutdown()
818 super(P9Client, self).write(pkt)
852 super(P9Client, self).write(pkt)
893 super(P9Client, self).write(pkt)
[all …]
/src/tests/sys/kern/
H A Dsonewconn_overflow.py72 super(IPv4Test, self).setup(socket.AF_INET, (V4HOST, TCPPORT))
76 super(IPv6Test, self).setup(socket.AF_INET6, (V6HOST, TCPPORT))
80 super(UnixTest, self).setup(socket.AF_UNIX, UNIXSOCK)
82 super(UnixTest, self).__del__()
/src/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/
H A Dhtr.rst35 A “basic super block” is the longest sequence of blocks that always occur in the same order. (The c…
37 The image below shows the "basic super blocks" of the sequence. Each unique "basic super block" is …
41 *Procedure to find all super blocks:*
48 - A block with more than one distinct successor is always the start of a super block, the super blo…
/src/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A Dexceptions.py207 super(SnapshotFailure, self).__init__(errors, suppressed_count)
214 super(SnapshotDestructionFailure, self).__init__(
262 super(BookmarkFailure, self).__init__(errors, suppressed_count)
269 super(BookmarkDestructionFailure, self).__init__(
298 super(HoldFailure, self).__init__(errors, suppressed_count)
305 super(HoldReleaseFailure, self).__init__(errors, suppressed_count)
366 super(ReceivePropertyFailure, self).__init__(errors, suppressed_count)
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfo.h577 using super =
582 using value_type = typename super::value_type;
586 : super(df_begin(Entry)) {
590 super::Visited.insert(Exit);
594 block_iterator_wrapper() : super(df_end<value_type>((BlockT *)nullptr)) {}
596 /*implicit*/ block_iterator_wrapper(super I) : super(I) {}
602 return const_cast<BlockT *>(super::operator*());
/src/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h350 using super = typename Traits::AggregateBuilderBase; variable
360 : super(builder, parent) {} in ConstantAggregateBuilderTemplateBase()
423 using super = variable
440 : super(builder, parent), EltTy(eltTy) {} in ConstantArrayBuilderTemplateBase()
459 using super = variable
476 : super(builder, parent), StructTy(structTy) { in ConstantStructBuilderTemplateBase()
/src/sys/contrib/device-tree/Bindings/usb/
H A Dgeneric.txt5 speed. Valid arguments are "super-speed-plus",
6 "super-speed", "high-speed", "full-speed" and
52 maximum-speed = "super-speed";
/src/stand/ficl/softwords/
H A Dstring.fr126 this --> super --> hashcode
135 2swap 2over --> super --> set
140 2swap 2over --> super --> cat
/src/contrib/unbound/edns-subnet/
H A Dsubnetmod.c1115 struct module_qstate *super) in subnetmod_inform_super() argument
1118 (struct subnet_qstate*)super->minfo[id]; in subnetmod_inform_super()
1120 &super->qinfo); in subnetmod_inform_super()
1125 super->return_msg = NULL; in subnetmod_inform_super()
1126 super->return_rcode = LDNS_RCODE_SERVFAIL; in subnetmod_inform_super()
1129 super->return_rcode = LDNS_RCODE_NOERROR; in subnetmod_inform_super()
1130 super->return_msg = dns_copy_msg(qstate->return_msg, super->region); in subnetmod_inform_super()
1131 if(!super->return_msg) { in subnetmod_inform_super()
1133 super->return_rcode = LDNS_RCODE_SERVFAIL; in subnetmod_inform_super()
/src/contrib/unbound/respip/
H A Drespip.c1231 struct module_qstate* super) in respip_inform_super() argument
1233 struct respip_qstate* rq = (struct respip_qstate*)super->minfo[id]; in respip_inform_super()
1240 log_assert(super->return_msg && super->return_msg->rep); in respip_inform_super()
1250 if(!respip_merge_cname(super->return_msg->rep, &qstate->qinfo, in respip_inform_super()
1251 qstate->return_msg->rep, super->client_info, in respip_inform_super()
1252 super->env->need_to_validate, &new_rep, super->region, in respip_inform_super()
1256 super->return_msg->rep = new_rep; in respip_inform_super()
1260 super->return_rcode = LDNS_RCODE_SERVFAIL; in respip_inform_super()
1261 super->return_msg = NULL; in respip_inform_super()
/src/sys/fs/procfs/
H A Dprocfs_map.c91 bool super; in procfs_doprocmap() local
144 kern_proc_vmmap_resident(map, entry, &resident, &super); in procfs_doprocmap()
/src/tools/tools/git/ghpr/
H A DREADME4 in touch with Warner about them, you may find it's super
/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
H A Derr.D_DECL_COMBO.UnionWithoutColon.d51 union superStruct super; variable

12345678