Home
last modified time | relevance | path

Searched refs:fp (Results 1 – 25 of 55) sorted by relevance

123

/u-boot/arch/m68k/lib/
A Dtraps.c21 static void show_frame(struct pt_regs *fp) in show_frame() argument
23 printf ("Vector Number: %d Format: %02x Fault Status: %01x\n\n", (fp->vector & 0x3fc) >> 2, in show_frame()
24 fp->format, (fp->vector & 0x3) | ((fp->vector & 0xc00) >> 8)); in show_frame()
25 printf ("PC: %08lx SR: %08lx SP: %08lx\n", fp->pc, (long) fp->sr, (long) fp); in show_frame()
27 fp->d0, fp->d1, fp->d2, fp->d3); in show_frame()
29 fp->d4, fp->d5, fp->d6, fp->d7); in show_frame()
31 fp->a0, fp->a1, fp->a2, fp->a3); in show_frame()
33 fp->a4, fp->a5, fp->a6); in show_frame()
36 void exc_handler(struct pt_regs *fp) { in exc_handler() argument
38 show_frame (fp); in exc_handler()
A Dinterrupts.c87 void int_handler (struct pt_regs *fp) in int_handler() argument
91 vec = (fp->vector >> 2) & 0xff; in int_handler()
/u-boot/tools/
A Dbmp_logo.c41 fgetc (fp); in skip_bytes()
49 fclose (fp); in error()
79 FILE *fp; in main() local
101 if (!fp) { in main()
106 if (fgetc (fp) != 'B' || fgetc (fp) != 'M') in main()
113 skip_bytes (fp, 8); in main()
116 skip_bytes(fp, 2); in main()
121 skip_bytes(fp, 2); in main()
168 x=fgetc(fp); in main()
183 size = ftell(fp); in main()
[all …]
A Dmkenvimage.c87 int fp, ep; in main() local
191 for (fp = 0, ep = 0 ; fp < filesize && ep < envsize - 1; fp++) { in main()
192 if (filebuf[fp] == '\n') { in main()
193 if (fp == 0 || filebuf[fp-1] == '\n') { in main()
211 } else if ((fp == 0 || filebuf[fp-1] == '\n') && filebuf[fp] == '#') { in main()
213 while (++fp < filesize && filebuf[fp] != '\n') in main()
223 for( ; fp < filesize; fp++ ) in main()
225 if (filebuf[fp] == '\n') { in main()
226 if (fp == 0 || filebuf[fp-1] == '\n') { in main()
230 } else if ((fp == 0 || filebuf[fp-1] == '\n') && filebuf[fp] == '#') { in main()
[all …]
A Dzynqmpimage.c309 origin = ftell(fp); in fsize()
312 fclose(fp); in fsize()
319 fclose(fp); in fsize()
323 size = ftell(fp); in fsize()
326 fclose(fp); in fsize()
334 fclose(fp); in fsize()
368 FILE *fp; in zynqmpimage_parse_initparams() local
376 if (!fp) { in zynqmpimage_parse_initparams()
383 fclose(fp); in zynqmpimage_parse_initparams()
388 fclose(fp); in zynqmpimage_parse_initparams()
[all …]
A Dzynqimage.c233 FILE *fp; in zynqimage_parse_initparams() local
240 fp = fopen(filename, "r"); in zynqimage_parse_initparams()
241 if (!fp) { in zynqimage_parse_initparams()
246 err = fstat(fileno(fp), &path_stat); in zynqimage_parse_initparams()
248 fclose(fp); in zynqimage_parse_initparams()
253 fclose(fp); in zynqimage_parse_initparams()
258 r = fscanf(fp, "%x %x", &reginit.address, &reginit.data); in zynqimage_parse_initparams()
263 r = fscanf(fp, "%*[^\n]\n"); /* Skip to next line */ in zynqimage_parse_initparams()
265 fclose(fp); in zynqimage_parse_initparams()
A Dmxsimage.c446 FILE *fp; in sb_load_file() local
454 if (!fp) in sb_load_file()
481 fclose(fp); in sb_load_file()
487 fclose(fp); in sb_load_file()
1592 FILE *fp; in sb_load_cmdfile() local
1598 if (!fp) in sb_load_cmdfile()
1616 fclose(fp); in sb_load_cmdfile()
1621 fclose(fp); in sb_load_cmdfile()
2069 FILE *fp; in sb_build_tree_from_img() local
2077 if (!fp) in sb_build_tree_from_img()
[all …]
/u-boot/test/py/tests/
A Dvboot_forge.py221 def read_fdt(fp): argument
229 fp.seek(header.off_dt_struct)
231 fp.seek(header.off_dt_strings)
297 def write_fdt(root, strblock, fp): argument
305 fp.write(header.pack())
308 fp.write(RRHeader().pack())
313 fp.write(structs)
318 fp.write(strings)
320 header.totalsize = fp.tell()
322 fp.seek(0)
[all …]
/u-boot/arch/arm/include/asm/arch-omap3/
A Ddss.h217 #define DSS_HFP(fp) (((fp) - 1) << 8) argument
220 #define DSS_VFP(fp) ((fp) << 8) argument
223 #define PANEL_TIMING_H(bp, fp, sw) (DSS_HBP(bp) | DSS_HFP(fp) | DSS_HSW(sw)) argument
224 #define PANEL_TIMING_V(bp, fp, sw) (DSS_VBP(bp) | DSS_VFP(fp) | DSS_VSW(sw)) argument
/u-boot/lib/
A Dslre.c104 (void) fputc(',', fp); in print_character_set()
112 (void) fputc(p[i], fp); in print_character_set()
136 (void) fprintf(fp, "%d ", in slre_dump()
146 (void) fputc('"', fp); in slre_dump()
150 (void) fputc(ch, fp); in slre_dump()
152 (void) fprintf(fp, in slre_dump()
156 (void) fputc('"', fp); in slre_dump()
161 (void) fputc('\n', fp); in slre_dump()
673 FILE *fp; in main() local
682 if (fp == NULL) { in main()
[all …]
/u-boot/scripts/dtc/
A Dsrcpos.c71 static char *try_open(const char *dirname, const char *fname, FILE **fp) in try_open() argument
80 *fp = fopen(fullname, "rb"); in try_open()
81 if (!*fp) { in try_open()
98 static char *fopen_any_on_path(const char *fname, FILE **fp) in fopen_any_on_path() argument
105 assert(fp); in fopen_any_on_path()
108 fullname = try_open(cur_dir, fname, fp); in fopen_any_on_path()
111 for (node = search_path_head; !*fp && node; node = node->next) in fopen_any_on_path()
112 fullname = try_open(node->dirname, fname, fp); in fopen_any_on_path()
A Dutil.c426 FILE *fp = errmsg ? stderr : stdout; in util_usage() local
432 fprintf(fp, in util_usage()
454 fprintf(fp, " "); in util_usage()
456 fprintf(fp, " -%c, ", long_opts[i].val); in util_usage()
460 fprintf(fp, "--%-*s", optlen, long_opts[i].name); in util_usage()
462 fprintf(fp, "--%s %s%*s", long_opts[i].name, a_arg, in util_usage()
466 fprintf(fp, "%s\n", opts_help[i]); in util_usage()
470 fprintf(fp, "\nError: %s\n", errmsg); in util_usage()
/u-boot/scripts/kconfig/
A Dconfdata.c551 fprintf(fp, "#"); in kconfig_print_comment()
553 fprintf(fp, " "); in kconfig_print_comment()
554 xfwrite(p, l, 1, fp); in kconfig_print_comment()
557 fprintf(fp, "\n"); in kconfig_print_comment()
606 fprintf(fp, "#define %s%s %s\n", in header_print_symbol()
621 fprintf(fp, "/*\n"); in header_print_comment()
624 fprintf(fp, " *"); in header_print_comment()
626 fprintf(fp, " "); in header_print_comment()
627 xfwrite(p, l, 1, fp); in header_print_comment()
630 fprintf(fp, "\n"); in header_print_comment()
[all …]
/u-boot/arch/mips/include/asm/
A Dregdef.h54 #define fp $30 /* frame pointer */ macro
97 #define fp $30 /* frame pointer */ macro
/u-boot/arch/powerpc/dts/
A De500mc_power_isa.dtsi25 power-isa-fp; // Floating Point
26 power-isa-fp.r; // Floating Point.Record
A De5500_power_isa.dtsi25 power-isa-fp; // Floating Point
26 power-isa-fp.r; // Floating Point.Record
A De6500_power_isa.dtsi25 power-isa-fp; // Floating Point
26 power-isa-fp.r; // Floating Point.Record
/u-boot/lib/efi_loader/
A Defi_file.c1035 struct efi_file_handle *efi_file_from_path(struct efi_device_path *fp) in efi_file_from_path() argument
1041 v = efi_fs_from_path(fp); in efi_file_from_path()
1050 while (fp && !EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH)) in efi_file_from_path()
1051 fp = efi_dp_next(fp); in efi_file_from_path()
1057 while (fp) { in efi_file_from_path()
1059 container_of(fp, struct efi_device_path_file_path, dp); in efi_file_from_path()
1063 if (!EFI_DP_TYPE(fp, MEDIA_DEVICE, FILE_PATH)) { in efi_file_from_path()
1078 fp = efi_dp_next(fp); in efi_file_from_path()
A Defi_device_path.c929 struct efi_device_path_file_path *fp; in efi_dp_from_file() local
951 fp = buf; in efi_dp_from_file()
952 fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; in efi_dp_from_file()
953 fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH; in efi_dp_from_file()
954 fp->dp.length = (u16)fpsize; in efi_dp_from_file()
955 path_to_uefi(fp->str, path); in efi_dp_from_file()
1070 struct efi_device_path *p, *dp, *fp = NULL; in efi_dp_split_file_path() local
1083 fp = efi_dp_dup(p); in efi_dp_split_file_path()
1084 if (!fp) in efi_dp_split_file_path()
1092 *file_path = fp; in efi_dp_split_file_path()
/u-boot/include/
A Dslre.h98 void slre_dump(const struct slre *r, FILE *fp);
/u-boot/arch/arc/include/asm/
A Dptrace.h17 long fp; member
/u-boot/lib/bzip2/
A Dbzlib.c1421 FILE *fp = NULL; in bzopen_or_bzdopen() local
1449 fp = (writing ? stdout : stdin); in bzopen_or_bzdopen()
1450 SET_BINARY_MODE(fp); in bzopen_or_bzdopen()
1452 fp = fopen(path,mode2); in bzopen_or_bzdopen()
1456 fp = NULL; in bzopen_or_bzdopen()
1458 fp = fdopen(fd,mode2); in bzopen_or_bzdopen()
1461 if (fp == NULL) return NULL; in bzopen_or_bzdopen()
1474 if (fp != stdin && fp != stdout) fclose(fp); in bzopen_or_bzdopen()
1544 FILE *fp = ((bzFile *)b)->handle; in BZ_API() local
1555 if(fp!=stdin && fp!=stdout){ in BZ_API()
[all …]
/u-boot/post/lib_powerpc/fpu/
A DMakefile7 acc1.o compare-fp-1.o fpu.o mul-subnormal-single-1.o darwin-ldouble.o
/u-boot/arch/mips/mach-mtmips/mt7620/
A Dlowlevel_init.S33 move fp, sp
/u-boot/arch/arm/include/asm/proc-armv/
A Dprocessor.h34 unsigned long fp; member

Completed in 41 milliseconds

123