HomeSort by relevance Sort by last modified time
    Searched refs:DATA_SIZE (Results 1 - 24 of 24) sorted by null

  /external/qemu/include/exec/
softmmu_exec.h 27 #define DATA_SIZE 1
30 #define DATA_SIZE 2
33 #define DATA_SIZE 4
36 #define DATA_SIZE 8
43 #define DATA_SIZE 1
46 #define DATA_SIZE 2
49 #define DATA_SIZE 4
52 #define DATA_SIZE 8
61 #define DATA_SIZE 1
64 #define DATA_SIZE
    [all...]
softmmu_template.h 26 #define DATA_SIZE (1 << SHIFT)
28 #if DATA_SIZE == 8
32 #elif DATA_SIZE == 4
36 #elif DATA_SIZE == 2
40 #elif DATA_SIZE == 1
55 #if defined(SOFTMMU_CODE_ACCESS) || DATA_SIZE == 8
72 #if DATA_SIZE == 8
74 #elif DATA_SIZE == 4
76 #elif DATA_SIZE == 2
90 #if DATA_SIZE ==
    [all...]
softmmu_header.h 28 #if DATA_SIZE == 8
32 #elif DATA_SIZE == 4
36 #elif DATA_SIZE == 2
41 #elif DATA_SIZE == 1
69 #if DATA_SIZE == 8
95 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))))) {
104 #if DATA_SIZE <= 2
116 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))))) {
143 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))))) {
155 #if DATA_SIZE ==
    [all...]
exec-all.h 372 #define DATA_SIZE 1
375 #define DATA_SIZE 2
378 #define DATA_SIZE 4
381 #define DATA_SIZE 8
  /libcore/benchmarks/src/benchmarks/regression/
MessageDigestBenchmark.java 25 private static final int DATA_SIZE = 8192;
26 private static final byte[] DATA = new byte[DATA_SIZE];
28 for (int i = 0; i < DATA_SIZE; i++) {
45 digest.update(DATA, 0, DATA_SIZE);
DigestBenchmark.java 25 private static final int DATA_SIZE = 8192;
26 private static final byte[] DATA = new byte[DATA_SIZE];
28 for (int i = 0; i < DATA_SIZE; i++) {
61 digest.update(DATA, 0, DATA_SIZE);
CipherInputStreamBenchmark.java 43 private static final int DATA_SIZE = 1024 * 1024;
44 private static final byte[] DATA = new byte[DATA_SIZE];
50 for (int i = 0; i < DATA_SIZE; i++) {
CipherBenchmark.java 39 private static final int DATA_SIZE = 8192;
40 private static final byte[] DATA = new byte[DATA_SIZE];
47 for (int i = 0; i < DATA_SIZE; i++) {
SignatureBenchmark.java 35 private static final int DATA_SIZE = 8192;
36 private static final byte[] DATA = new byte[DATA_SIZE];
38 for (int i = 0; i < DATA_SIZE; i++) {
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_laplace.c 43 #define DATA_SIZE 40000
61 ptr = (unsigned char *)malloc(DATA_SIZE);
62 ec_enc_init(&enc,ptr,DATA_SIZE);
test_unit_entropy.c 49 #define DATA_SIZE 10000000
81 ptr = (unsigned char *)malloc(DATA_SIZE);
82 ec_enc_init(&enc,ptr, DATA_SIZE);
109 ec_dec_init(&dec,ptr,DATA_SIZE);
  /external/libopus/celt/tests/
test_unit_laplace.c 43 #define DATA_SIZE 40000
61 ptr = (unsigned char *)malloc(DATA_SIZE);
62 ec_enc_init(&enc,ptr,DATA_SIZE);
test_unit_entropy.c 49 #define DATA_SIZE 10000000
81 ptr = (unsigned char *)malloc(DATA_SIZE);
82 ec_enc_init(&enc,ptr, DATA_SIZE);
109 ec_dec_init(&dec,ptr,DATA_SIZE);
  /external/e2fsprogs/tests/progs/
random_exercise.c 36 #define DATA_SIZE 65536
38 char data_buffer[DATA_SIZE];
87 size = random() & (DATA_SIZE-1);
105 size = random() & (DATA_SIZE-1);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 128 final int DATA_SIZE = 16384;
132 byte[] input = new byte[DATA_SIZE];
154 byte[] zipped = new byte[2 * DATA_SIZE]; // Just to make sure...
162 byte[] output = new byte[DATA_SIZE];
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 23 #define DATA_SIZE (10)
91 data += DATA_SIZE;
92 offset += DATA_SIZE;
106 i = (STRS_AREA_TOP_ADDR(loctset->loct.handle) - data) / DATA_SIZE;
141 data += DATA_SIZE;
142 offset += DATA_SIZE;
  /external/deqp/execserver/tools/
xsTest.cpp 621 DATA_SIZE = 100*1024*1024
682 if (receivedBytes != DATA_SIZE)
684 printf(" received: %d bytes\n expected: %d bytes\n", receivedBytes, DATA_SIZE);
689 printf(" Streamed %d bytes in %d ms: %.2f MiB/s\n", DATA_SIZE, timeMs, ((float)DATA_SIZE / (float)(1024*1024)) / ((float)timeMs / 1000.0f));
702 while (numWritten < DATA_SIZE)
705 XS_CHECK(deFile_write(file, &tmpBuf[0], de::min((int)sizeof(tmpBuf), DATA_SIZE-numWritten), &numWrittenInBatch) == DE_FILERESULT_SUCCESS);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowPage.java 310 private static final int DATA_SIZE = 32;
338 mData = mMediaSet.getMediaItem(index, DATA_SIZE);
  /external/mdnsresponder/mDNSShared/
DebugServices.h     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
richards.js 441 for (var i = 0; i < DATA_SIZE; i++) {
476 if (count < DATA_SIZE) {
501 var DATA_SIZE = 4;
520 this.a2 = new Array(DATA_SIZE);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-richards.js 436 for (var i = 0; i < DATA_SIZE; i++) {
471 if (count < DATA_SIZE) {
496 var DATA_SIZE = 4;
515 this.a2 = new Array(DATA_SIZE);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-richards.js 436 for (var i = 0; i < DATA_SIZE; i++) {
471 if (count < DATA_SIZE) {
496 var DATA_SIZE = 4;
515 this.a2 = new Array(DATA_SIZE);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-richards.js 436 for (var i = 0; i < DATA_SIZE; i++) {
471 if (count < DATA_SIZE) {
496 var DATA_SIZE = 4;
515 this.a2 = new Array(DATA_SIZE);
  /external/chromium_org/v8/benchmarks/
richards.js 441 for (var i = 0; i < DATA_SIZE; i++) {
476 if (count < DATA_SIZE) {
501 var DATA_SIZE = 4;
520 this.a2 = new Array(DATA_SIZE);

Completed in 1053 milliseconds