Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 946) sorted by relevance

12345678910>>...38

/minix3/tests/fs/common/
H A Dh_fsmacros.h106 #define ATF_TC_FSADD(fs,type,func,desc) \ argument
107 ATF_TC(fs##_##func); \
108 ATF_TC_HEAD(fs##_##func,tc) \
114 void *fs##func##tmp; \
116 ATF_TC_BODY(fs##_##func,tc) \
120 FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp); \
121 func(tc,FSTEST_MNTNAME); \
156 #define ATF_TP_FSADD(fs,func) \ argument
157 ATF_TP_ADD_TC(tp,fs##_##func)
159 #define ATF_TC_FSAPPLY_NOZFS(func,desc) \ argument
[all …]
/minix3/sys/sys/
H A Dsdt.h86 #define SDT_PROBE_DEFINE(prov, mod, func, name) argument
87 #define SDT_PROBE_DECLARE(prov, mod, func, name) argument
88 #define SDT_PROBE(prov, mod, func, name, arg0, arg1, arg2, arg3, arg4) argument
89 #define SDT_PROBE_ARGTYPE(prov, mod, func, name, num, type, xtype) argument
91 #define SDT_PROBE_DEFINE0(prov, mod, func, name) argument
92 #define SDT_PROBE_DEFINE1(prov, mod, func, name, arg0) argument
93 #define SDT_PROBE_DEFINE2(prov, mod, func, name, arg0, arg1) argument
94 #define SDT_PROBE_DEFINE3(prov, mod, func, name, arg0, arg1, arg2) argument
95 #define SDT_PROBE_DEFINE4(prov, mod, func, name, arg0, arg1, arg2, arg3) argument
96 #define SDT_PROBE_DEFINE5(prov, mod, func, name, arg0, arg1, arg2, arg3, arg4) argument
[all …]
/minix3/minix/lib/libddekit/src/
H A Dpci.c32 int func; /* don't support multiple functionalities yet -> 0 */ member
38 int func);
86 d->func = 0; in ddekit_pci_init_only_one()
119 int ddekit_pci_get_device(int nr, int *bus, int *slot, int *func) in ddekit_pci_get_device() argument
125 *func =0; in ddekit_pci_get_device()
137 ddekit_get_dev_helper(int bus, int slot, int func) in ddekit_get_dev_helper() argument
157 (int bus, int slot, int func, int pos, int len, ddekit_uint32_t *val) in ddekit_pci_read() argument
161 return ddekit_pci_readb(bus, slot, func, pos, in ddekit_pci_read()
164 return ddekit_pci_readw(bus, slot, func, pos, in ddekit_pci_read()
167 return ddekit_pci_readl(bus, slot, func, pos, val); in ddekit_pci_read()
[all …]
/minix3/libexec/telnetd/
H A Dslc.c133 add_slc(char func, char flag, cc_t val) in add_slc() argument
136 if ((*slcptr++ = (unsigned char)func) == 0xff) in add_slc()
221 process_slc(u_int func, u_int flag, cc_t val) in process_slc() argument
228 if (func > NSLC) { in process_slc()
229 add_slc(func, SLC_NOSUPPORT, 0); in process_slc()
238 if (func == 0) { in process_slc()
254 mylevel = slctab[func].current.flag & SLC_LEVELBITS; in process_slc()
261 if (hislevel == mylevel && (val == slctab[func].current.val || ack)) { in process_slc()
273 change_slc(func, flag, val); in process_slc()
285 change_slc(int func, int flag, cc_t val) in change_slc() argument
[all …]
/minix3/minix/include/arch/i386/include/
H A Dpci_intel.h19 #define PCII_SELREG_(bus, dev, func, reg) \ argument
23 (((func) << PCIIC_FUNCNUM_SHIFT) & PCIIC_FUNCNUM_MASK) | \
27 #define PCII_RREG8_(bus, dev, func, reg) \ argument
28 (pci_outl(PCII_CONFADD, PCII_SELREG_(bus, dev, func, reg)), \
30 #define PCII_RREG16_(bus, dev, func, reg) \ argument
31 (pci_outl(PCII_CONFADD, PCII_SELREG_(bus, dev, func, reg)), \
33 #define PCII_RREG32_(bus, dev, func, reg) \ argument
34 (pci_outl(PCII_CONFADD, PCII_SELREG_(bus, dev, func, reg)), \
37 #define PCII_WREG8_(bus, dev, func, reg, val) \ argument
38 (pci_outl(PCII_CONFADD, PCII_SELREG_(bus, dev, func, reg)), \
[all …]
/minix3/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dtest_soft_pkcs11.c40 static CK_FUNCTION_LIST_PTR func; variable
59 ret = (*func->C_FindObjectsInit)(session, search_data, num_search_data); in find_object()
63 ret = (*func->C_FindObjects)(session, object, 1, &object_count); in find_object()
71 ret = (*func->C_FindObjectsFinal)(session); in find_object()
94 ret = C_GetFunctionList(&func); in main()
98 (*func->C_Initialize)(NULL_PTR); in main()
100 ret = (*func->C_GetSlotList)(FALSE, NULL, &num_slots); in main()
110 ret = (*func->C_GetSlotList)(FALSE, slot_ids, &num_slots); in main()
117 ret = (*func->C_GetSlotInfo)(slot, &slot_info); in main()
124 ret = (*func->C_OpenSession)(slot, CKF_SERIAL_SESSION, in main()
[all …]
/minix3/external/bsd/libc++/dist/libcxx/src/
H A Dstring.cpp48 void throw_from_string_out_of_range( const string& func ) in throw_from_string_out_of_range() argument
50 throw_helper<out_of_range>(func + ": out of range"); in throw_from_string_out_of_range()
54 void throw_from_string_invalid_arg( const string& func ) in throw_from_string_invalid_arg() argument
56 throw_helper<invalid_argument>(func + ": no conversion"); in throw_from_string_invalid_arg()
64 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper() argument
73 throw_from_string_out_of_range(func); in as_integer_helper()
75 throw_from_string_invalid_arg(func); in as_integer_helper()
84 as_integer(const string& func, const S& s, size_t* idx, int base);
90 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
93 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp10 …void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match defi…
11 …void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaratio…
12 …void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does…
13 …void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration doe…
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func() function in N2::N1::S2
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func() function in N2::N1::S2
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func() function in N2::N1::S2
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func() function in N2::N1::S2
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does … in func() function in N2::N1::S2
H A Dwarn-overloaded-virtual.cpp86 virtual void func();
90 virtual void func();
97 void func(int);
98 void func();
104 virtual void func();
108 virtual void func();
115 virtual void func();
119 void func(int);
120 void func();
H A Dvirtuals.cpp40 typedef int func(int); typedef
41 func *a();
43 virtual func f = 0;
44 virtual func (g) = 0;
45 func *h = 0;
51 virtual virtual void func(); // expected-warning {{duplicate 'virtual' declaration specifier}}
H A Dnamespace-alias.cpp58 namespace B { void func (); }
66 func(); in g()
71 namespace KA { void func(); }
75 KB::func(); in f()
80 KC::func(); in g()
86 KB::func(); // expected-error {{undeclared identifier 'KB'}} in h()
87 KC::func(); // expected-error {{undeclared identifier 'KC'}} in h()
/minix3/minix/include/ddekit/
H A Dpci.h29 int ddekit_pci_get_device(int nr, int *bus, int *slot, int *func);
31 int ddekit_pci_read(int bus, int slot, int func, int pos, int len,
33 int ddekit_pci_write(int bus, int slot, int func, int pos, int len,
48 int ddekit_pci_readb(int bus, int slot, int func, int pos,
63 int ddekit_pci_readw(int bus, int slot, int func, int pos,
78 int ddekit_pci_readl(int bus, int slot, int func, int pos,
93 int ddekit_pci_writeb(int bus, int slot, int func, int pos,
108 int ddekit_pci_writew(int bus, int slot, int func, int pos,
123 int ddekit_pci_writel(int bus, int slot, int func, int pos,
144 *func, struct ddekit_pci_dev *start);
[all …]
/minix3/external/bsd/nvi/dist/ipc/
H A Dipc_cmd.c74 ipc_unmarshall_a(IPVIWIN *ipvi, IP_BUF *ipb, IPFunc func) in ipc_unmarshall_a() argument
76 return ((IPFunc_a)func)(ipvi, ipb->str1, ipb->len1); in ipc_unmarshall_a()
80 ipc_unmarshall_12(IPVIWIN *ipvi, IP_BUF *ipb, IPFunc func) in ipc_unmarshall_12() argument
82 return ((IPFunc_12)func)(ipvi, ipb->val1, ipb->val2); in ipc_unmarshall_12()
86 ipc_unmarshall(IPVIWIN *ipvi, IP_BUF *ipb, IPFunc func) in ipc_unmarshall() argument
88 return func(ipvi); in ipc_unmarshall()
92 ipc_unmarshall_ab1(IPVIWIN *ipvi, IP_BUF *ipb, IPFunc func) in ipc_unmarshall_ab1() argument
94 return ((IPFunc_ab1)func)(ipvi, ipb->str1, ipb->len1, ipb->str2, ipb->len2, ipb->val1); in ipc_unmarshall_ab1()
99 ipc_unmarshall_1a(IPVIWIN *ipvi, IP_BUF *ipb, IPFunc func)
101 return ((IPFunc_1a)func)(ipvi, ipb->val1, ipb->str1, ipb->len1);
[all …]
/minix3/external/bsd/nvi/dist/common/
H A Ddldb.c11 #define RELOC(func,returntype,args,proto,types) \ argument
12 static returntype reloc_##func __P(proto); \
13 returntype (*nvi_##func) __P(proto) = reloc_##func; \
14 static returntype reloc_##func args \
18 return nvi_##func args; \
26 #define LOADSYM(func) \ argument
27 if ((nvi_##func = dlsym(handle, #func)) == NULL) \
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Ddllexport.cpp20 #define USE(func) void UNIQ(use)() { func(); } argument
21 #define USEMEMFUNC(class, func) void (class::*UNIQ(use)())() { return &class::func; } argument
23 #define INST(func) template void func(); argument
638 template <typename T> struct ClassTemplate { void func() {} }; in func() function
639 template <typename T> struct __declspec(dllexport) ExportedClassTemplate { void func() {} }; in func() function
640 template <typename T> struct __declspec(dllimport) ImportedClassTemplate { void func(); };
641 template <typename T> void ImportedClassTemplate<T>::func() {} in func() function in ImportedClassTemplate
643 template <typename T> struct ExplicitlySpecializedTemplate { void func() {} }; in func() function
644 template <> struct ExplicitlySpecializedTemplate<int> { void func() {} }; in func() function
645 template <typename T> struct ExplicitlyExportSpecializedTemplate { void func() {} }; in func() function
[all …]
H A Ddebug-info-class.cpp2 void func(foo *f) { in func() function
5 void func(bar *f) { in func() function
8 void func(baz *f) { in func() function
30 void func() { in func() function
37 virtual void func() { in func() function
49 virtual void func();
71 x.func(); in f1()
H A Ddllimport.cpp27 #define USE(func) void UNIQ(use)() { func(); } argument
28 #define USEMEMFUNC(class, func) void (class::*UNIQ(use)())() { return &class::func; } argument
730 template <typename T> struct ClassTemplate { void func() {} }; in func() function
731 template <typename T> struct __declspec(dllexport) ExportedClassTemplate { void func() {} }; in func() function
732 template <typename T> struct __declspec(dllimport) ImportedClassTemplate { void func(); };
734 template <typename T> struct ExplicitlySpecializedTemplate { void func() {} }; in func() function
735 template <> struct ExplicitlySpecializedTemplate<int> { void func() {} }; in func() function
736 template <typename T> struct ExplicitlyExportSpecializedTemplate { void func() {} }; in func() function
737 template <> struct __declspec(dllexport) ExplicitlyExportSpecializedTemplate<int> { void func() {} … in func() function
738 template <typename T> struct ExplicitlyImportSpecializedTemplate { void func() {} }; in func() function
[all …]
/minix3/crypto/external/bsd/openssl/dist/util/
H A Dck_errf.pl21 $func="";
28 $func = $1;
29 $func =~ tr/A-Z/a-z/;
36 if ($func eq "")
48 { print "$file:$.:$func:$n [${errlib}err]\n"; $bad = 1; next; }
51 if (($n ne $func) && ($errlib ne "SYS"))
52 { print "$file:$.:$func:$n\n"; $bad = 1; next; }
/minix3/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn1_mac.h75 # define M_ASN1_D2I_vars(a,type,func) \ argument
83 { if ((ret=(type)func()) == NULL) \
98 # define M_ASN1_D2I_Finish(a,func,e) \ argument
103 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
114 # define M_ASN1_D2I_Finish_nolen(a, func, e) \ argument
121 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
129 # define M_ASN1_D2I_get(b, func) \ argument
131 if (func(&(b),&c.p,c.slen) == NULL) \
136 # define M_ASN1_D2I_get_x(type,b,func) \ argument
138 if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL) \
[all …]
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/
H A D2009-06-01-addrofknr.c6 int (*func)(); member
9 static int func(f) in func() function
20 fp.func = &func; in main()
21 fp.func = func; in main()
/minix3/external/bsd/llvm/dist/llvm/test/Linker/
H A Dunnamed-addr1-a.ll9 define weak void @func-a() { ret void }
10 ; CHECK-DAG: define weak void @func-a() {
11 define weak void @func-b() unnamed_addr { ret void }
12 ; CHECK-DAG: define weak void @func-b() unnamed_addr {
29 declare void @func-c()
30 ; CHECK-DAG: define weak void @func-c() {
31 define weak void @func-d() { ret void }
32 ; CHECK-DAG: define weak void @func-d() {
33 define weak void @func-e() unnamed_addr { ret void }
34 ; CHECK-DAG: define weak void @func-e() unnamed_addr {
[all …]
/minix3/crypto/external/bsd/openssl/dist/crypto/perlasm/
H A Dx86masm.pl97 { my $func=shift;
98 my $global=($func !~ /^_/);
99 my $begin="${::lbdecor}_${func}_begin";
101 &::LABEL($func,$global?"$begin":"$nmdecor$func");
102 $func="ALIGN\t16\n".$nmdecor.$func."\tPROC";
104 if ($global) { $func.=" PUBLIC\n${begin}::\n"; }
105 else { $func.=" PRIVATE\n"; }
106 push(@out,$func);
110 { my $func=shift;
112 push(@out,"$nmdecor$func ENDP\n");
H A Dx86gas.pl101 { my $func=shift;
102 my $global=($func !~ /^_/);
103 my $begin="${::lbdecor}_${func}_begin";
105 &::LABEL($func,$global?"$begin":"$nmdecor$func");
106 $func=$nmdecor.$func;
108 push(@out,".globl\t$func\n") if ($global);
110 { push(@out,".def\t$func;\t.scl\t".(3-$global).";\t.type\t32;\t.endef\n"); }
114 { push(@out,".type $func,\@function\n"); }
116 push(@out,"$func:\n");
122 { my $func=shift;
[all …]
/minix3/external/bsd/bind/dist/lib/dns/
H A Ddst_pkcs11.h32 #define PK11_CALL(func, args, fallback) \ argument
33 ((void) (((rv = (func) args) == CKR_OK) || \
34 ((ret = dst__pkcs11_toresult(#func, __FILE__, __LINE__, \
37 #define PK11_RET(func, args, fallback) \ argument
38 ((void) (((rv = (func) args) == CKR_OK) || \
39 ((ret = dst__pkcs11_toresult(#func, __FILE__, __LINE__, \
/minix3/external/bsd/llvm/dist/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp4.cpp5 friend void func(A);
12 static void func(B);
23 void func(C); // expected-note {{'C::func' declared here}} \
35 func(A::A()); in test()
41func(B::B()); // expected-error {{use of undeclared identifier 'func'; did you mean 'C::func'?}} \ in test()
43 func(C::C()); in test()

12345678910>>...38