HomeSort by relevance Sort by last modified time
    Searched refs:cycles (Results 101 - 125 of 309) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/
nowritebarrier.go 39 // Test recursive cycles through nowritebarrierrec and yeswritebarrierrec.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
mul.s 5 # in IU in consecutive cycles in the order (a)->(b). It does neither prohibit
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_blend.c 85 double cycles,
91 fprintf(fp, "%.1f\t", cycles / type.length);
96 fprintf(fp, "%.1f\t", cycles / (4 * type.length));
470 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
523 cycles[i] = end_counter - start_counter;
603 cycles[i] = end_counter - start_counter;
660 sum += cycles[i];
661 sum2 += cycles[i]*cycles[i];
670 if(fabs(cycles[i] - avg) <= 4.0*std)
    [all...]
  /external/swiftshader/src/Main/
SwiftConfig.cpp 470 int texTime = (int)(1000 * profiler.cycles[PERF_TEX] / profiler.cycles[PERF_PIXEL] + 0.5);
471 int shaderTime = (int)(1000 * profiler.cycles[PERF_SHADER] / profiler.cycles[PERF_PIXEL] + 0.5);
472 int pipeTime = (int)(1000 * profiler.cycles[PERF_PIPE] / profiler.cycles[PERF_PIXEL] + 0.5);
473 int ropTime = (int)(1000 * profiler.cycles[PERF_ROP] / profiler.cycles[PERF_PIXEL] + 0.5);
474 int interpTime = (int)(1000 * profiler.cycles[PERF_INTERP] / profiler.cycles[PERF_PIXEL] + 0.5)
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
initorder.go 59 // cycles.
80 // another error (unless they are part of multiple cycles).
169 // Constants are here because constant expression cycles are reported during
225 // (Mutually recursive functions may introduce cycles among themselves
226 // which are permitted. Yet such cycles may incorrectly inflate the dependency
235 // ignore self-cycles
240 // ignore self-cycles
  /prebuilts/go/linux-x86/src/go/types/
initorder.go 59 // cycles.
80 // another error (unless they are part of multiple cycles).
169 // Constants are here because constant expression cycles are reported during
225 // (Mutually recursive functions may introduce cycles among themselves
226 // which are permitted. Yet such cycles may incorrectly inflate the dependency
235 // ignore self-cycles
240 // ignore self-cycles
  /external/autotest/client/site_tests/hardware_Usb30Throughput/
hardware_Usb30Throughput.py 52 storage = self.wait_for_device(volume_filter, cycles=1,
  /external/autotest/client/site_tests/hardware_UsbMount/
hardware_UsbMount.py 43 storage = self.wait_for_device(filter_dict, cycles=1,
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 266 def run_single_test(self, compression_factor, num_procs, cycles,
274 @param cycles: Number of iterations over hogs list for a given swap lvl
338 for count in range(cycles):
399 def run_once(self, compression_factor=3, num_procs=50, cycles=20,
448 self.run_single_test(compression_factor, num_procs, cycles,
  /external/swiftshader/src/Renderer/
QuadRasterizer.cpp 44 cycles[i] = 0;
81 cycles[PERF_PIXEL] = Ticks() - pixelTime;
85 *Pointer<Long>(data + OFFSET(DrawData,cycles[i]) + 8 * cluster) += cycles[i];
  /external/valgrind/exp-bbv/tests/amd64-linux/
clone_test.S 9 # 1000 cycles in initial thread #
  /external/valgrind/exp-bbv/tests/x86-linux/
clone_test.S 9 # 1000 cycles in initial thread #
  /external/zlib/src/examples/
gzappend.c 126 unsigned cycles; local
153 /* otherwise do rotate as a set of cycles in place */
154 cycles = gcd(len, rot); /* number of cycles */
156 start = from = list + cycles; /* start index is arbitrary */
166 } while (--cycles);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL35xSmc/
InitializeSMC.asm 45 // Write to direct_cmd register so that the NOR 1 registers(set-cycles and opmode) are updated with holding registers
  /external/autotest/client/site_tests/power_LoadTest/extension/
test.js 6 var cycles = {}; variable
157 cycles[task.name] = cycle;
193 for (var name in cycles) {
194 var cycle = cycles[name];
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorSubclassTest.java 212 * cycles - 1 <= elapsedMillis/delay < cycles
219 final int cycles = 8; local
220 final CountDownLatch done = new CountDownLatch(cycles);
225 final int totalDelayMillis = (cycles - 1) * delay;
230 if (elapsedMillis <= cycles * delay)
250 final int cycles = 8; local
251 final CountDownLatch done = new CountDownLatch(cycles);
258 if (done.getCount() == cycles) { // first execution
271 final int totalDelayMillis = (cycles - 1) * delay
    [all...]
ScheduledExecutorTest.java 156 * cycles - 1 <= elapsedMillis/delay < cycles
163 final int cycles = 8; local
164 final CountDownLatch done = new CountDownLatch(cycles);
169 final int totalDelayMillis = (cycles - 1) * delay;
174 if (elapsedMillis <= cycles * delay)
194 final int cycles = 8; local
195 final CountDownLatch done = new CountDownLatch(cycles);
202 if (done.getCount() == cycles) { // first execution
215 final int totalDelayMillis = (cycles - 1) * delay
    [all...]
  /external/dng_sdk/source/
dng_utils.cpp 252 LARGE_INTEGER cycles; local
254 QueryPerformanceCounter (&cycles);
256 return (real64) cycles.QuadPart * freqMultiplier;
  /toolchain/binutils/binutils-2.25/opcodes/
z8kgen.c 31 int cycles; member in struct:op
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
itertoolsmodule.c 2564 Py_ssize_t *cycles; \/* one rollover counter per element in the result *\/ member in struct:__anon5474
2582 Py_ssize_t *cycles = NULL; local
2667 Py_ssize_t *cycles = po->cycles; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
itertoolsmodule.c 2525 Py_ssize_t *cycles; \/* one rollover counter per element in the result *\/ member in struct:__anon5809
2543 Py_ssize_t *cycles = NULL; local
2628 Py_ssize_t *cycles = po->cycles; local
    [all...]
  /external/autotest/client/site_tests/hardware_MultiReaderPowerConsumption/
hardware_MultiReaderPowerConsumption.py 106 self._storage = self.wait_for_device(volume_filter, cycles=1,
  /external/autotest/client/site_tests/hardware_UsbBasicFileOperations/
hardware_UsbBasicFileOperations.py 18 storage = self.wait_for_device(volume_filter, cycles=1,
  /toolchain/binutils/binutils-2.25/gas/config/
tc-xtensa.h 446 int cycles; member in struct:__anon108350
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_quality_test.cc 354 int cycles = block_duration_ms_ / kPacketLossTimeUnitMs; local
359 for (int idx = 0; idx < cycles; idx ++) {

Completed in 1728 milliseconds

1 2 3 45 6 7 8 91011>>