Searched refs:fp (Results 101 - 125 of 171) sorted by relevance

1234567

/haiku/src/system/kernel/arch/arm64/
H A Darch_debug.cpp26 already_visited(addr_t* visited, int32* _last, int32* _num, addr_t fp) argument
33 % NUM_PREVIOUS_LOCATIONS] == fp) {
39 visited[last] = fp;
49 get_next_frame(addr_t fp, addr_t *next, addr_t *ip) argument
51 if (fp != 0) {
52 *ip = ((addr_t*)fp)[1];
53 *next = ((addr_t*)fp)[0];
276 print_stack_frame(Thread *thread, addr_t ip, addr_t fp, addr_t next, argument
286 diff = next - fp;
296 B_PRINTF_POINTER_WIDTH, fp, dif
351 addr_t fp = arm64_get_fp(); local
[all...]
H A Dasm_offsets.cpp40 DEFINE_OFFSET_MACRO(IFRAME, iframe, fp);
/haiku/src/bin/
H A Dhd.c108 FILE *fp = fopen(fname, "rb"); local
109 if (fp) {
110 dump_file(fp);
111 fclose(fp);
120 dump_file(FILE *fp) argument
126 while ((got = fread(data, 1, 16, fp)) == 16) {
H A Dcomm.c173 show(FILE *fp, const char *offset, char *buf) argument
178 } while (fgets(buf, MAXLINELEN, fp));
184 FILE *fp; local
188 if ((fp = fopen(name, "r")) == NULL) {
191 return (fp);
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdio_private.h83 # define fclose(fp) _IO_new_fclose (fp)
86 # define fputs(str, fp) _IO_fputs (str, fp)
88 # define fsetpos(fp, posp) _IO_new_fsetpos (fp, posp)
90 # define fgetpos(fp, posp) _IO_new_fgetpos (fp, posp)
/haiku/src/system/boot/platform/efi/arch/riscv64/
H A Dentry.S24 li fp, 0
H A Darch_traps_asm.S15 sd fp, 2*8(sp)
H A Darch_traps.cpp135 DoStackTrace(addr_t fp, addr_t pc) argument
138 dprintf("FP: 0x%" B_PRIxADDR, fp);
143 while (fp != 0) {
144 pc = *((uint64*)fp - 1);
145 fp = *((uint64*)fp - 2);
146 dprintf("FP: 0x%" B_PRIxADDR, fp);
H A Darch_traps.h39 uint64 fp; member in struct:iframe
/haiku/src/system/boot/platform/riscv/
H A Dentry.S24 # li fp, 0
H A Dtraps_asm.S15 sd fp, 2*8(sp)
39 csrw mscratch, fp
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofwide.c97 _IO_fwide(_IO_FILE *fp, int mode) argument
104 return fp->_mode;
110 && (fp == _IO_stdin || fp == _IO_stdout || fp == _IO_stderr))
115 if (fp->_mode != 0) {
117 return fp->_mode;
121 struct _IO_codecvt *cc = fp->_codecvt = &fp->_wide_data->_codecvt;
123 fp
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_debug.cpp33 already_visited(addr_t *visited, int32 *_last, int32 *_num, addr_t fp) argument
41 % NUM_PREVIOUS_LOCATIONS] == fp) {
47 visited[last] = fp;
57 get_next_frame(addr_t fp, addr_t *next, addr_t *ip) argument
59 if (fp != 0) {
60 *ip = *(((addr_t*)fp) - 0);
61 *next = *(((addr_t*)fp) - 1);
285 print_stack_frame(Thread *thread, addr_t ip, addr_t fp, addr_t next, argument
295 diff = next - fp;
305 B_PRINTF_POINTER_WIDTH, fp, dif
361 addr_t fp = arm_get_fp(); local
[all...]
/haiku/src/system/libroot/posix/glibc/include/arch/m68k/
H A Dsysdep.h64 move.l %fp, -(%sp); move.l %sp, %fp; \
66 move.l (%sp)+, %fp;
/haiku/src/system/libnetwork/netresolv/dst/
H A Ddst_api.c414 FILE *fp; local
436 if ((fp = dst_s_fopen(file, "w", 0600)) != NULL) {
438 nn = fwrite(encoded_block, 1, len, fp);
443 fclose(fp);
446 fclose(fp);
476 FILE *fp; local
495 if ((fp = dst_s_fopen(name, "r", 0)) == NULL) {
500 while ((c = getc(fp)) != EOF)
504 while ((c = getc(fp)) != EOF)
510 while ((c = getc(fp)) !
547 fgets(enckey, (int)sizeof(enckey), fp); local
593 FILE *fp; local
835 FILE *fp; local
[all...]
/haiku/src/libs/libtelnet/
H A Drsaencpwd.c150 FILE *fp; local
160 if ((fp=fopen(key_file, "r"))==NULL) return(0);
161 fclose(fp);
199 FILE *fp; local
208 if ((fp=fopen(key_file, "r"))==NULL) {
216 fscanf(fp, "%x;", &len);
218 j = getc(fp); key[i]=j;
220 fclose(fp);
263 if ((fp=fopen(key_file, "r"))==NULL) {
271 fscanf(fp, "
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_debug.cpp267 DoStackTraceEx(Thread* thread, addr_t fp, addr_t pc) argument
270 dprintf("FP: 0x%" B_PRIxADDR, fp);
275 addr_t oldFp = fp;
277 while (fp != 0 && i < 1000) {
281 if (arch_debug_memcpy(&fp, (uint64*)fp - 1, sizeof(pc)) < B_OK)
285 if (arch_debug_memcpy(&pc, (uint64*)fp - 1, sizeof(pc)) < B_OK)
287 if (arch_debug_memcpy(&fp, (uint64*)fp - 2, sizeof(pc)) < B_OK)
290 dprintf("FP: 0x%" B_PRIxADDR, fp);
310 DoStackTrace(addr_t fp, addr_t pc) argument
312 DoStackTraceEx(thread_get_current_thread(), fp, pc); local
[all...]
/haiku/src/bin/fwcontrol/
H A Deui64.c231 FILE *fp; local
241 if ((fp = fopen(_PATH_EUI64, "r")) == NULL)
244 while (fgets(buf,BUFSIZ,fp)) {
267 fclose(fp);
272 fclose(fp);
282 FILE *fp; local
291 if ((fp = fopen(_PATH_EUI64, "r")) == NULL)
294 while (fgets(buf,BUFSIZ,fp)) {
315 fclose(fp);
320 fclose(fp);
[all...]
/haiku/headers/posix/arch/x86_64/
H A Dsignal.h37 struct x86_64_fp_register fp[8]; member in union:fpu_state::__anon4
/haiku/src/add-ons/accelerants/radeon/
H A Dmonitor_detection.c693 Radeon_FindFPTiming_DetailedMonitorDesc(const edid1_info *edid, fp_info *fp, argument
710 fp->panel_xres = timing->h_active;
711 fp->h_blank = timing->h_blank;
712 fp->h_over_plus = timing->h_sync_off;
713 fp->h_sync_width = timing->h_sync_width;
715 fp->panel_yres = timing->v_active;
716 fp->v_blank = timing->v_blank;
717 fp->v_over_plus = timing->v_sync_off;
718 fp->v_sync_width = timing->v_sync_width;
721 fp
733 Radeon_FindFPTiming_StandardTiming(const edid1_info *edid, fp_info *fp, uint32 *max_hsize, uint32 *max_vsize) argument
814 fp_info *fp = &ai->si->flatpanels[port]; local
[all...]
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DNoWindows.h59 #define _FPOSOFF(fp) ((long)(fp).__pos)
/haiku/src/add-ons/accelerants/radeon_hd/
H A Dbios.cpp196 FILE* fp; local
201 fp = fopen(filename, "wb");
202 if (fp == NULL) {
207 fwrite(gInfo->rom, info.rom_size, 1, fp);
209 fclose(fp);
/haiku/src/libs/iconv/
H A Dlocalcharset.c115 FILE *fp; local
141 if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)
158 c = getc (fp);
167 c = getc (fp);
173 ungetc (c, fp);
174 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
200 fclose (fp);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_size.c55 if (putc (outc, fp) == EOF) \
66 if (PUT (fp, wide ? (const char *) wptr : ptr, outlen) != outlen) \
85 if (PAD (fp, ch, len) != len) \
92 extern int __printf_fp (FILE *fp, const struct printf_info *info,
97 printf_size (FILE *fp, const struct printf_info *info, const void *const *args) argument
232 done = __printf_fp (fp, &fp_info, &ptr);
246 done = __printf_fp (fp, &fp_info, &ptr);
/haiku/headers/posix/arch/sparc64/
H A Dsignal.h47 ulong fp; member in struct:vregs

Completed in 172 milliseconds

1234567