/src/sys/external/bsd/drm2/linux/ |
linux_stop_machine.c | 83 struct stop_machine stop, *S = &stop; local in function:stop_machine
|
linux_stop_machine.c | 83 struct stop_machine stop, *S = &stop; local in function:stop_machine
|
/src/usr.bin/colrm/ |
colrm.c | 63 u_long column, start, stop; local in function:main 76 start = stop = 0; 79 stop = strtol(argv[1], &p, 10); 80 if (stop <= 0 || *p) 94 if (stop && start > stop) 95 err(1, "illegal start and stop columns"); 117 if ((!start || column < start || (stop && column > stop)) && 135 (void)fprintf(stderr, "usage: colrm [start [stop]]\n") [all...] |
colrm.c | 63 u_long column, start, stop; local in function:main 76 start = stop = 0; 79 stop = strtol(argv[1], &p, 10); 80 if (stop <= 0 || *p) 94 if (stop && start > stop) 95 err(1, "illegal start and stop columns"); 117 if ((!start || column < start || (stop && column > stop)) && 135 (void)fprintf(stderr, "usage: colrm [start [stop]]\n") [all...] |
/src/distrib/utils/more/ |
signal.c | 74 static void stop __P((int)); 76 * "Stop" (^Z) signal handler. 79 stop(n) function 82 (void)signal(SIGTSTP, stop); 140 (void)signal(SIGTSTP, stop); 222 (void)signal(SIGTSTP, stop);
|
signal.c | 74 static void stop __P((int)); 76 * "Stop" (^Z) signal handler. 79 stop(n) function 82 (void)signal(SIGTSTP, stop); 140 (void)signal(SIGTSTP, stop); 222 (void)signal(SIGTSTP, stop);
|
/src/regress/sys/arch/m68k/emuspeed/ |
emuspeed.c | 73 clock_t start, stop; local in function:main 97 stop = clock(); 98 } while ((stop - start) < PRECISION); 100 CLOCKS_PER_SEC*(count /(stop - start)),
|
emuspeed.c | 73 clock_t start, stop; local in function:main 97 stop = clock(); 98 } while ((stop - start) < PRECISION); 100 CLOCKS_PER_SEC*(count /(stop - start)),
|
/src/sys/arch/x86/include/ |
cpuvar.h | 76 int (*stop)(struct cpu_info *); member in struct:cpu_functions
|
cpuvar.h | 76 int (*stop)(struct cpu_info *); member in struct:cpu_functions
|
/src/games/primes/ |
primes.c | 55 * primes [-dh] [start [stop]] 57 * Print primes >= start and < stop. If stop is omitted, 101 uint64_t stop; /* don't generate at or above this value */ local in function:main 121 stop = (uint64_t)(-1); 131 /* Start and stop supplied on the command line. */ 143 stop = strtoumax(argv[1], &p, 0); 168 if (start > stop) 169 errx(1, "start value must be less than stop value."); 170 primes(start, stop); [all...] |
primes.c | 55 * primes [-dh] [start [stop]] 57 * Print primes >= start and < stop. If stop is omitted, 101 uint64_t stop; /* don't generate at or above this value */ local in function:main 121 stop = (uint64_t)(-1); 131 /* Start and stop supplied on the command line. */ 143 stop = strtoumax(argv[1], &p, 0); 168 if (start > stop) 169 errx(1, "start value must be less than stop value."); 170 primes(start, stop); [all...] |
/src/tests/lib/libc/hash/ |
t_hmac.c | 49 int stop; local in function:test 90 stop = 0; 110 stop = 1; 113 ATF_REQUIRE_MSG(!stop, "hash %s failed for "
|
t_hmac.c | 49 int stop; local in function:test 90 stop = 0; 110 stop = 1; 113 ATF_REQUIRE_MSG(!stop, "hash %s failed for "
|
/src/sys/dev/raidframe/ |
rf_stripelocks.h | 55 RF_int64 start, stop; /* start and end of range to be locked */ member in struct:RF_LockReqDesc_s 93 (_lrd).stop = (_asm)->parityInfo->startSector + (_asm)->parityInfo->numSector-1; \ 100 (_lrd).stop = (_defSize); \
|
rf_stripelocks.h | 55 RF_int64 start, stop; /* start and end of range to be locked */ member in struct:RF_LockReqDesc_s 93 (_lrd).stop = (_asm)->parityInfo->startSector + (_asm)->parityInfo->numSector-1; \ 100 (_lrd).stop = (_defSize); \
|
/src/tests/lib/libpthread/ |
t_thrd.c | 175 struct timespec start, stop, diff; local in function:ATF_TC_BODY 192 ATF_REQUIRE_EQ(clock_gettime(CLOCK_MONOTONIC, &stop), 0); 193 timespecsub(&stop, &start, &diff); 208 ATF_REQUIRE_EQ(clock_gettime(CLOCK_MONOTONIC, &stop), 0); 209 timespecsub(&stop, &start, &diff);
|
t_thrd.c | 175 struct timespec start, stop, diff; local in function:ATF_TC_BODY 192 ATF_REQUIRE_EQ(clock_gettime(CLOCK_MONOTONIC, &stop), 0); 193 timespecsub(&stop, &start, &diff); 208 ATF_REQUIRE_EQ(clock_gettime(CLOCK_MONOTONIC, &stop), 0); 209 timespecsub(&stop, &start, &diff);
|
/src/sys/arch/aarch64/aarch64/ |
vm_machdep.c | 188 u_char *stop, *sbottom, *ptr; local in function:cpu_lwp_free 191 stop = PCB_END(l); 193 for (cnt = 0, ptr = stop; *ptr == 0xdd && ptr <= sbottom; cnt++, ptr++) 196 l, cnt, sbottom - stop);
|
vm_machdep.c | 188 u_char *stop, *sbottom, *ptr; local in function:cpu_lwp_free 191 stop = PCB_END(l); 193 for (cnt = 0, ptr = stop; *ptr == 0xdd && ptr <= sbottom; cnt++, ptr++) 196 l, cnt, sbottom - stop);
|
/src/bin/pax/ |
gen_subs.c | 217 char *stop; local in function:asc_u32 220 stop = str + len; 225 while ((str < stop) && ((*str == ' ') || (*str == '0'))) 233 while (str < stop) { 244 while ((str < stop) && (*str >= '0') && (*str <= '7')) 318 char *stop; local in function:asc_umax 321 stop = str + len; 327 if (str < stop && (*str & 0x80)) { 335 while (str < stop) { 350 while ((str < stop) && ((*str == ' ') || (*str == '0')) [all...] |
/src/lib/libnvmm/ |
nvmm.h | 44 * Version 2 - Added nvmm_vcpu::stop. 67 volatile int *stop; member in struct:nvmm_vcpu
|
/src/regress/sys/kern/nameibench/ |
nameibench.c | 60 volatile sig_atomic_t stop; variable in typeref:typename:volatile sig_atomic_t 108 for (c = 0, p = 0; !stop; c++) { 159 stop = (sig_atomic_t)1; 176 stop = 0;
|
/src/sys/dev/nvmm/ |
nvmm.h | 54 * Version 2 - Added nvmm_vcpu::stop. 90 volatile int stop; member in struct:nvmm_comm_page
|
/src/usr.bin/audio/record/ |
record.c | 79 static void stop (int); 81 static void stop (int sig) function in typeref:typename:void 295 signal(SIGINT, stop);
|