Searched refs:fp (Results 1 - 25 of 37) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/src/fenv/
H A Dfesetexceptflag.c3 int fesetexceptflag(const fexcept_t *fp, int mask) argument
5 feclearexcept(~*fp & mask);
6 feraiseexcept(*fp & mask);
H A Dfegetexceptflag.c3 int fegetexceptflag(fexcept_t *fp, int mask) argument
5 *fp = fetestexcept(mask);
/seL4-refos-master/libs/libmuslc/arch/i386/
H A Dreloc.h18 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
23 : "=r"(*fp) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/i386_sel4/
H A Dreloc.h18 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
23 : "=r"(*fp) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/microblaze/
H A Dreloc.h24 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
29 : "=r"(*(fp)) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/or1k/
H A Dreloc.h17 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
24 : "=r"(*(fp)) : : "memory", "r9" )
/seL4-refos-master/libs/libmuslc/arch/powerpc/
H A Dreloc.h23 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
30 : "=r"(*(fp)), "=r"((int){0}) : : "memory", "lr" )
/seL4-refos-master/libs/libmuslc/arch/powerpc64/
H A Dreloc.h25 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
32 : "=r"(*(fp)), "=r"((long){0}) : : "memory", "lr" )
/seL4-refos-master/libs/libmuslc/arch/x32/
H A Dreloc.h28 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
31 : "=r"(*fp) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/x86_64/
H A Dreloc.h17 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
20 : "=r"(*fp) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/x86_64_sel4/
H A Dreloc.h17 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
20 : "=r"(*fp) : : "memory" )
/seL4-refos-master/libs/libmuslc/arch/mips/
H A Dreloc.h39 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
52 : "=r"(*(fp)) : : "memory", "ra" )
/seL4-refos-master/libs/libmuslc/arch/mipsn32/
H A Dreloc.h39 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
52 : "=r"(*(fp)) : : "memory", "ra" )
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Drumors.c41 init_rumors(fp)
42 dlb *fp;
46 (void) dlb_fgets(line, sizeof line, fp); /* skip "don't edit" comment */
47 (void) dlb_fgets(line, sizeof line, fp);
50 (void) dlb_fseek(fp, 0L, SEEK_CUR);
51 true_rumor_start = dlb_ftell(fp);
53 (void) dlb_fseek(fp, 0L, SEEK_END);
54 false_rumor_end = dlb_ftell(fp);
183 init_oracles(fp)
184 dlb *fp;
[all...]
H A Ddlb.c457 FILE *fp; local
464 dp->fp = (FILE *) 0;
465 else if ((fp = fopen_datafile(name, mode, DATAPREFIX)) != 0)
466 dp->fp = fp;
483 if (dp->fp) ret = fclose(dp->fp);
498 if (dp->fp) return (int) fread(buf, size, quan, dp->fp);
509 if (dp->fp) retur
[all...]
H A Dfiles.c315 FILE *fp; local
325 if ((fp = fopen(filename, "w"))) {
326 fclose(fp);
359 FILE *fp; local
368 fp = fopen(filename, mode, "mbc=16");
371 fp = fopen(filename, mode);
373 return fp;
1505 FILE *fp; local
1528 if ((fp = fopenp(filename, "r")) != (FILE *)0) {
1530 return(fp);
2016 FILE *fp; local
2065 FILE *fp; local
2135 FILE *fp; local
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Drumors.c41 init_rumors(fp)
42 dlb *fp;
46 (void) dlb_fgets(line, sizeof line, fp); /* skip "don't edit" comment */
47 (void) dlb_fgets(line, sizeof line, fp);
50 (void) dlb_fseek(fp, 0L, SEEK_CUR);
51 true_rumor_start = dlb_ftell(fp);
53 (void) dlb_fseek(fp, 0L, SEEK_END);
54 false_rumor_end = dlb_ftell(fp);
183 init_oracles(fp)
184 dlb *fp;
[all...]
H A Ddlb.c457 FILE *fp; local
464 dp->fp = (FILE *) 0;
465 else if ((fp = fopen_datafile(name, mode, DATAPREFIX)) != 0)
466 dp->fp = fp;
483 if (dp->fp) ret = fclose(dp->fp);
498 if (dp->fp) return (int) fread(buf, size, quan, dp->fp);
509 if (dp->fp) retur
[all...]
H A Dfiles.c315 FILE *fp; local
325 if ((fp = fopen(filename, "w"))) {
326 fclose(fp);
359 FILE *fp; local
368 fp = fopen(filename, mode, "mbc=16");
371 fp = fopen(filename, mode);
373 return fp;
1505 FILE *fp; local
1528 if ((fp = fopenp(filename, "r")) != (FILE *)0) {
1530 return(fp);
2016 FILE *fp; local
2065 FILE *fp; local
2135 FILE *fp; local
[all...]
/seL4-refos-master/libs/libmuslc/arch/mips64/
H A Dreloc.h50 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
64 : "=r"(*(fp)) : : "memory", "ra" )
/seL4-refos-master/libs/libmuslc/arch/sh/
H A Dreloc.h47 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
50 : "=&r"(*fp) : "r"(got) : "memory" )
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/sys/share/
H A Dpcsys.c314 FILE *fp;
316 fp = fopen_datafile(RECORD, "r", TRUE);
317 if (fp) {
318 fclose(fp);
447 FILE *fp;
453 if ((fp = fopen(buf, mode)))
454 return fp;
470 if ((fp = fopen(buf, mode)))
471 return fp;
484 if(fp
[all...]
H A Dtclib.c68 FILE *fp; local
75 if ((fp = fopen(tc ? tc : TERMCAP, "r")) != 0)
82 fp = fopen(TERMCAP, "r");
85 if (fp) {
87 tc = tc_find(fp, term, wrkbuf, (int)(sizeof wrkbuf - strlen(term)));
89 (void) fclose(fp);
138 tc_find(fp, term, buffer, bufsiz)
139 FILE *fp;
153 if (!fgets(ip, min(in,BUFSIZ), fp)) break;
161 if (ferror(fp) || i
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/sys/share/
H A Dpcsys.c314 FILE *fp;
316 fp = fopen_datafile(RECORD, "r", TRUE);
317 if (fp) {
318 fclose(fp);
447 FILE *fp;
453 if ((fp = fopen(buf, mode)))
454 return fp;
470 if ((fp = fopen(buf, mode)))
471 return fp;
484 if(fp
[all...]
H A Dtclib.c68 FILE *fp; local
75 if ((fp = fopen(tc ? tc : TERMCAP, "r")) != 0)
82 fp = fopen(TERMCAP, "r");
85 if (fp) {
87 tc = tc_find(fp, term, wrkbuf, (int)(sizeof wrkbuf - strlen(term)));
89 (void) fclose(fp);
138 tc_find(fp, term, buffer, bufsiz)
139 FILE *fp;
153 if (!fgets(ip, min(in,BUFSIZ), fp)) break;
161 if (ferror(fp) || i
[all...]

Completed in 81 milliseconds

12