| /openbsd-src/usr.sbin/quot/ |
| H A D | quot.c | 77 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 D | dns64.c | 815 * \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 D | dns64.c | 815 * \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 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() 170 /* push entire list into super */ 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 …]
|
| /openbsd-src/usr.sbin/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() 170 /* push entire list into super */ 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 …]
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | support.py | 46 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 D | pfctl_optimize.c | 1509 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 D | test_result.py | 64 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 D | lldbbench.py | 110 super(BenchBase, self).setUp() 116 super(BenchBase, self).tearDown()
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/ |
| H A D | runner.py | 45 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 D | Debugify.h | 234 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 D | 920810-1.c | 5 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 D | super-class-2.m | 1 /* 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 D | class-2.m | 1 /* Test super classes. */ 14 @end /* { dg-error "conflicting super class name" } */
|
| /openbsd-src/gnu/llvm/clang/docs/analyzer/checkers/ |
| H A D | dealloc_example.m | 15 @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 D | lookup22.C | 4 struct super { struct 11 struct sub : super { argument
|
| /openbsd-src/gnu/llvm/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 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 D | eventwin.py | 17 super(EventWin, self).__init__(x, y, w, h, 'LLDB Event Log') 19 super(EventWin, self).draw()
|
| H A D | statuswin.py | 18 super(StatusWin, self).__init__(x, y, w) 29 super(StatusWin, self).draw()
|
| H A D | sandbox.py | 30 super(SandboxUI, self).__init__(screen, event_queue) 63 super(SandboxUI, self).handleEvent(event)
|
| /openbsd-src/gnu/llvm/llvm/bindings/python/llvm/ |
| H A D | core.py | 82 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 D | progress.py | 36 super(ProgressBar, self).__init__() 99 super( 137 super(
|
| /openbsd-src/gnu/llvm/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*());
|