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

  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-150729.js 31 function burn() { function
37 if (j == 2) %OptimizeFunctionOnNextCall(burn);
38 burn();
  /external/chromium_org/v8/test/mjsunit/
elements-kind-depends.js 30 function burn() { function
46 b = burn();
49 %OptimizeFunctionOnNextCall(burn);
50 b = burn();
  /external/v8/test/mjsunit/
elements-kind-depends.js 30 function burn() { function
46 b = burn();
49 %OptimizeFunctionOnNextCall(burn);
50 b = burn();
  /external/valgrind/main/gdbserver_tests/
clean_after_fork.c 17 int burn; local
18 for (burn = 0; burn < 100000; burn++) /* burncpu */__asm__ __volatile("":::"memory") ;
sleepers.c 14 static int burn = 0; // after each sleep, will burn cpu in a tight 'burn' loop variable
39 for (i = 0; i < burn; i++) loopnr++;
63 int burn; member in struct:spec
75 fprintf(stderr, "%s ready to sleep and/or burn\n", s->name);
86 if (burn > 0 && s->burn)
90 fprintf(stderr, "%s finished to sleep and/or burn\n", s->name);
117 // threads wanting to burn cpu
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
burn_library.cc 115 BurnLibraryImpl* burn = static_cast<BurnLibraryImpl*>(object); local
117 // Copy burn status because it will be freed after returning from this method.
120 BurnLibraryTaskProxy* task = new BurnLibraryTaskProxy(burn->AsWeakPtr());
136 // If burn is finished, remove target paths from paths being burnt to.
  /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 2734 milliseconds