| /freebsd/usr.sbin/quot/ |
| H A D | quot.c | 104 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 …]
|
| /freebsd/contrib/unbound/dns64/ |
| H A D | dns64.c | 820 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 …]
|
| /freebsd/contrib/unbound/util/ |
| H A D | alloc.c | 103 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 D | ub_event_pluggable.c | 138 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 D | alloc.h | 76 struct alloc_cache* super; member 107 void alloc_init(struct alloc_cache* alloc, struct alloc_cache* super,
|
| /freebsd/sbin/pfctl/ |
| H A D | pfctl_optimize.c | 1562 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 …]
|
| /freebsd/tests/atf_python/sys/netpfil/ipfw/ |
| H A D | insns.py | 190 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 D | ioctl.py | 132 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)
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | Debugify.h | 236 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()
|
| /freebsd/tests/atf_python/sys/netlink/ |
| H A D | attrs.py | 81 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 D | netlink_route.py | 527 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)
|
| /freebsd/contrib/unbound/contrib/ |
| H A D | aaaa-filter-iterator.patch | 200 + * @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 …]
|
| /freebsd/contrib/lib9p/pytest/ |
| H A D | p9conn.py | 66 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 …]
|
| /freebsd/tests/sys/kern/ |
| H A D | sonewconn_overflow.py | 72 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__()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/ |
| H A D | htr.rst | 35 A “basic super block” is the longest sequence of blocks that always occur in the same order. (The concept is akin to “Basic Block'' in compiler theory, but refers to dynamic occurrences rather than CFG nodes). 37 The image below shows the "basic super blocks" of the sequence. Each unique "basic super block" is marked with a different color 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 block will continue until the next block with more than one distinct predecessor or successor.
|
| /freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | exceptions.py | 207 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)
|
| /freebsd/tests/sys/netinet/ |
| H A D | ip_mroute.py | 65 super().setup_method(method) 111 super().setup_method(method) 144 super().setup_method(method) 161 super().setup_method(method) 236 super().setup_method(method) 309 super().setup_method(method) 379 super().setup_method(method)
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | RegionInfo.h | 577 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*());
|
| /freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | ConstantInitBuilder.h | 350 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()
|
| /freebsd/sys/contrib/device-tree/Bindings/usb/ |
| H A D | generic.txt | 5 speed. Valid arguments are "super-speed-plus", 6 "super-speed", "high-speed", "full-speed" and 52 maximum-speed = "super-speed";
|
| /freebsd/contrib/unbound/respip/ |
| H A D | respip.c | 1231 struct module_qstate* super) in respip_inform_super() 1233 struct respip_qstate* rq = (struct respip_qstate*)super->minfo[id]; in respip_inform_super() 1239 * in super. */ 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_get_mem() 1251 qstate->return_msg->rep, super->client_info, in respip_get_mem() 1252 super->env->need_to_validate, &new_rep, super->region, in respip_get_mem() 1256 super in respip_get_mem() 1210 respip_inform_super(struct module_qstate * qstate,int id,struct module_qstate * super) respip_inform_super() argument [all...] |
| /freebsd/stand/ficl/softwords/ |
| H A D | string.fr | 126 this --> super --> hashcode 135 2swap 2over --> super --> set 140 2swap 2over --> super --> cat
|
| /freebsd/contrib/unbound/edns-subnet/ |
| H A D | subnetmod.c | 1115 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()
|
| /freebsd/sys/fs/procfs/ |
| H A D | procfs_map.c | 91 bool super; in procfs_doprocmap() local 144 kern_proc_vmmap_resident(map, entry, &resident, &super); in procfs_doprocmap()
|
| /freebsd/contrib/unbound/ipsecmod/ |
| H A D | ipsecmod.c | 568 struct module_qstate* super) in ipsecmod_inform_super() 573 log_query_info(VERB_ALGO, "super is", &super->qinfo); in ipsecmod_inform_super() 574 siq = (struct ipsecmod_qstate*)super->minfo[id]; in ipsecmod_inform_super() 576 verbose(VERB_ALGO, "super has no ipsecmod state"); in ipsecmod_inform_super() 585 /* Copy to super's region. */ in ipsecmod_inform_super() 586 rrset_key = packed_rrset_copy_region(rrset_key, super->region, 0); in ipsecmod_inform_super() 593 /* Notify super to proceed. */ in ipsecmod_inform_super() 567 ipsecmod_inform_super(struct module_qstate * qstate,int id,struct module_qstate * super) ipsecmod_inform_super() argument
|