/src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
enable_execute_stack_test.c | 60 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local in function:main 61 if ((*f1)() != 1)
|
clear_cache_test.c | 64 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local in function:main 65 if ((*f1)() != 1)
|
/src/tests/usr.bin/xlint/lint1/ |
expr_cast.c | 44 void (*f1)(void); local in function:cast_from_error 47 f1 = (void (*)(void))p; 50 f1 = (void *()(void))p; /* crash before 2021-02-28 */
|
/src/sys/arch/m68k/fpe/ |
fpu_explode.c | 115 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \ 121 fp->fp_mant[1] = f1; \ 130 fp->fp_mant[1] = f1; \ 136 fp->fp_mant[1] = f1; \ 149 uint32_t frac, f0, f1; local in function:fpu_stof 155 f1 = frac << (32 - SNG_SHIFT); 156 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0); 167 uint32_t frac, f0, f1, f2; local in function:fpu_dtof 173 f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT); 176 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0) 186 uint32_t f0, f1, f2; local in function:fpu_xtof [all...] |
/src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
clear_cache_test.c | 73 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); local in function:main 75 if ((*f1)() != 1)
|
enable_execute_stack_test.c | 68 pfunc f1 = (pfunc)memcpy_f(execution_buffer, func1, 128); local in function:main 70 if ((*f1)() != 1)
|
/src/tests/lib/libc/gen/ |
t_fmtcheck.c | 36 const char *fmtcheck(const char *f1, const char *f2) 94 const char *f, *cf, *f1, *f2; local in function:ATF_TC_BODY 98 f1 = test_fmts[i].fmt1; 100 f = fmtcheck(f1, f2); 102 cf = f1; 109 "(should have returned %s)", i, f1, f2,
|
/src/lib/libc/gdtoa/test/ |
dtest.c | 66 double f1, fI[2]; local in function:main 101 i1 = strtopd(ibuf, &se, &f1); 102 if (i != i1 || u.f != f1 || se != se1)
|
ftest.c | 66 float f1, fI[2]; local in function:main 96 if (u.f != (i1 = strtopf(ibuf, &se1, &f1), f1) 99 if (u.f != f1) 100 printf("\tf1 = %g\n", (double)f1);
|
/src/sys/arch/hp300/stand/common/ |
grf_hyreg.h | 69 u_char f1[0x5b-0x17-1]; member in struct:hyboxfb
|
grf_gbreg.h | 86 u_char f1[0x5d-0x15-1]; member in struct:gboxfb
|
grf_tcreg.h | 74 u_char f1[0x5b-0x17-1]; member in struct:tcboxfb
|
/src/sys/arch/powerpc/fpu/ |
fpu_explode.c | 140 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \ 146 fp->fp_mant[1] = f1; \ 156 fp->fp_mant[1] = f1; \ 163 fp->fp_mant[1] = f1; \ 177 u_int frac, f0, f1; local in function:fpu_stof 183 f1 = frac << (32 - SNG_SHIFT); 184 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0); 195 u_int frac, f0, f1, f2; local in function:fpu_dtof 201 f1 = (frac << (32 - DBL_SHIFT)) | (lo >> DBL_SHIFT); 204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0) [all...] |
/src/sys/arch/sparc/fpu/ |
fpu_explode.c | 140 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \ 146 fp->fp_mant[1] = f1; \ 156 fp->fp_mant[1] = f1; \ 163 fp->fp_mant[1] = f1; \ 177 u_int frac, f0, f1; local in function:fpu_stof 183 f1 = frac << (32 - SNG_SHIFT); 184 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0); 195 u_int frac, f0, f1, f2; local in function:fpu_dtof 201 f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT); 204 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0) 214 u_int frac, f0, f1, f2, f3; local in function:fpu_qtof [all...] |
/src/sys/external/bsd/drm2/linux/ |
linux_dma_fence_chain.c | 116 struct dma_fence *f, *f1; local in function:dma_fence_chain_enable_signaling 122 f1 = (chain1 = to_dma_fence_chain(f)) ? chain1->dfc_fence : f; 124 dma_fence_get(f1); 130 dma_fence_put(f1); 141 struct dma_fence *f, *f1; local in function:dma_fence_chain_signaled 144 f1 = (chain1 = to_dma_fence_chain(f)) ? chain1->dfc_fence : f; 146 if (!dma_fence_is_signaled(f1)) {
|
/src/games/dm/ |
dm.c | 130 char lbuf[BUFSIZ], f1[40], f2[40], f3[40], f4[40], f5[40]; local in function:read_config 137 if (sscanf(lbuf, "%39s%39s", f1, f2) != 2 || 138 strcasecmp(f1, "badtty")) 144 f1, f2, f3, f4, f5) != 5 || strcasecmp(f1, "game")) 149 if (sscanf(lbuf, "%39s%39s%39s%39s", f1, f2, f3, f4) != 4 || 150 strcasecmp(f1, "time"))
|
/src/sys/arch/arm/vfp/ |
vfp_init.c | 346 const uint32_t f1 = ci->ci_mvfr[1]; local in function:vfp_attach 353 ((f1 & ARM_MVFR1_D_NAN_MASK) ? ", NaN propagation" : ""), 354 ((f1 & ARM_MVFR1_FTZ_MASK) ? ", denormals" : "")); 357 device_unit(ci->ci_dev), f0, f1); 361 cpu_media_and_vfp_features[1] = f1; 366 if (f1 & ARM_MVFR0_EXCEPT_MASK) { 370 if (f1 & ARM_MVFR1_D_NAN_MASK) { 375 if (f1 & ARM_MVFR1_FTZ_MASK) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_bvgraph_test.cc | 177 uptr f1 = 2; local in function:Test_isReachable 182 EXPECT_FALSE(g.isReachable(f1, target)); 186 g.addEdge(f0, f1); 187 g.addEdge(f1, f2); 190 EXPECT_FALSE(g.isReachable(f1, target)); 194 g.addEdge(f1, t0); 196 EXPECT_TRUE(g.isReachable(f1, target)); 201 EXPECT_EQ(path[1], f1); 203 EXPECT_EQ(g.findPath(f1, target, path, ARRAY_SIZE(path)), 2U); 204 EXPECT_EQ(path[0], f1); [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/ |
ed25519_ref10_fe_51.h | 114 uint64_t f1 = f[1]; local in function:fe25519_cmov 120 uint64_t x1 = f1 ^ g[1]; 132 f[1] = f1 ^ x1; 151 uint64_t f1 = f[1]; local in function:fe25519_cswap 163 uint64_t x1 = f1 ^ g1; 175 f[1] = f1 ^ x1; 195 uint64_t f1 = f[1]; local in function:fe25519_copy 201 h[1] = f1; 247 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_mul 253 f1 = f[1] 338 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_sq 417 uint64_t f0, f1, f2, f3, f4; local in function:fe25519_sq2 [all...] |
/src/usr.sbin/pf/pfs/ |
pfs.c | 425 FILE *f1, *f2; local in function:test_ascii_dump 429 f1 = fopen(file1, "r"); 430 if (f1 == NULL) 442 parse(f1, &ps); 446 fclose(f1);
|
/src/lib/libc/stdlib/ |
merge.c | 117 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local in function:mergesort_r 151 f1 = l2; 156 while (f1 < l1 && f2 < l2) { 157 if ((*cmp)(f1, f2, cookie) <= 0) { 159 b = f1, t = l1; 162 q = f1; 217 if (q == f1) { 220 ICOPY_ELT(f1, tp2, i); 223 CCOPY_ELT(f1, tp2, i); 227 ICOPY_LIST(f1, tp2, b) 291 u_char *f1, *f2, *s, *l2, *last, *p2; local in function:setup [all...] |
/src/usr.bin/rdist/ |
server.c | 938 FILE *f1, *f2; local in function:recvf 941 if ((f1 = fopen(target, "r")) == NULL) 947 while ((c = getc(f1)) == getc(f2)) 949 (void) fclose(f1); 954 (void) fclose(f1);
|
/src/tests/usr.bin/indent/ |
fmt_decl.c | 404 char (*f1)() = NULL; local in function:main 405 char *(*f1)() = NULL; local in function:main 419 char (*f1)() = NULL; local in function:main 420 char *(*f1)() = NULL; local in function:main 429 /* $ XXX: Not really pretty, the name 'f1' should be aligned, if at all. */ 430 char (*f1)() = NULL; local in function:main 431 /* $ XXX: Not really pretty, the name 'f1' should be aligned, if at all. */ 432 char *(* f1)() = NULL; local in function:main
|
/src/sys/dev/raidframe/ |
rf_evenodd_dagfuncs.c | 451 int i, j, k, f1, f2, row; local in function:rf_doubleEOdecode 507 f1 = fcol[0]; 517 f1 = fcol[1]; 521 while ((row = rf_EO_Mod((row + f1 - f2), RF_EO_MATRIX_DIM)) != ((RF_EO_MATRIX_DIM) - 1)) { 533 if (j == f1 || j == f2) 587 if (j == f1 || j == f2)
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_ppc_regs.h | 34 #define f1 1 macro
|