Searched refs:FUNC (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-9.3-release/contrib/gcc/config/
H A Dnetbsd.h147 #define COLLECT_SHARED_INIT_FUNC(STREAM,FUNC) \
150 fprintf ((STREAM), "void __init() {\n\t%s();\n}\n", (FUNC)); \
153 #define COLLECT_SHARED_FINI_FUNC(STREAM,FUNC) \
156 fprintf ((STREAM), "void __fini() {\n\t%s();\n}\n", (FUNC)); \
/freebsd-9.3-release/sys/compat/ndis/
H A Dpe_var.h499 #define FUNC void(*)(void) macro
502 #define IMPORT_SFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_STDCALL }
504 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_STDCALL }
505 #define IMPORT_FFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_FASTCALL }
507 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_FASTCALL }
508 #define IMPORT_RFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_REGPARM }
510 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_REGPARM }
511 #define IMPORT_CFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_CDECL }
513 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_CDECL }
517 #define IMPORT_SFUNC(x, y) { #x, (FUNC)
[all...]
/freebsd-9.3-release/usr.bin/xlint/common/
H A Dinittyp.c122 { FUNC, { -1, -1,
123 FUNC, FUNC,
H A Dlint.h75 FUNC, /* function */ enumerator in enum:__anon10838
/freebsd-9.3-release/usr.bin/xlint/lint1/
H A Dlint.h67 FUNC /* function */ enumerator in enum:__anon10841
68 #define NTSPEC ((int)FUNC + 1)
H A Ddecl.c402 case FUNC:
778 case FUNC:
822 } else if (t == FUNC) {
878 if (t == FUNC && !tp->t_proto &&
884 if (to == FUNC) {
885 if (t == FUNC || t == ARRAY) {
888 if (t == FUNC) {
901 if (t == FUNC) {
1040 } else if (t == FUNC) {
1275 tp->t_tspec = FUNC;
[all...]
H A Demit1.c115 case FUNC: t = 'F'; s = '\0'; break;
135 } else if (ts == FUNC && tp->t_proto) {
228 if (sc != EXTERN && !(sc == STATIC && sym->s_type->t_tspec == FUNC))
H A Dtree.c303 sym->s_type = incref(sym->s_type, FUNC);
318 if (sym->s_kind == FVFT && sym->s_type->t_tspec != FUNC)
729 if (tn->tn_type->t_tspec == FUNC)
806 if (lt == FUNC || lt == VOID || ltp->t_isfield ||
846 if (lt == ARRAY || lt == FUNC) {
1048 if (lt == PTR && rt == PTR && ((lst == VOID && rst == FUNC) ||
1049 (lst == FUNC && rst == VOID))) {
1172 if (sflag && (lt == FUNC || rt == FUNC)) {
1174 *(lt == FUNC
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dwarn.c89 #define FUNC(ETEXT, CODE, LEVEL) \ macro
112 FUNC(1, code, 1);
127 FUNC(0, 0, 1);
146 FUNC(1, code, 0);
162 FUNC(0, 0, 0);
180 FUNC(1, code, 0);
196 FUNC(0, 0, 0);
/freebsd-9.3-release/contrib/bsnmp/snmpd/
H A Dsnmpmod.h83 #define INSERT_OBJECT_FUNC_LINK(PTR, LIST, LINK, FUNC) do { \
87 if ((FUNC)(_lelem, (PTR)) > 0) \
95 #define INSERT_OBJECT_FUNC_LINK_REV(PTR, LIST, HEAD, LINK, FUNC) do { \
99 if ((FUNC)(_lelem, (PTR)) < 0) \
149 #define FIND_OBJECT_FUNC_LINK(LIST, OID, SUB, LINK, FUNC) ({ \
153 if ((FUNC)(OID, SUB, _lelem) == 0) \
158 #define NEXT_OBJECT_FUNC_LINK(LIST, OID, SUB, LINK, FUNC) ({ \
162 if ((FUNC)(OID, SUB, _lelem) < 0) \
198 #define INSERT_OBJECT_FUNC_REV(PTR, LIST, HEAD, FUNC) \
199 INSERT_OBJECT_FUNC_LINK_REV(PTR, LIST, HEAD, link, FUNC)
[all...]
/freebsd-9.3-release/contrib/gcc/config/rs6000/
H A Dfreebsd.h205 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
207 " bl " #FUNC "\n" \
H A Dlinux64.h412 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
414 " bl ." #FUNC "\n" \
418 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
420 " bl " #FUNC "\n" \
/freebsd-9.3-release/contrib/ngatm/libngatm/
H A Dunicust.h83 #define _TIMER_START(UNI,ARG,FIELD,DUE,FUNC) \
85 UNI->arg, DUE, FUNC, ARG))
/freebsd-9.3-release/sys/netgraph/atm/uni/
H A Dng_uni_cust.h92 #define _TIMER_START(UNI,ARG,FIELD,DUE,FUNC) do { \
95 hz * (DUE) / 1000, FUNC, (ARG), 0); \
/freebsd-9.3-release/sys/sys/
H A Dkobj.h94 * The ternary operator is (ab)used to provoke a warning when FUNC
97 #define KOBJMETHOD(NAME, FUNC) \
98 { &NAME##_desc, (kobjop_t) (1 ? FUNC : (NAME##_t *)NULL) }
/freebsd-9.3-release/contrib/gcc/
H A Dcrtstuff.c78 # define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
80 call_ ## FUNC (void) \
83 FUNC (); \
/freebsd-9.3-release/usr.bin/xlint/lint2/
H A Demit2.c84 case FUNC:
120 } else if (ts == FUNC && tp->t_args != NULL) {
172 if (TP(sym->s_type)->t_tspec == FUNC) {
H A Dchk.c104 TP(sym->s_type)->t_tspec == FUNC &&
181 if (TP(sym->s_type)->t_tspec == FUNC)
312 if (tp1->t_tspec == FUNC && tp2->t_tspec == FUNC) {
353 if ((tp1 = TP(def->s_type))->t_tspec != FUNC)
357 if ((tp1 = TP(decl->s_type))->t_tspec != FUNC)
364 if ((tp1 = TP(call1->f_type))->t_tspec != FUNC)
371 if ((tp2 = TP(call->f_type))->t_tspec != FUNC)
1112 if (TP(sym1->s_type)->t_tspec != FUNC)
1272 if (t == FUNC) {
[all...]
/freebsd-9.3-release/contrib/one-true-awk/
H A Dlex.c62 { "func", FUNC, FUNC },
63 { "function", FUNC, FUNC },
470 case FUNC:
H A Dawkgram.y55 %token <i> ARG BLTIN BREAK CLOSE CONTINUE DELETE DO EXIT FOR FUNC
82 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
184 | FUNC funcname '(' varlist rparen {infunc++;} lbrace stmtlist '}'
/freebsd-9.3-release/contrib/gcc/config/s390/
H A Ds390.h629 #define FUNCTION_VALUE(VALTYPE, FUNC) \
817 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
820 0: .long\t" USER_LABEL_PREFIX #FUNC " - 0b\n\
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dconfig.c1400 /* FUNC: Define a configuration variable that uses a custom function for
1408 #define FUNC(f) _FUNC(f), 0 macro
1437 { FUNC(bssid) },
1439 { FUNC(proto) },
1440 { FUNC(key_mgmt) },
1441 { FUNC(pairwise) },
1442 { FUNC(group) },
1443 { FUNC(auth_alg) },
1444 { FUNC(scan_freq) },
1445 { FUNC(freq_lis
1523 #undef FUNC macro
[all...]
H A Dconfig_file.c420 #define FUNC(f) #f, wpa_config_process_ ## f, OFFSET(f), NULL, NULL macro
449 { FUNC(uuid) },
456 { FUNC(os_version) },
460 { FUNC(country) },
465 #undef FUNC macro
/freebsd-9.3-release/contrib/gcc/config/mips/
H A Dmips.h1881 #define FUNCTION_VALUE(VALTYPE, FUNC) \
1882 mips_function_value ((VALTYPE), (FUNC), VOIDmode)
2131 #define INITIALIZE_TRAMPOLINE(ADDR, FUNC, CHAIN) \
2137 emit_move_insn (gen_rtx_MEM (ptr_mode, func_addr), FUNC); \
2738 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
2745 jal " USER_LABEL_PREFIX #FUNC "\n\
2750 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \
2757 jal " USER_LABEL_PREFIX #FUNC "\n\
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dtarget.h998 #define target_find_memory_regions(FUNC, DATA) \
999 (current_target.to_find_memory_regions) (FUNC, DATA)

Completed in 243 milliseconds

12