/src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
xray_trampoline_powerpc64.cc | 10 auto fptr = __xray::XRayPatchedFunction.load(); local in function:__xray::CallXRayPatchedFunction 11 if (fptr != nullptr) 12 (*fptr)(FuncId, Type);
|
/src/games/rogue/ |
random.c | 68 static long *fptr = &rntb[4]; variable in typeref:typename:long * 88 fptr = &state[rand_sep]; 104 *fptr += *rptr; 105 i = (*fptr >> 1) & 0x7fffffff; 106 if (++fptr >= end_ptr) { 107 fptr = state;
|
/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;
|
field.c | 552 set_max_field(FIELD *fptr, int max) 554 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; 570 set_field_fore(FIELD *fptr, chtype attribute) 572 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; 699 set_new_page(FIELD *fptr, int page) 701 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr;
|
form.c | 387 move_field(FIELD *fptr, int frow, int fcol) 389 FIELD *field = (fptr == NULL) ? &_formi_default_field : fptr;
|
/src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
reloc_ia64.S | 91 #define fptr r26 macro 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/common/lib/libc/stdlib/ |
random.c | 222 * fptr and rptr are two pointers into the state info, a front and a rear 235 static uint32_t *fptr = &randtbl[SEP_3 + 1]; variable in typeref:typename:uint32_t * 297 fptr = &state[rand_sep]; 444 fptr = &state[(rear + rand_sep) % rand_deg]; 481 f = fptr; r = rptr; 493 fptr = f; rptr = r;
|
/src/sbin/gpt/ |
main.c | 214 if (cmdsw[i]->fptr == NULL) 232 if ((*cmdsw[i]->fptr)(gpt, argc, argv) == -1)
|
gpt.h | 70 int (*fptr)(gpt_t, int, char *[]); member in struct:gpt_cmd
|