| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ | 
| asan_errors.cc | 27   bool fast = common_flags()->fast_unwind_on_fatal;  local in function:__asan::OnStackUnwind 32   fast = true;
 39   GetStackTrace(stack, kStackTraceMax, sig.pc, sig.bp, sig.context, fast);
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ | 
| sanitizer_symbolizer_report.cc | 106   bool fast = common_flags()->fast_unwind_on_fatal;  local in function:__sanitizer::ReportMmapWriteExec 107   if (fast)
 109   stack->Unwind(kStackTraceMax, pc, bp, nullptr, top, bottom, fast);
 
 | 
| /src/sys/net/agr/ | 
| ieee8023ad_lacp.c | 306 	bool fast = false; /* XXX should be configurable */  local in function:lacp_portinit 312 	    (fast ? LACP_STATE_TIMEOUT : 0);
 
 | 
| /src/sys/dev/tc/ | 
| tcds.c | 98 #define	TCDSF_FASTSCSI		0x02	/* supports Fast SCSI */ 512 	int id, fast;  local in function:tcds_params
 520 		fast = dec_3000_scsifast[chip];
 526 		 * not the device is "fast".  Chip 0 is the high nibble,
 534 		fast = ids & 0x8;
 543 	if (fast)
 544 		printf("%s: fast mode set for chip %d\n",
 548 	*fastp = fast;
 
 | 
| /src/games/snake/snake/ | 
| snake.c | 110 static int fast = 1;  variable in typeref:typename:int 175 			fast = 0;
 283 		if (!fast)
 355 					if ((fast) || (k == 1))
 358 					if ((fast) || (k == repeat) ||
 370 					if ((fast) || (k == 1))
 373 					if ((fast) || (k == repeat) ||
 386 					if ((fast) || (k == 1))
 389 					if ((fast) || (k == repeat) ||
 403 					if ((fast) || (k == 1)
 [all...]
 | 
| /src/sys/dev/ic/ | 
| aac.c | 920 	u_int32_t index, fast;  local in function:aac_new_intr 955 			fast = index & 1;
 959 			if (fast) {
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ | 
| tsan_rtl.cc | 334   bool fast = common_flags()->fast_unwind_on_fatal;  local in function:__tsan::OnStackUnwind 335   if (fast) GetThreadStackTopAndBottom(false, &top, &bottom);
 336   stack->Unwind(kStackTraceMax, sig.pc, sig.bp, sig.context, top, bottom, fast);
 
 | 
| /src/bin/csh/ | 
| csh.c | 177 int fast = 0;  variable in typeref:typename:int 327 	fast = 1;		/* No home -> can't read scripts */
 410 	    case 'f':		/* -f	Fast start */
 411 		fast = 1;
 600     if (!fast && reenter == 0) {
 601 	/* Will have value(STRhome) here because set fast if don't */
 618 	    if (!fast && !arginp && !onelflg)
 630 	if (!fast && !arginp && !onelflg && !havhash)
 882     if (!fast) {
 
 | 
| /src/games/trek/ | 
| trek.h | 327 	char fast;			/* set if speed > 300 baud */  member in struct:Etc_struct 
 | 
| /src/sys/dev/pci/ | 
| ahc_pci.c | 707 				  int pcheck, int fast, int large); 1175 		  int fast, int large)
 1205 		if (fast)
 1238 	int fast;  local in function:ahc_probe_ext_scbram
 1243 	fast = FALSE;
 1253 	ahc_scbram_config(ahc, /*enable*/TRUE, pcheck, fast, large);
 1271 	ahc_scbram_config(ahc, enable, /*pcheck*/TRUE, fast, large);
 1281 	/* Now see if we can do fast timing */
 1282 	ahc_scbram_config(ahc, enable, pcheck, /*fast*/TRUE, large);
 1287 		fast = TRUE
 [all...]
 | 
| /src/sys/dev/stbi/ | 
| stb_image.c | 1091 //      - still fast on x86 (copying globals into locals doesn't help x86) 1099 //      - fast huffman; reasonable integer IDCT
 1113    uint8  fast[1 << FAST_BITS];  member in struct:__anon26c9e3660508
 1188    memset(h->fast, 255, 1 << FAST_BITS);
 1195             h->fast[c+j] = (uint8) i;
 1233    k = h->fast[c];
 1446       // no fast case since the first 1D IDCT spread components out
 2182 //      - fast huffman
 2184 // fast-way is faster to check than jpeg huffman, but slow way is slower
 2192    uint16 fast[1 << ZFAST_BITS]  member in struct:__anon26c9e3660908
 [all...]
 |