| /src/external/bsd/unbound/dist/util/ |
| fptr_wlist.c | 106 fptr_whitelist_comm_point(comm_point_callback_type *fptr) 108 if(fptr == &worker_handle_request) return 1; 109 else if(fptr == &outnet_udp_cb) return 1; 110 else if(fptr == &outnet_tcp_cb) return 1; 111 else if(fptr == &tube_handle_listen) return 1; 112 else if(fptr == &auth_xfer_probe_udp_callback) return 1; 113 else if(fptr == &auth_xfer_transfer_tcp_callback) return 1; 114 else if(fptr == &auth_xfer_transfer_http_callback) return 1; 119 fptr_whitelist_comm_point_raw(comm_point_callback_type *fptr) 121 if(fptr == &tube_handle_listen) return 1 [all...] |
| fptr_wlist.h | 64 * Macro to perform an assertion check for fptr wlist checks. 80 * @param fptr: function pointer to check. 83 int fptr_whitelist_comm_point(comm_point_callback_type *fptr); 88 * @param fptr: function pointer to check. 91 int fptr_whitelist_comm_point_raw(comm_point_callback_type *fptr); 96 * @param fptr: function pointer to check. 99 int fptr_whitelist_comm_timer(void (*fptr)(void*)); 104 * @param fptr: function pointer to check. 107 int fptr_whitelist_comm_signal(void (*fptr)(int, void*)); 112 * @param fptr: function pointer to check [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_trampoline_powerpc64.cc | 10 auto fptr = __xray::XRayPatchedFunction.load(); local 11 if (fptr != nullptr) 12 (*fptr)(FuncId, Type);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| load_lib.h | 22 void (*fptr) (void); member in struct:LIB_FN
|
| load_lib.c | 91 void (*fptr) (void); /* function pointer */ 106 fn->fptr = non_portable_union.fptr; 129 if (shl_findsym(&handle, fn->name, TYPE_PROCEDURE, &fn->fptr) != 0) 133 msg_info("loaded %s = %p", fn->name, (void *) fn->fptr);
|
| /src/external/gpl2/gmake/dist/ |
| vmsify.c | 224 char *fptr; local 232 fptr = name; 329 fptr = s; 348 if (*fptr == '/') 350 fptr++; 353 else if (*fptr == '.') 355 fptr++; 363 if (*fptr == '/') 365 fptr++; 373 s = strchr (fptr, '/'); [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/pa/ |
| fptr.c | 78 __canonicalize_funcptr_for_compare (fptr_t fptr) 90 if ((int) fptr == -1 || (unsigned int) fptr < 4096 || !((int) fptr & 2)) 91 return (unsigned int) fptr; 98 plabel = (volatile unsigned int *) ((unsigned int) fptr & ~3); 100 return (unsigned int) fptr; 107 return (unsigned int) fptr;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/pa/ |
| fptr.c | 78 __canonicalize_funcptr_for_compare (fptr_t fptr) 90 if ((int) fptr == -1 || (unsigned int) fptr < 4096 || !((int) fptr & 2)) 91 return (unsigned int) fptr; 98 plabel = (volatile unsigned int *) ((unsigned int) fptr & ~3); 100 return (unsigned int) fptr; 107 return (unsigned int) fptr;
|
| /src/games/rogue/ |
| random.c | 68 static long *fptr = &rntb[4]; variable 88 fptr = &state[rand_sep]; 104 *fptr += *rptr; 105 i = (*fptr >> 1) & 0x7fffffff; 106 if (++fptr >= end_ptr) { 107 fptr = state;
|
| /src/external/lgpl3/gmp/dist/mpq/ |
| set_f.c | 39 mp_ptr fptr = PTR(f); local 54 flow = *fptr; 55 MPN_STRIP_LOW_ZEROS_NOT_ZERO (fptr, abs_fsize, flow); 64 MPN_COPY (num_ptr + fexp - abs_fsize, fptr, abs_fsize); 84 MPN_COPY (num_ptr, fptr, abs_fsize); 96 mpn_rshift (num_ptr, fptr, abs_fsize, shift);
|
| /src/lib/libform/ |
| field_types.c | 116 set_field_type(FIELD *fptr, FIELDTYPE *type, ...) 124 field = (fptr == NULL)? &_formi_default_field : fptr; 141 field_type(FIELD *fptr) 145 field = (fptr == NULL)? &_formi_default_field : fptr; 155 field_arg(FIELD *fptr) 159 field = (fptr == NULL)? &_formi_default_field : fptr;
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| random.c | 187 /* FPTR and RPTR are two pointers into the state info, a front and a rear 197 static long int *fptr = &randtbl[SEP_3 + 1]; variable 238 fptr = &state[rand_sep]; 358 fptr = &state[(rear + rand_sep) % rand_deg]; 389 *fptr += *rptr; 391 i = (*fptr >> 1) & LONG_MAX; 392 ++fptr; 393 if (fptr >= end_ptr) 395 fptr = state;
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| random.c | 187 /* FPTR and RPTR are two pointers into the state info, a front and a rear 197 static long int *fptr = &randtbl[SEP_3 + 1]; variable 238 fptr = &state[rand_sep]; 358 fptr = &state[(rear + rand_sep) % rand_deg]; 389 *fptr += *rptr; 391 i = (*fptr >> 1) & LONG_MAX; 392 ++fptr; 393 if (fptr >= end_ptr) 395 fptr = state;
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| random.c | 187 /* FPTR and RPTR are two pointers into the state info, a front and a rear 197 static long int *fptr = &randtbl[SEP_3 + 1]; variable 238 fptr = &state[rand_sep]; 358 fptr = &state[(rear + rand_sep) % rand_deg]; 389 *fptr += *rptr; 391 i = (*fptr >> 1) & LONG_MAX; 392 ++fptr; 393 if (fptr >= end_ptr) 395 fptr = state;
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| random.c | 189 /* FPTR and RPTR are two pointers into the state info, a front and a rear 199 static long int *fptr = &randtbl[SEP_3 + 1]; variable 240 fptr = &state[rand_sep]; 360 fptr = &state[(rear + rand_sep) % rand_deg]; 391 *fptr += *rptr; 393 i = (*fptr >> 1) & LONG_MAX; 394 ++fptr; 395 if (fptr >= end_ptr) 397 fptr = state;
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| random.c | 187 /* FPTR and RPTR are two pointers into the state info, a front and a rear 197 static long int *fptr = &randtbl[SEP_3 + 1]; variable 238 fptr = &state[rand_sep]; 358 fptr = &state[(rear + rand_sep) % rand_deg]; 389 *fptr += *rptr; 391 i = (*fptr >> 1) & LONG_MAX; 392 ++fptr; 393 if (fptr >= end_ptr) 395 fptr = state;
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| random.c | 187 /* FPTR and RPTR are two pointers into the state info, a front and a rear 197 static long int *fptr = &randtbl[SEP_3 + 1]; variable 238 fptr = &state[rand_sep]; 358 fptr = &state[(rear + rand_sep) % rand_deg]; 389 *fptr += *rptr; 391 i = (*fptr >> 1) & LONG_MAX; 392 ++fptr; 393 if (fptr >= end_ptr) 395 fptr = state;
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| debug.cc | 54 FILE *fptr = fopen (new_debug_file, "w"); 56 if (fptr == nullptr) 63 debug_file = fptr;
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| debug.cc | 54 FILE *fptr = fopen (new_debug_file, "w"); 56 if (fptr == nullptr) 63 debug_file = fptr;
|
| /src/external/gpl3/binutils/dist/bfd/ |
| vms-misc.c | 503 char *fname, *fptr; 516 fptr = strrchr (fout, '/'); 517 if (fptr != NULL) 518 fout = fptr + 1; 523 fptr = strrchr (fname, '.'); 524 if (fptr != 0) 525 *fptr = 0; 529 fptr = fname; 530 for (fptr = fname; *fptr != 0; fptr++ 501 char *fname, *fptr; local [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| vms-misc.c | 503 char *fname, *fptr; 516 fptr = strrchr (fout, '/'); 517 if (fptr != NULL) 518 fout = fptr + 1; 523 fptr = strrchr (fname, '.'); 524 if (fptr != 0) 525 *fptr = 0; 529 fptr = fname; 530 for (fptr = fname; *fptr != 0; fptr++ 501 char *fname, *fptr; local [all...] |
| /src/external/gpl3/gdb.old/dist/bfd/ |
| vms-misc.c | 503 char *fname, *fptr; 516 fptr = strrchr (fout, '/'); 517 if (fptr != NULL) 518 fout = fptr + 1; 523 fptr = strrchr (fname, '.'); 524 if (fptr != 0) 525 *fptr = 0; 529 fptr = fname; 530 for (fptr = fname; *fptr != 0; fptr++ 501 char *fname, *fptr; local [all...] |
| /src/external/gpl3/gdb/dist/bfd/ |
| vms-misc.c | 503 char *fname, *fptr; 516 fptr = strrchr (fout, '/'); 517 if (fptr != NULL) 518 fout = fptr + 1; 523 fptr = strrchr (fname, '.'); 524 if (fptr != 0) 525 *fptr = 0; 529 fptr = fname; 530 for (fptr = fname; *fptr != 0; fptr++ 501 char *fname, *fptr; local [all...] |
| /src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
| reloc_ia64.S | 91 #define fptr r26 define 121 movl fptr = @gprel(fptr_mem_base) 123 add fptr = fptr, gp 193 // FPTR relocs are a bit more interesting: we need to lookup 198 st8 [target] = fptr 200 add target = 8,fptr 206 cmp.geu Poom,p0 = fptr,fptr_limit 220 st8 [fptr] = val,16
|
| /src/external/gpl3/gcc/dist/libgfortran/generated/ |
| unpack_c10.c | 35 const gfc_array_l1 *mask, const GFC_COMPLEX_10 *fptr) 46 const GFC_COMPLEX_10 fval = *fptr; 192 const GFC_COMPLEX_10 *fptr; local 282 fptr = field->base_addr; 296 *rptr = *fptr; 300 fptr += fstride0; 312 fptr -= fstride[n] * extent[n]; 325 fptr += fstride[n];
|