Home
last modified time | relevance | path

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

1234567891011

/openbsd-src/usr.sbin/quot/
H A Dquot.c77 get_inode(int fd, struct fs *super, ino_t ino) in get_inode() argument
89 if (super != NULL && super->fs_magic == FS_UFS2_MAGIC) { in get_inode()
97 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) { in get_inode()
98 if (super->fs_magic == FS_UFS2_MAGIC && in get_inode()
99 (!cgp || cg != ino_to_cg(super, ino))) { in get_inode()
100 cg = ino_to_cg(super, ino); in get_inode()
101 if (!cgp && !(cgp = malloc(super->fs_cgsize))) in get_inode()
103 if (pread(fd, cgp, super->fs_cgsize, in get_inode()
104 (off_t)cgtod(super, cg) << super->fs_fshift) in get_inode()
105 != super->fs_cgsize) in get_inode()
[all …]
/openbsd-src/usr.sbin/unbound/dns64/
H A Ddns64.c815 * \param super Original AAAA query.
819 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) in dns64_adjust_a()
821 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id]; in dns64_adjust_a()
829 log_assert(super->region); in dns64_adjust_a()
834 if(!super->return_msg) { in dns64_adjust_a()
835 super->return_msg = (struct dns_msg*)regional_alloc( in dns64_adjust_a()
836 super->region, sizeof(struct dns_msg)); in dns64_adjust_a()
837 if(!super->return_msg) in dns64_adjust_a()
839 memset(super->return_msg, 0, sizeof(*super in dns64_adjust_a()
818 dns64_adjust_a(int id,struct module_qstate * super,struct module_qstate * qstate) dns64_adjust_a() argument
915 dns64_adjust_ptr(struct module_qstate * qstate,struct module_qstate * super) dns64_adjust_ptr() argument
952 dns64_inform_super(struct module_qstate * qstate,int id,struct module_qstate * super) dns64_inform_super() argument
[all...]
/openbsd-src/sbin/unwind/libunbound/dns64/
H A Ddns64.c815 * \param super Original AAAA query.
819 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) in dns64_adjust_a()
821 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id]; in dns64_adjust_a()
829 log_assert(super->region); in dns64_adjust_a()
834 if(!super->return_msg) { in dns64_adjust_a()
835 super->return_msg = (struct dns_msg*)regional_alloc( in dns64_adjust_a()
836 super->region, sizeof(struct dns_msg)); in dns64_adjust_a()
837 if(!super->return_msg) in dns64_adjust_a()
839 memset(super->return_msg, 0, sizeof(*super in dns64_adjust_a()
818 dns64_adjust_a(int id,struct module_qstate * super,struct module_qstate * qstate) dns64_adjust_a() argument
915 dns64_adjust_ptr(struct module_qstate * qstate,struct module_qstate * super) dns64_adjust_ptr() argument
952 dns64_inform_super(struct module_qstate * qstate,int id,struct module_qstate * super) dns64_inform_super() argument
[all...]
/openbsd-src/sbin/unwind/libunbound/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()
170 /* push entire list into super */ 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 …]
/openbsd-src/usr.sbin/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()
170 /* push entire list into super */ 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 …]
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dsupport.py46 super(LoggingResult, self).__init__()
50 super(LoggingResult, self).startTest(test)
54 super(LoggingResult, self).startTestRun()
58 super(LoggingResult, self).stopTest(test)
62 super(LoggingResult, self).stopTestRun()
66 super(LoggingResult, self).addFailure(*args)
70 super(LoggingResult, self).addSuccess(*args)
74 super(LoggingResult, self).addError(*args)
78 super(LoggingResult, self).addSkip(*args)
82 super(LoggingResult, self).addExpectedFailure(*args)
[all …]
/openbsd-src/sbin/pfctl/
H A Dpfctl_optimize.c1509 exclude_supersets(struct pf_rule *super, struct pf_rule *sub) in exclude_supersets() argument
1511 if (super->ifname[0] == '\0') in exclude_supersets()
1513 if (super->direction == PF_INOUT) in exclude_supersets()
1515 if ((super->proto == 0 || super->proto == sub->proto) && in exclude_supersets()
1516 super->flags == 0 && super->flagset == 0 && (sub->flags || in exclude_supersets()
1518 sub->flags = super->flags; in exclude_supersets()
1519 sub->flagset = super->flagset; in exclude_supersets()
1521 if (super->proto == 0) in exclude_supersets()
1524 if (super->src.port_op == 0) { in exclude_supersets()
1529 if (super->dst.port_op == 0) { in exclude_supersets()
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dtest_result.py64 super(LLDBTestResult, self).__init__(*args)
86 return '%sConfig=%s-%s' % (super(LLDBTestResult,
92 return super(LLDBTestResult, self)._exc_info_to_string(err, test)
182 super(LLDBTestResult, self).startTest(test)
192 super(LLDBTestResult, self).addSuccess(test)
216 super(LLDBTestResult, self).addError(test, err)
227 super(LLDBTestResult, self).addCleanupError(test, err)
244 super(LLDBTestResult, self).addFailure(test, err)
262 super(LLDBTestResult, self).addExpectedFailure(test, err, bugnumber)
272 super(LLDBTestResult, self).addSkip(test, reason)
[all …]
H A Dlldbbench.py110 super(BenchBase, self).setUp()
116 super(BenchBase, self).tearDown()
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Drunner.py45 super(TextTestResult, self).__init__()
66 super(TextTestResult, self).startTest(test)
84 super(TextTestResult, self).addSuccess(test)
91 super(TextTestResult, self).addError(test, err)
95 super(TextTestResult, self).addFailure(test, err)
99 super(TextTestResult, self).addSkip(test, reason)
103 super(TextTestResult, self).addExpectedFailure(test, err, bugnumber)
107 super(TextTestResult, self).addUnexpectedSuccess(test, bugnumber)
128 super(TextTestResult, self).stopTestRun()
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DDebugify.h234 using super = legacy::PassManager;
243 super::add(P); in add()
256 super::add(createDebugifyFunctionPass(Mode, Name, DebugInfoBeforePass)); in add()
257 super::add(P); in add()
258 super::add(createCheckDebugifyFunctionPass( in add()
263 super::add(createDebugifyModulePass(Mode, Name, DebugInfoBeforePass)); in add()
264 super::add(P); in add()
265 super::add(createCheckDebugifyModulePass( in add()
270 super::add(P); in add()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D920810-1.c5 typedef struct{void*super;int name;int size;}t; member
10 child->super=clas; in f()
21 if(bar->super!=&foo||bar->name!=0||bar->size!=sizeof(t))abort(); in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dsuper-class-2.m1 /* Test calling super from within a category class method. */
23 return [super test_func0];
43 return [super test_func]; /* { dg-bogus "dereferencing pointer to incomplete type" } */
H A Dclass-2.m1 /* Test super classes. */
14 @end /* { dg-error "conflicting super class name" } */
/openbsd-src/gnu/llvm/clang/docs/analyzer/checkers/
H A Ddealloc_example.m15 @implementation MyObject // warn: does not send 'dealloc' to super
31 [super dealloc];
46 [super dealloc];
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dlookup22.C4 struct super { struct
11 struct sub : super { argument
/openbsd-src/gnu/llvm/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…
/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Deventwin.py17 super(EventWin, self).__init__(x, y, w, h, 'LLDB Event Log')
19 super(EventWin, self).draw()
H A Dstatuswin.py18 super(StatusWin, self).__init__(x, y, w)
29 super(StatusWin, self).draw()
H A Dsandbox.py30 super(SandboxUI, self).__init__(screen, event_queue)
63 super(SandboxUI, self).handleEvent(event)
/openbsd-src/gnu/llvm/llvm/bindings/python/llvm/
H A Dcore.py82 super(Attribute, self).__init__(name, value)
90 super(OpCode, self).__init__(name, value)
98 super(TypeKind, self).__init__(name, value)
106 super(Linkage, self).__init__(name, value)
114 super(Visibility, self).__init__(name, value)
122 super(CallConv, self).__init__(name, value)
130 super(IntPredicate, self).__init__(name, value)
138 super(RealPredicate, self).__init__(name, value)
146 super(LandingPadClauseTy, self).__init__(name, value)
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/progress/
H A Dprogress.py36 super(ProgressBar, self).__init__()
99 super(
137 super(
/openbsd-src/gnu/llvm/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*());

1234567891011