Searched refs:reps (Results 1 - 25 of 28) sorted by relevance

12

/external/eigen/bench/btl/generic_bench/timers/
H A DSTL_timer.hh35 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/
H A DAvalancheTest.cpp5 void PrintAvalancheDiagram ( int x, int y, int reps, double scale, int * bins ) argument
18 double b = double(bin) / double(reps);
37 double maxBias ( std::vector<int> & counts, int reps )
43 double c = double(counts[i]) / double(reps);
H A DAvalancheTest.h23 double maxBias ( std::vector<int> & counts, int reps );
28 void calcBias ( pfHash hash, std::vector<int> & counts, int reps, Rand & r ) argument
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, doubl argument
239 BicTest3( pfHash hash, const int reps, bool verbose = true ) argument
347 BicTest2( pfHash hash, const int reps, bool verbose = true ) argument
[all...]
H A DDifferentialTest.h22 bool ProcessDifferentials ( std::vector<keytype> & diffs, int reps, bool dumpCollisions ) argument
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 ) argument
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,dumpCollision
[all...]
H A DBitvec.cpp633 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(".");
H A DKeysetTest.cpp83 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/
H A Dxvmc_bench.c59 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/
H A Dxvmc_bench.c59 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/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs535 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[
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java535 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[
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.c253 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon12586
289 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon12587
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[
[all...]
H A DLzmaDec.c136 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[
[all...]
H A DLzmaDec.h62 UInt32 reps[4]; member in struct:__anon12579
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.c254 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon14167
290 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon14168
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[
[all...]
H A DLzmaDec.c137 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[
[all...]
H A DLzmaDec.h63 UInt32 reps[4]; member in struct:__anon14160
/external/lzma/C/
H A DLzmaEnc.c253 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon22914
289 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon22915
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[
[all...]
H A DLzmaDec.c136 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[
[all...]
H A DLzmaDec.h62 UInt32 reps[4]; member in struct:__anon22907
/external/chromium_org/chrome/browser/ui/app_list/
H A Dfast_show_pickler.cc79 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/
H A Dcvlinefit.cpp340 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, (floa
[all...]
/external/chromium_org/ui/gfx/image/
H A Dimage_skia.cc253 std::vector<gfx::ImageSkiaRep>& reps = storage_->image_reps(); local
254 for (std::vector<gfx::ImageSkiaRep>::iterator iter = reps.begin();
255 iter != reps.end(); ++iter) {
358 // Create list of image reps to return, skipping null image reps which were
/external/valgrind/main/perf/
H A Dvg_perf.in59 --reps=<n> number of repeats for each program [1]
132 if ($arg =~ /^--reps=(\d+)$/) {
134 if ($n_reps < 1) { die "bad --reps value: $n_reps\n"; }
/external/opencv/cv/include/
H A Dcvcompat.h433 void *param, float reps, float aeps, float* line )
438 cvFitLine( &mat, dist, _param, reps, aeps, line );
443 void *param, float reps, float aeps, float* line )
448 cvFitLine( &mat, dist, _param, reps, aeps, line );
432 cvFitLine3D( CvPoint3D32f* points, int count, int dist, void *param, float reps, float aeps, float* line ) argument
442 cvFitLine2D( CvPoint2D32f* points, int count, int dist, void *param, float reps, float aeps, float* line ) argument
/external/elfutils/src/
H A Dreadelf.c5708 int reps = -1; local
5711 ++reps;
5717 if (reps == 1)
5723 else if (reps > 1)
5725 ITEM_INDENT, "", reps);

Completed in 4464 milliseconds

12