| /netbsd/src/external/gpl3/gcc/dist/libgcc/ |
| D | crtstuff.c | 200 typedef void (*func_ptr) (void); typedef 235 static func_ptr force_to_data[1] __attribute__ ((__used__)) = { }; 237 STATIC func_ptr __CTOR_LIST__[1] 238 __attribute__ ((__used__, aligned(__alignof__(func_ptr)))) 239 = { (func_ptr) (-1) }; 241 STATIC func_ptr __CTOR_LIST__[1] 242 __attribute__ ((__used__, section(".ctors"), aligned(__alignof__(func_ptr)))) 243 = { (func_ptr) (-1) }; 250 STATIC func_ptr __DTOR_LIST__[1] 251 __attribute__ ((aligned(__alignof__(func_ptr)))) [all …]
|
| D | gbl-ctors.h | 42 typedef void (*func_ptr) (void); typedef 47 extern func_ptr __CTOR_LIST__[]; 48 extern func_ptr __DTOR_LIST__[];
|
| D | libgcc2.c | 2366 static func_ptr *p = __DTOR_LIST__ + 1; 2448 func_ptr __CTOR_LIST__[2] = {0, 0}; 2449 func_ptr __DTOR_LIST__[2] = {0, 0}; 2451 func_ptr __CTOR_LIST__[2]; 2452 func_ptr __DTOR_LIST__[2];
|
| D | ChangeLog | 5645 func_ptr *dtor_list temporary variable to avoid "array subscript 8999 size of func_ptr.
|
| /netbsd/src/tests/usr.bin/xlint/lint1/ |
| D | msg_247_portable_int.c | 69 static function_pointer func_ptr; variable 121 bool_ptr = (typeof(bool_ptr))func_ptr; in all_casts() 149 char_ptr = (typeof(char_ptr))func_ptr; in all_casts() 198 schar_ptr = (typeof(schar_ptr))func_ptr; in all_casts() 226 uchar_ptr = (typeof(uchar_ptr))func_ptr; in all_casts() 274 short_ptr = (typeof(short_ptr))func_ptr; in all_casts() 322 ushort_ptr = (typeof(ushort_ptr))func_ptr; in all_casts() 369 int_ptr = (typeof(int_ptr))func_ptr; in all_casts() 416 uint_ptr = (typeof(uint_ptr))func_ptr; in all_casts() 464 long_ptr = (typeof(long_ptr))func_ptr; in all_casts() [all …]
|
| D | msg_247_lp64_ldbl128.c | 61 static function_pointer func_ptr; variable 113 bool_ptr = (typeof(bool_ptr))func_ptr; in all_casts() 141 char_ptr = (typeof(char_ptr))func_ptr; in all_casts() 190 schar_ptr = (typeof(schar_ptr))func_ptr; in all_casts() 218 uchar_ptr = (typeof(uchar_ptr))func_ptr; in all_casts() 266 short_ptr = (typeof(short_ptr))func_ptr; in all_casts() 314 ushort_ptr = (typeof(ushort_ptr))func_ptr; in all_casts() 361 int_ptr = (typeof(int_ptr))func_ptr; in all_casts() 408 uint_ptr = (typeof(uint_ptr))func_ptr; in all_casts() 454 long_ptr = (typeof(long_ptr))func_ptr; in all_casts() [all …]
|
| D | msg_247_ilp32_ldbl64.c | 61 static function_pointer func_ptr; variable 113 bool_ptr = (typeof(bool_ptr))func_ptr; in all_casts() 141 char_ptr = (typeof(char_ptr))func_ptr; in all_casts() 190 schar_ptr = (typeof(schar_ptr))func_ptr; in all_casts() 218 uchar_ptr = (typeof(uchar_ptr))func_ptr; in all_casts() 266 short_ptr = (typeof(short_ptr))func_ptr; in all_casts() 314 ushort_ptr = (typeof(ushort_ptr))func_ptr; in all_casts() 359 int_ptr = (typeof(int_ptr))func_ptr; in all_casts() 404 uint_ptr = (typeof(uint_ptr))func_ptr; in all_casts() 449 long_ptr = (typeof(long_ptr))func_ptr; in all_casts() [all …]
|
| D | msg_247_portable.c | 64 static function_pointer func_ptr; variable 116 bool_ptr = (typeof(bool_ptr))func_ptr; in all_casts() 144 char_ptr = (typeof(char_ptr))func_ptr; in all_casts() 193 schar_ptr = (typeof(schar_ptr))func_ptr; in all_casts() 221 uchar_ptr = (typeof(uchar_ptr))func_ptr; in all_casts() 269 short_ptr = (typeof(short_ptr))func_ptr; in all_casts() 317 ushort_ptr = (typeof(ushort_ptr))func_ptr; in all_casts() 364 int_ptr = (typeof(int_ptr))func_ptr; in all_casts() 411 uint_ptr = (typeof(uint_ptr))func_ptr; in all_casts() 459 long_ptr = (typeof(long_ptr))func_ptr; in all_casts() [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| D | aarch64-tagged-pointer.c | 45 void (*func_ptr) (void) = foo; in main() local 46 func_ptr = (void (*) (void)) ((uintptr_t) func_ptr | 0xf000000000000000ULL); in main() 52 (*func_ptr) (); in main()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/pa/ |
| D | pa32-netbsd.h | 34 STATIC func_ptr __CTOR_LIST__[1] \ 36 aligned(sizeof(func_ptr)))) \ 37 = { (func_ptr) (-1) }
|
| D | pa32-linux.h | 33 STATIC func_ptr __CTOR_LIST__[1] \ 35 aligned(sizeof(func_ptr)))) \ 36 = { (func_ptr) (-1) }
|
| D | som.h | 255 func_ptr *p; \
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/h8300/ |
| D | h8300.h | 606 extern func_ptr __ctors[]; \ 607 extern func_ptr __ctors_end[]; \ 608 func_ptr *p; \ 618 extern func_ptr __dtors[]; \ 619 extern func_ptr __dtors_end[]; \ 620 func_ptr *p; \
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/ia64/ |
| D | vms.h | 88 STATIC func_ptr __CTOR_LIST__[1] \ 89 __attribute__ ((__unused__, section(".ctors"), aligned(sizeof(func_ptr)))) \ 90 = { (func_ptr) (-1) };
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| D | member-ptr.cc | 137 int (*func_ptr) (int); member in Diamond 191 diamond.func_ptr = func; in main() 208 diamond_pfunc_ptr = (int (* Diamond::*) (int)) &Diamond::func_ptr; in main()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| D | mi-var-child.exp | 64 {struct_declarations.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)"} 482 {weird.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)"} 816 …[list struct_declarations.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)" "(@$hex: |)$hex <nothi…
|
| D | mi-var-child.c | 55 void (*func_ptr) (void); member 247 weird->func_ptr = nothing; in do_children_tests()
|
| D | var-cmd.c | 55 void (*func_ptr) (void); member 270 weird->func_ptr = nothing; in do_children_tests()
|
| D | mi-var-display.exp | 226 {weird.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)"}
|
| D | mi2-var-child.exp | 64 {struct_declarations.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)"} 482 {weird.func_ptr func_ptr 0 "void \\(\\*\\)\\((void)?\\)"}
|
| /netbsd/src/sys/external/bsd/sljit/dist/sljit_src/ |
| D | sljitLir.h | 1308 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_function_context(void** func_ptr, struct sljit_function_con…
|
| D | sljitNativePPC_common.c | 233 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_function_context(void** func_ptr, struct sljit_function_con… in sljit_set_function_context() argument 236 if (func_ptr) in sljit_set_function_context() 237 *func_ptr = (void*)context; in sljit_set_function_context()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/sh/ |
| D | sh.md | 2280 rtx func_ptr = gen_reg_rtx (Pmode); 2301 function_symbol (func_ptr, "__udivsi3_i4i", SFUNC_GOT); 2302 last = gen_udivsi3_i4_int (operands[0], func_ptr); 2306 rtx lab = function_symbol (func_ptr, "__udivsi3_i4", SFUNC_STATIC).lab; 2308 last = gen_udivsi3_i4_single (operands[0], func_ptr, lab); 2310 last = gen_udivsi3_i4 (operands[0], func_ptr, lab); 2321 rtx lab = function_symbol (func_ptr, "__udivsi3", SFUNC_STATIC).lab; 2322 last = gen_udivsi3_i1 (operands[0], func_ptr, lab); 2408 rtx func_ptr = gen_reg_rtx (Pmode); 2413 function_symbol (func_ptr, sh_divsi3_libfunc, SFUNC_GOT); [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | ChangeLog-2000 | 12064 __CTOR_LIST__ from func_ptr array to just func_ptr, to
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/ |
| D | ChangeLog-1993-2013 | 3578 * gdb.cp/member-ptr.cc (class Diamond): Add func_ptr. 3580 (main): Initialize diamond.func_ptr and add diamond_pfunc_ptr.
|