/src/games/rogue/ |
random.c | 74 static long *end_ptr = &rntb[32]; variable in typeref:typename:long * 106 if (++fptr >= end_ptr) { 110 if (++rptr >= end_ptr) {
|
/src/common/lib/libc/stdlib/ |
random.c | 252 static uint32_t *end_ptr = &randtbl[DEG_3 + 1]; variable in typeref:typename:uint32_t * 379 end_ptr = &state[rand_deg]; /* must set end_ptr before srandom */ 446 end_ptr = &state[rand_deg]; /* set end_ptr too */ 485 if (++f >= end_ptr) { 489 else if (++r >= end_ptr) {
|
/src/sys/arch/amiga/dev/ |
if_es.c | 777 u_short start_ptr, end_ptr; local in function:esstart 871 end_ptr = SWAP(smc->b2.ptr); /* save PTR after copy */ 911 printf("start_ptr %04x end_ptr %04x cur ptr %04x\n", 912 start_ptr, end_ptr, SWAP(smc->b2.ptr));
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_modes.c | 1439 static int drm_mode_parse_cmdline_bpp(const char *str, char **end_ptr, 1448 bpp = simple_strtol(str, end_ptr, 10); 1449 if (*end_ptr == str) 1458 static int drm_mode_parse_cmdline_refresh(const char *str, char **end_ptr, 1467 refresh = simple_strtol(str, end_ptr, 10); 1468 if (*end_ptr == str) 1537 char *end_ptr; local in function:drm_mode_parse_cmdline_res_mode 1539 xres = simple_strtol(str, &end_ptr, 10); 1540 if (end_ptr == str) 1543 if (end_ptr[0] != 'x' [all...] |