HomeSort by relevance Sort by last modified time
    Searched defs:burn (Results 1 - 4 of 4) sorted by null

  /external/valgrind/gdbserver_tests/
clean_after_fork.c 17 int burn; local
18 for (burn = 0; burn < 100000; burn++) /* burncpu */__asm__ __volatile("":::"memory") ;
sleepers.c 15 static int burn = 0; // after each sleep, will burn cpu in a tight 'burn' loop variable
41 for (i = 0; i < burn; i++) loopnr++;
65 int burn; member in struct:spec
77 fprintf(stderr, "%s ready to sleep and/or burn\n", s->name);
91 if (burn > 0 && s->burn)
95 fprintf(stderr, "%s finished to sleep and/or burn\n", s->name);
122 // threads wanting to burn cpu
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
InputStreamBuffer.java 200 // Burn some bytes from the input stream to match the new index.
201 int burn = i - mFilled; local
205 while (burn > 0) {
206 final long burned = mInputStream.skip(burn);
210 burn -= burned;
227 mOffset = index - burn;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
InputStreamBuffer.java 200 // Burn some bytes from the input stream to match the new index.
201 int burn = i - mFilled; local
205 while (burn > 0) {
206 final long burned = mInputStream.skip(burn);
210 burn -= burned;
227 mOffset = index - burn;

Completed in 126 milliseconds