| /minix3/crypto/external/bsd/heimdal/dist/cf/ |
| H A D | dispatch.m4 | 4 AC_CHECK_HEADERS([dispatch/dispatch.h]) 6 AC_FIND_FUNC_NO_LIBS(dispatch_async_f, dispatch, 8 #include <dispatch/dispatch.h>
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
| H A D | next-objc-dispatch.m | 2 // RUN: -fobjc-dispatch-method=legacy | \ 6 // RUN: -fobjc-dispatch-method=legacy | \ 10 // RUN: -fobjc-dispatch-method=non-legacy | \ 14 // RUN: -fobjc-dispatch-method=mixed | \ 19 // There are basically four ways that we end up doing message dispatch for the 21 // (1) fragile ABI, legacy dispatch 22 // (2) non-fragile ABI, legacy dispatch 23 // (2) non-fragile ABI, non-legacy dispatch 24 // (2) non-fragile ABI, mixed dispatch 26 // Note that fragile ABI and non-fragile ABI legacy dispatch are not the same,
|
| H A D | objc2-legacy-dispatch.m | 1 // RUN: %clang_cc1 -fobjc-dispatch-method=mixed -triple i386-apple-darwin10 -emit-llvm -o - %s | Fi… 8 // RUN: %clang_cc1 -fobjc-dispatch-method=legacy -emit-llvm -o - %s | FileCheck -check-prefix=CHECK…
|
| H A D | metadata-symbols-64.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-dispatch-method=mixed -emit-llvm -o - %s | … 95 // Test for FP dispatch method APIs
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGen/ |
| H A D | 2007-01-06-KNR-Proto.c | 4 int svc_register (void (*dispatch) (int)); 6 int svc_register (dispatch) 7 void (*dispatch) ();
|
| /minix3/external/bsd/llvm/dist/clang/test/Driver/ |
| H A D | darwin-objc-defaults.m | 1 // Check non-fragile ABI and dispatch method defaults. 11 // CHECK-CHECK-I386_OSX10_5-NOT: -fobjc-dispatch-method 20 // CHECK-CHECK-I386_OSX10_6-NOT: -fobjc-dispatch-method 29 // CHECK-CHECK-I386_IPHONE3_0-NOT: -fobjc-dispatch-method 39 // CHECK-CHECK-X86_64_OSX10_4: -fobjc-dispatch-method=non-legacy 48 // CHECK-CHECK-X86_64_OSX10_5: -fobjc-dispatch-method=non-legacy 75 // CHECK-CHECK-ARMV7_OSX10_5-NOT: -fobjc-dispatch-method 84 // CHECK-CHECK-ARMV7_OSX10_6-NOT: -fobjc-dispatch-method 93 // CHECK-CHECK-ARMV7_IPHONE3_0-NOT: -fobjc-dispatch-method
|
| H A D | darwin-objc-options.m | 9 // CHECK-CHECK-X86_64_ABI1-NOT: -fobjc-dispatch-method 20 // CHECK-CHECK-I386_ABI2-NOT: -fobjc-dispatch-method 31 // CHECK-CHECK-I386_IOS-NOT: -fobjc-dispatch-method
|
| /minix3/lib/libc/rpc/ |
| H A D | svc_generic.c | 90 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_create() 121 dispatch, nconf) == FALSE) in svc_create() 133 xprt = svc_tp_create(dispatch, prognum, versnum, nconf); in svc_create() 164 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_tp_create() 181 if (svc_reg(xprt, prognum, versnum, dispatch, nconf) == FALSE) { in svc_tp_create()
|
| H A D | svc.c | 212 void (*dispatch)(struct svc_req *, SVCXPRT *), in svc_reg() 246 if (s->sc_dispatch == dispatch) in svc_reg() 269 s->sc_dispatch = dispatch; in svc_reg() 321 void (*dispatch)(struct svc_req *, SVCXPRT *), int protocol) in svc_register() 327 _DIAGASSERT(dispatch != NULL); in svc_register() 331 if (s->sc_dispatch == dispatch) in svc_register() 341 s->sc_dispatch = dispatch; in svc_register()
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaTemplate/ |
| H A D | instantiate-complete.cpp | 114 static true_t dispatch(U); 115 static false_t dispatch(...); 118 enum { value = sizeof(dispatch(trigger())) == sizeof(true_t) };
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/ |
| H A D | mips16ex.ll | 31 br label %catch.dispatch 33 catch.dispatch: ; preds = %lpad 39 catch: ; preds = %catch.dispatch 66 eh.resume: ; preds = %lpad1, %catch.dispatch
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCScheduleP8.td | 15 // 1. The dispatch bundle slots 119 // and should be 'First' in dispatch. 129 // should be first in the dispatch group. 148 // dispatch group. They are simply cracked, so require DU1,DU2. 204 // first+last in dispatch group. 245 // dispatch slot. The instruction will be broken into two IOPS. The agen 378 // P8 has an 8 insn dispatch group (6 non-branch, 2 branch) and can issue up 384 // up to two branches in a dispatch group. 386 let MinLatency = 0; // Out-of-order dispatch. 392 // Try to make sure we have at least 10 dispatch groups in a loop.
|
| H A D | PPCScheduleP7.td | 20 // 1. The dispatch bundle slots 62 // (either to a float or XC op). prevents dispatch in that cycle to VS2 of any 71 // IFU/IDU will not dispatch an XS instructon 5 cycles after a vector FP 76 // Instruction dispatch groups have (at most) four non-branch instructions, and 78 // end the dispatch group, but a second branch must be the last in the group. 373 // Note that the dispatch bundle size is 6 (including 377 let MinLatency = 0; // Out-of-order dispatch. 383 // Try to make sure we have at least 10 dispatch groups in a loop.
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | method-sentinel-attr.m | 31 [p foo1:1, 0]; // expected-warning {{missing sentinel in method dispatch}} 34 [p foo5:1, NULL, 2, 1]; // expected-warning {{missing sentinel in method dispatch}} 36 [p foo6:1,2,3,4,5,6,7]; // expected-warning {{missing sentinel in method dispatch}}
|
| /minix3/external/mit/xorg/server/xorg-server/dix/ |
| H A D | Makefile | 10 SRCS= atom.c colormap.c cursor.c devices.c dispatch.c dixfonts.c \ 40 COPTS.dispatch.c= -Wno-error
|
| /minix3/external/bsd/bind/dist/lib/dns/ |
| H A D | request.c | 84 dns_dispatch_t *dispatch; member 485 request->dispatch = NULL; in new_request() 789 &request->dispatch); in dns_request_createraw4() 798 result = dns_dispatch_addresponse3(request->dispatch, dispopt, in dns_request_createraw4() 1007 &request->dispatch); in dns_request_createvia4() 1011 result = dns_dispatch_addresponse2(request->dispatch, destaddr, task, in dns_request_createvia4() 1034 dns_dispatch_detach(&request->dispatch); in dns_request_createvia4() 1292 INSIST(request->dispatch == NULL); in dns_request_destroy() 1309 dispattr = dns_dispatch_getattributes(request->dispatch); in req_getsocket() 1314 socket = dns_dispatch_getsocket(request->dispatch); in req_getsocket() [all …]
|
| H A D | Makefile.in | 67 db.@O@ dbiterator.@O@ dbtable.@O@ diff.@O@ dispatch.@O@ \ 105 db.c dbiterator.c dbtable.c diff.c dispatch.c \
|
| /minix3/external/bsd/dhcp/lib/omapip/ |
| H A D | Makefile | 7 listener.c dispatch.c generic.c support.c handle.c message.c \
|
| /minix3/external/bsd/llvm/dist/llvm/test/DebugInfo/ |
| H A D | inline-debug-info.ll | 97 br label %catch.dispatch, !dbg !21 99 catch.dispatch: ; preds = %lpad 105 catch: ; preds = %catch.dispatch 120 eh.resume: ; preds = %catch.dispatch
|
| H A D | inline-debug-info-multiret.ll | 79 br label %catch.dispatch, !dbg !21 81 catch.dispatch: ; preds = %lpad 87 catch: ; preds = %catch.dispatch 102 eh.resume: ; preds = %catch.dispatch
|
| /minix3/external/bsd/dhcp/dist/common/ |
| H A D | Makefile.am | 6 dispatch.c dlpi.c dns.c ethernet.c execute.c fddi.c \
|
| /minix3/external/bsd/dhcp/dist/omapip/ |
| H A D | Makefile.am | 5 errwarn.c listener.c dispatch.c generic.c support.c \
|
| /minix3/external/bsd/dhcp/lib/common/ |
| H A D | Makefile | 6 SRCS = raw.c parse.c nit.c icmp.c dispatch.c conflex.c upf.c bpf.c socket.c \
|
| /minix3/external/bsd/file/dist/src/ |
| H A D | vasprintf.c | 304 static int dispatch(xprintf_struct *s) in dispatch() function 597 if (dispatch(s) == EOF) in core() 619 if (dispatch(s) == EOF) in core()
|
| /minix3/external/mit/xorg/bin/xfs/ |
| H A D | Makefile | 12 SRCS= atom.c charinfo.c difsutils.c dispatch.c events.c \
|