HomeSort by relevance Sort by last modified time
    Searched refs:reps (Results 1 - 25 of 33) sorted by null

1 2

  /art/test/110-field-access/src/
Main.java 32 public int timeField(int reps) {
34 for (int rep = 0; rep < reps; ++rep) {
39 public int timeFieldFinal(int reps) {
41 for (int rep = 0; rep < reps; ++rep) {
46 public int timeFieldStatic(int reps) {
48 for (int rep = 0; rep < reps; ++rep) {
53 public int timeFieldStaticFinal(int reps) {
55 for (int rep = 0; rep < reps; ++rep) {
60 public int timeFieldCached(int reps) {
63 for (int rep = 0; rep < reps; ++rep)
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
bit_cost.h 56 int reps = 1; local
58 ++reps;
60 i += reps;
64 if (reps < 3) {
65 histogram[0] += reps;
67 reps -= 2;
68 while (reps > 0) {
70 reps >>= 3;
77 --reps;
80 if (reps < 3)
    [all...]
entropy_encode.cc 392 int reps = 1; local
396 ++reps;
398 if (reps >= 3 && value == 0) {
399 total_reps_zero += reps;
402 if (reps >= 4 && value != 0) {
403 total_reps_non_zero += reps;
406 i += reps;
429 int reps = 1; local
436 ++reps;
441 WriteHuffmanTreeRepetitionsZeros(reps, tree, extra_bits_data
    [all...]
  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 35 reps = r;
38 iterations.reserve(reps);
57 return (iterations.size() < reps);
63 return 1.0/iterations[reps/2];
66 unsigned int reps; // Number of trials member in class:STL_Timer
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 5 void PrintAvalancheDiagram ( int x, int y, int reps, double scale, int * bins )
18 double b = double(bin) / double(reps);
37 double maxBias ( std::vector<int> & counts, int reps )
43 double c = double(counts[i]) / double(reps);
AvalancheTest.h 23 double maxBias ( std::vector<int> & counts, int reps );
28 void calcBias ( pfHash hash, std::vector<int> & counts, int reps, Rand & r )
39 for(int irep = 0; irep < reps; irep++)
41 if(irep % (reps/10) == 0) printf(".");
69 bool AvalancheTest ( pfHash hash, const int reps )
79 printf("Testing %3d-bit keys -> %3d-bit hashes, %8d reps",keybits,hashbits,reps);
85 calcBias<keytype,hashtype>(hash,bins,reps,r);
91 double b = maxBias(bins,reps);
111 void BicTest ( pfHash hash, const int keybit, const int reps, double & maxBias, int & maxA, int & maxB, bool verbose
    [all...]
DifferentialTest.h 22 bool ProcessDifferentials ( std::vector<keytype> & diffs, int reps, bool dumpCollisions )
48 double pct = 100 * (double(count) / double(reps));
68 double pct = 100 * (double(count) / double(reps));
133 bool DiffTest ( pfHash hash, int diffbits, int reps, bool dumpCollisions )
139 double testcount = (diffcount * double(reps));
150 printf("%d reps, %0.f total tests, expecting %2.2f random collisions",reps,testcount,expected);
152 for(int i = 0; i < reps; i++)
154 if(i % (reps/10) == 0) printf(".");
167 result &= ProcessDifferentials(diffs,reps,dumpCollisions)
    [all...]
Bitvec.cpp 633 int reps = 10000; local
635 for(int j = 0; j < reps; j++)
637 if(j % (reps/10) == 0) printf(".");
679 int reps = 10000; local
681 for(int j = 0; j < reps; j++)
683 if(j % (reps/10) == 0) printf(".");
712 int reps = 10000; local
714 for(int j = 0; j < reps; j++)
716 if(j % (reps/10) == 0) printf(".");
KeysetTest.cpp 83 const int reps = 10; local
96 for(int irep = 0; irep < reps; irep++)
98 if(irep % (reps/10) == 0) printf(".");
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
xvmc_bench.c 59 unsigned int reps; member in struct:Config
75 config->reps = DEFAULT_REPS;
139 if (sscanf(argv[++i], "%u", &config->reps) != 1)
159 "\t-r <reps>\tRepetitions\n\n"
191 unsigned int reps; local
261 for (reps = 0; reps < config.reps; ++reps)
287 printf("Reps: %u\n", config.reps)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
xvmc_bench.c 59 unsigned int reps; member in struct:Config
75 config->reps = DEFAULT_REPS;
139 if (sscanf(argv[++i], "%u", &config->reps) != 1)
159 "\t-r <reps>\tRepetitions\n\n"
191 unsigned int reps; local
261 for (reps = 0; reps < config.reps; ++reps)
287 printf("Reps: %u\n", config.reps)
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 535 int[] reps = new int[Base.kNumRepDistances]; field in class:Encoder
575 reps[i] = _repDistances[i];
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
635 _optimum[0].Backs0 = reps[0];
636 _optimum[0].Backs1 = reps[1];
637 _optimum[0].Backs2 = reps[2];
638 _optimum[0].Backs3 = reps[3];
760 reps[0] = opt.Backs0;
761 reps[1] = opt.Backs1;
762 reps[2] = opt.Backs2;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 535 UInt32[] reps = new UInt32[Base.kNumRepDistances]; field in class:SevenZip.Compression.LZMA.Encoder
575 reps[i] = _repDistances[i];
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
635 _optimum[0].Backs0 = reps[0];
636 _optimum[0].Backs1 = reps[1];
637 _optimum[0].Backs2 = reps[2];
638 _optimum[0].Backs3 = reps[3];
760 reps[0] = opt.Backs0;
761 reps[1] = opt.Backs1;
762 reps[2] = opt.Backs2;
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 253 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon18065
289 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon18066
361 memcpy(dest->reps, p->reps, sizeof(p->reps));
387 memcpy(dest->reps, p->reps, sizeof(p->reps));
933 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
970 reps[i] = p->reps[i]
    [all...]
LzmaDec.c 136 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
419 p->reps[0] = rep0;
420 p->reps[1] = rep1;
421 p->reps[2] = rep2;
422 p->reps[3] = rep3;
436 UInt32 rep0 = p->reps[0];
522 unsigned matchByte = p->dic[p->dicPos - p->reps[0]
    [all...]
LzmaDec.h 62 UInt32 reps[4]; member in struct:__anon18058
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 254 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon19389
290 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon19390
362 memcpy(dest->reps, p->reps, sizeof(p->reps));
388 memcpy(dest->reps, p->reps, sizeof(p->reps));
934 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
971 reps[i] = p->reps[i]
    [all...]
LzmaDec.c 137 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
420 p->reps[0] = rep0;
421 p->reps[1] = rep1;
422 p->reps[2] = rep2;
423 p->reps[3] = rep3;
437 UInt32 rep0 = p->reps[0];
523 unsigned matchByte = p->dic[p->dicPos - p->reps[0]
    [all...]
LzmaDec.h 63 UInt32 reps[4]; member in struct:__anon19382
  /external/lzma/C/
LzmaEnc.c 253 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon6265
289 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon6266
361 memcpy(dest->reps, p->reps, sizeof(p->reps));
387 memcpy(dest->reps, p->reps, sizeof(p->reps));
933 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
970 reps[i] = p->reps[i];
    [all...]
LzmaDec.c 136 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
419 p->reps[0] = rep0;
420 p->reps[1] = rep1;
421 p->reps[2] = rep2;
422 p->reps[3] = rep3;
436 UInt32 rep0 = p->reps[0];
522 unsigned matchByte = p->dic[p->dicPos - p->reps[0] +
    [all...]
LzmaDec.h 62 UInt32 reps[4]; member in struct:__anon6258
  /external/chromium_org/chrome/browser/ui/app_list/
fast_show_pickler.cc 79 std::vector<gfx::ImageSkiaRep> reps(image.image_reps());
80 pickle->WriteInt(static_cast<int>(reps.size()));
81 for (std::vector<gfx::ImageSkiaRep>::const_iterator it = reps.begin();
82 it != reps.end(); ++it) {
  /external/opencv/cv/src/
cvlinefit.cpp 340 float _param, float reps, float aeps, float *line )
349 float rdelta = reps != 0 ? reps : 1.0f;
489 float _param, float reps, float aeps, float *line )
498 float rdelta = reps != 0 ? reps : 1.0f;
641 double reps, double aeps, float *line )
685 if( reps < 0 || aeps < 0 )
686 CV_ERROR( CV_StsOutOfRange, "Both reps and aeps must be non-negative" );
714 dist, (float)param, (float)reps, (float)aeps, line ))
    [all...]
  /external/chromium_org/v8/src/compiler/
machine-type.h 108 Signature(size_t return_count, size_t parameter_count, T* reps)
111 reps_(reps) {}

Completed in 7106 milliseconds

1 2