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

1 2

  /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/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
Optimum.java 17 final int[] reps = new int[LZMACoder.REPS]; field in class:Optimum
LZMACoder.java 33 static final int REPS = 4;
37 final int[] reps = new int[REPS]; field in class:LZMACoder
65 reps[0] = 0;
66 reps[1] = 0;
67 reps[2] = 0;
68 reps[3] = 0;
  /external/skia/tools/
random_parse_path.cpp 37 int reps = rand->nextRangeU(0, 2); local
38 for (int rep = 0; rep < reps; ++rep) {
75 int reps = rand->nextRangeU(1, 3); local
76 for (int rep = 0; rep < reps; ++rep) {
81 if (rep < reps - 1 && index < legal.fScalars - 1) {
  /external/brotli/enc/
bit_cost_inc.h 95 uint32_t reps = 1; local
98 ++reps;
100 i += reps;
106 if (reps < 3) {
107 depth_histo[0] += reps;
109 reps -= 2;
110 while (reps > 0) {
114 reps >>= 3;
entropy_encode.c 383 size_t reps = 1; local
386 ++reps;
388 if (reps >= 3 && value == 0) {
389 total_reps_zero += reps;
392 if (reps >= 4 && value != 0) {
393 total_reps_non_zero += reps;
396 i += reps;
434 size_t reps = 1; local
439 ++reps;
444 reps, tree_size, tree, extra_bits_data)
    [all...]
brotli_bit_stream.c 560 size_t reps = 1; local
563 ++reps;
565 i += reps;
567 BrotliWriteBits(kZeroRepsDepth[reps], kZeroRepsBits[reps],
573 --reps;
575 if (reps < 3) {
576 while (reps != 0) {
577 reps--;
582 reps -= 3
650 uint32_t reps = 0; local
668 uint32_t reps = 1; local
    [all...]
  /external/skia/fuzz/
FuzzParsePath.cpp 44 uint8_t reps; local
45 fuzz->nextRange(&reps, 0, 2);
46 for (uint8_t rep = 0; rep < reps; ++rep) {
85 uint8_t reps; local
86 fuzz->nextRange(&reps, 1, 3);
87 for (int rep = 0; rep < reps; ++rep) {
93 if (rep < reps - 1 && index < legal.fScalars - 1) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.h 58 UInt32 reps[4]; member in struct:__anon6424
LzmaEnc.c 286 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon6429
322 UInt32 reps[LZMA_NUM_REPS]; member in struct:_CLzmaEnc
395 memcpy(dest->reps, p->reps, sizeof(p->reps));
421 memcpy(dest->reps, p->reps, sizeof(p->reps));
967 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
1004 reps[i] = p->reps[i];
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 58 UInt32 reps[4]; member in struct:__anon8071
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 58 UInt32 reps[4]; member in struct:__anon8988
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllocationStats.java 39 private final int reps; field in class:AllocationStats
45 * number of {@code reps} passed to the benchmark method.
47 AllocationStats(int allocationCount, long allocationSize, int reps) {
48 this(allocationCount, allocationSize, reps, ImmutableMultiset.<Allocation>of());
53 * {@code reps} passed to the benchmark method.
55 AllocationStats(Collection<Allocation> allocations, int reps) {
56 this(allocations.size(), Allocation.getTotalSize(allocations), reps, local
60 private AllocationStats(int allocationCount, long allocationSize, int reps,
66 checkArgument(reps >= 0, "reps (%s) was negative", reps)
181 private final int reps; field in class:AllocationStats.Delta
    [all...]
  /external/lzma/C/
LzmaDec.h 60 UInt32 reps[4]; member in struct:__anon26868
LzmaEnc.c 281 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon26875
313 UInt32 reps[LZMA_NUM_REPS]; member in struct:__anon26876
408 memcpy(dest->reps, p->reps, sizeof(p->reps));
434 memcpy(dest->reps, p->reps, sizeof(p->reps));
987 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
1030 reps[i] = p->reps[i];
    [all...]
  /external/v8/src/compiler/
gap-resolver.cc 89 int reps = 0; local
99 reps |=
105 if (reps && !base::bits::IsPowerOfTwo32(reps)) {
108 if ((reps & kFloat32Bit) != 0) {
116 if ((reps & kFloat64Bit) != 0) {
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
xvmc_bench.c 61 unsigned int reps; member in struct:Config
77 config->reps = DEFAULT_REPS;
141 if (sscanf(argv[++i], "%u", &config->reps) != 1)
161 "\t-r <reps>\tRepetitions\n\n"
195 unsigned int reps; local
270 for (reps = 0; reps < config.reps; ++reps)
296 printf("Reps: %u\n", config.reps)
    [all...]
  /external/syslinux/core/legacynet/
dnsresolv.c 220 int ques, reps; /* number of questions and replies */ local
318 reps = htons(hd2->ancount); /* Replies */
326 while (reps--) {
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AutoRunFragment.java 87 final int reps = args.getInt("Reps", 10); local
107 midiTest.setInputRepetitions(reps);
118 midiTest.setOutputRepetitions(reps);
129 audioTest.setRecordingRepetitions(reps);
144 audioTest.setPlaybackRepetitions(reps);
  /frameworks/base/core/java/android/view/textclassifier/
TextClassifierImpl.java 539 final Map<Integer, SpanSpec> reps = new LinkedHashMap<>(); // order matters. local
543 final LinksInfoFactory.SpanSpec rep = reps.get(span.mStart);
545 reps.put(span.mStart, span);
550 for (SpanSpec rep : reps.values()) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 111 ArrayList<FilterRepresentation> reps = new ArrayList<FilterRepresentation>(2); local
112 reps.add(mLocalRep);
114 reps.add(new FilterCropRepresentation(mCrop));
116 return reps;
  /external/brotli/java/org/brotli/dec/
Decode.java 327 int reps = (1 << code) + BitReader.readBits(br, code); local
328 while (reps != 0) {
334 reps--;
  /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/brotli/dec/
decode.c 1005 uint32_t reps; local
    [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...]

Completed in 1112 milliseconds

1 2