Package util

Examples of util.StopWatch.nanoTime()


    timer.start();
    for (int k = 0; k < COUNT / 10; k++) {
      BenchBasic.testIterateSet0(set);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT / SIZE * 10;
    log.info("iterate object set; nanos={}", nanos);

    //

    final int FILL_SIZE = 1024;
View Full Code Here


    timer.start();
    for (int k = 0; k < COUNT; k++) {
      BenchBasic.testFillArray0(fillArray);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("fillArray;  nanos={}", nanos);

    final ByteBuffer fillBuffer = ByteBuffer.allocateDirect(FILL_SIZE);
    timer.start();
    for (int k = 0; k < COUNT; k++) {
View Full Code Here

    timer.start();
    for (int k = 0; k < COUNT; k++) {
      BenchBasic.testFillBuffer0(fillBuffer);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("fillBuffer; nanos={}", nanos);

    final IntBuffer loadBuffer = HelpUDT.newDirectIntBufer(1024);
    timer.start();
    for (int k = 0; k < COUNT; k++) {
View Full Code Here

    timer.start();
    for (int k = 0; k < COUNT; k++) {
      BenchBasic.testDirectIntBufferLoad0(loadBuffer);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("loadBuffer; nanos={}", nanos);

  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.