Searched refs:repeat (Results 26 - 50 of 354) sorted by relevance

1234567891011>>

/external/autotest/server/site_tests/enterprise_CFM_SessionStress/
H A Denterprise_CFM_SessionStress.py37 def run_once(self, host, repeat):
65 while repeat:
68 repeat -= 1
/external/gemmlowp/test/
H A Dtest_blocking_counter.cc86 for (int repeat = 1; repeat <= 2; repeat++) {
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3.c82 uint32_t repeat, uint32_t valid_flags)
92 repeat = 0;
103 max = (reg->array.offset + repeat + components - 1) >> 2;
108 max = (reg->num + repeat + components - 1) >> 2;
139 cat0->repeat = instr->repeat;
172 cat1->off = reg(src, info, instr->repeat,
177 cat1->src = reg(src, info, instr->repeat,
182 cat1->dst = reg(dst, info, instr->repeat,
185 cat1->repeat
81 reg(struct ir3_register *reg, struct ir3_info *info, uint32_t repeat, uint32_t valid_flags) argument
[all...]
/external/autotest/server/site_tests/enterprise_CFM_VolumeChange/
H A Denterprise_CFM_VolumeChange.py69 def _change_volume(self, repeat, cmd):
73 @param repeat: Number of times the volume should be changed.
82 while repeat:
98 repeat -= 1
101 def run_once(self, host, repeat, cmd):
121 self._change_volume(repeat, cmd)
/external/okhttp/okio/okio/src/test/java/okio/
H A DRealBufferedSinkTest.java22 import static okio.TestUtil.repeat;
46 bufferedSink.writeUtf8(repeat('a', Segment.SIZE - 1));
56 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 4 - 1));
97 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3));
104 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3 - 1));
226 Buffer write1 = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE));
227 Buffer write2 = new Buffer().writeUtf8(TestUtil.repeat('b', Segment.SIZE));
228 Buffer write3 = new Buffer().writeUtf8(TestUtil.repeat('c', Segment.SIZE));
231 + TestUtil.repeat('a', Segment.SIZE)
232 + TestUtil.repeat('
[all...]
H A DOkioTest.java26 import static okio.TestUtil.repeat;
87 data.writeUtf8(repeat('b', 9998));
95 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8"));
100 ("a" + repeat('b', Segment.SIZE * 2) + "c").getBytes(UTF_8));
112 assertEquals(repeat('b', Segment.SIZE), sink.readUtf8());
116 assertEquals(repeat('b', Segment.SIZE - 2) + "c", sink.readUtf8());
H A DBufferedSourceTest.java31 import static okio.TestUtil.repeat;
148 sink.writeUtf8(repeat('a', Segment.SIZE - 1));
176 sink.writeUtf8(repeat('a', Segment.SIZE - 3));
208 sink.writeUtf8(repeat('a', Segment.SIZE - 7));
237 sink.writeUtf8(repeat('a', 10));
245 sink.writeUtf8(repeat('a', 10));
255 sink.writeUtf8(repeat('a', 10000));
258 assertEquals(repeat('a', 9999), sink.readUtf8());
277 data.writeUtf8("Hello").writeUtf8(repeat('e', Segment.SIZE));
350 String string = "abcd" + repeat('
[all...]
H A DGzipSinkTest.java21 import static okio.TestUtil.repeat;
43 gzipSink.write(new Buffer().writeUtf8(repeat('a', Segment.SIZE)), Segment.SIZE);
H A DSegmentSharingTest.java26 private static final String us = TestUtil.repeat('u', Segment.SIZE / 2 - 2);
27 private static final String vs = TestUtil.repeat('v', Segment.SIZE / 2 - 1);
28 private static final String ws = TestUtil.repeat('w', Segment.SIZE / 2);
29 private static final String xs = TestUtil.repeat('x', Segment.SIZE / 2 + 1);
30 private static final String ys = TestUtil.repeat('y', Segment.SIZE / 2 + 2);
31 private static final String zs = TestUtil.repeat('z', Segment.SIZE / 2 + 3);
186 buffer.writeUtf8(TestUtil.repeat('_', offsetInSegment));
H A DBufferedSinkTest.java31 import static okio.TestUtil.repeat;
100 sink.writeUtf8(repeat('a', Segment.SIZE - 1));
105 assertEquals(repeat('a', Segment.SIZE - 1), data.readUtf8(Segment.SIZE - 1));
131 sink.writeUtf8(repeat('a', Segment.SIZE - 4));
136 assertEquals(repeat('a', Segment.SIZE - 4), data.readUtf8(Segment.SIZE - 4));
141 sink.writeUtf8(repeat('a', Segment.SIZE - 3));
146 assertEquals(repeat('a', Segment.SIZE - 3), data.readUtf8(Segment.SIZE - 3));
270 out.write(repeat('b', 9998).getBytes(UTF_8));
273 assertEquals("a" + repeat('b', 9998) + "c", data.readUtf8());
H A DInflaterSourceTest.java26 import static okio.TestUtil.repeat;
66 String original = repeat('a', 1024 * 1024);
80 Buffer inflated = new Buffer().writeUtf8(repeat('a', i));
/external/libxml2/
H A DtestThreadsWin32.c88 unsigned int i, repeat; local
94 for (repeat = 0;repeat < TEST_REPEAT_COUNT;repeat++)
/external/mesa3d/docs/
H A Dmesa.css49 background: black url('gears.png') 15px no-repeat;
56 background: url('gears.png') right no-repeat;
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dclone_test.S15 dec %rcx # repeat count times
63 dec %rcx # repeat count times
72 dec %rcx # repeat count times
87 dec %rcx # repeat count times
H A Dmillion.S12 dec %rcx # repeat count times
/external/valgrind/exp-bbv/tests/arm-linux/
H A Dmillion.S17 bne big_loop @ repeat till zero
/external/valgrind/exp-bbv/tests/x86-linux/
H A Dclone_test.S15 dec %ecx # repeat count times
63 dec %ecx # repeat count times
72 dec %ecx # repeat count times
87 dec %ecx # repeat count times
/external/guava/guava-tests/test/com/google/common/base/
H A DStringsTest.java110 assertEquals("", Strings.repeat(input, 0));
111 assertEquals("20", Strings.repeat(input, 1));
112 assertEquals("2020", Strings.repeat(input, 2));
113 assertEquals("202020", Strings.repeat(input, 3));
115 assertEquals("", Strings.repeat("", 4));
118 assertEquals(2 * i, Strings.repeat(input, i).length());
122 Strings.repeat("x", -1);
128 Strings.repeat("12345678", (1 << 30) + 3);
137 Strings.repeat(null, 5);
/external/clang/test/SemaCXX/
H A Dblocks.cpp25 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
36 return repeat(1, ^(int v) { return v * base; }, n);
/external/python/cpython2/Lib/lib2to3/
H A Dpatcomp.py105 repeat = None
107 repeat = nodes[-1]
111 pattern = self.compile_basic(nodes, repeat)
113 if repeat is not None:
114 assert repeat.type == self.syms.Repeater
115 children = repeat.children
139 def compile_basic(self, nodes, repeat=None):
169 assert repeat is None
/external/webrtc/talk/media/devices/
H A Dfilevideocapturer.h98 // Set how many times to repeat reading the file. Repeat forever if the
99 // parameter is kForever; no repeat if the parameter is 0 or
101 void set_repeat(int repeat) { repeat_ = repeat; } argument
151 int repeat_; // How many times to repeat the file.
/external/ltp/testcases/kernel/mem/mtest07/
H A Dmallocstress.c151 /* Input: int repeat - number of times the alloc/free is repeated. */
157 int allocate_free(int repeat, /* number of times to repeat allocate/free */ argument
163 dprt(("pid[%d]: allocate_free: repeat %d, scheme %d\n", getpid(),
164 repeat, scheme));
166 for (loop = 0; loop < repeat; loop++) {
174 repeat));
185 getpid(), loop, repeat, num_alloc, size));
/external/eigen/test/
H A Dprec_inverse_4x4.cpp29 template<typename MatrixType> void inverse_general_4x4(int repeat) argument
35 for(int i = 0; i < repeat; ++i)
49 double error_avg = error_sum / repeat;
/external/nanopb-c/docs/
H A Dlsr.css161 background: transparent url('../images/important.png') 10px 2px no-repeat;
165 background: transparent url('../images/caution.png') 10px 2px no-repeat;
169 background: transparent url('../images/note.png') 10px 2px no-repeat;
173 background: transparent url('../images/tip.png') 10px 2px no-repeat;
177 background: transparent url('../images/tip.png') 10px 2px no-repeat;
181 background: transparent url('../images/important.png') 10px 2px no-repeat;
/external/vixl/examples/aarch32/
H A Dpi.cc100 uint32_t repeat = 10000000; local
101 double output_value = (*pi_function)(repeat);
102 printf("native: pi_approx(%u) = %3.10f\n", repeat, output_value);

Completed in 1197 milliseconds

1234567891011>>