HomeSort by: relevance | last modified time | path
    Searched defs:guess (Results 1 - 4 of 4) sorted by relevancy

  /src/tests/usr.bin/xlint/lint1/
gcc_init_compound_literal.c 42 /* expect+1: warning: static variable 'guess' unused [226] */
43 static const struct node guess = { variable in typeref:typename:const struct node
  /src/sys/arch/shark/isa/
clock.c 481 unsigned int guess = FIRST_GUESS; local in function:findcpuspeed
489 delayloop(guess);
499 guess *= uimax(2, (TIMER_MUSECDIV(1024) / ticks));
502 count1024usec = (guess * (TIMER_MUSECDIV(1024))) / ticks;
  /src/sys/uvm/
uvm_physseg.c 891 int start, len, guess; local in function:vm_physseg_find_bsearch
907 guess = start + (len / 2); /* try in the middle */
910 if (pframe >= segs[guess].start) {
912 if (pframe < segs[guess].end) {
914 *offp = pframe - segs[guess].start;
915 return guess; /* got it */
917 start = guess + 1; /* next time, start here */
  /src/sys/kern/
vfs_bio.c 560 u_long guess; local in function:buf_lotsfree
580 guess = cprng_fast32() % 16;
582 if ((bufmem_hiwater - bufmem_lowater) / 16 * guess >=

Completed in 17 milliseconds