HomeSort by relevance Sort by last modified time
    Searched defs:repeat (Results 51 - 75 of 172) sorted by null

1 23 4 5 6 7

  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource_test.cc 462 int repeat = 10000; local
463 for (int i = 0; i < repeat; ++i) {
  /external/python/cpython2/Lib/test/
test_timeit.py 141 def repeat(self, stmt, setup, repeat=None, number=None): member in class:TestTimeit
145 if repeat is None:
146 repeat = DEFAULT_REPEAT
148 kwargs['repeat'] = repeat
153 delta_times = t.repeat(**kwargs)
154 self.assertEqual(self.fake_timer.setup_calls, repeat)
155 self.assertEqual(self.fake_timer.count, repeat * number)
156 self.assertEqual(delta_times, repeat * [float(number)]
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
closures.c 363 int repeat; member in struct:__anon36581
385 if (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
412 if (!open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat
464 && open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
  /external/python/cpython2/Modules/
sre.h 68 SRE_CODE* pattern; /* points to REPEAT operator arguments */
70 struct SRE_REPEAT_T *prev; /* points to previous repeat context */
92 /* current repeat context */
93 SRE_REPEAT *repeat; member in struct:__anon36799
  /external/python/cpython3/Lib/test/
test_timeit.py 155 def repeat(self, stmt, setup, repeat=None, number=None): member in class:TestTimeit
159 if repeat is None:
160 repeat = DEFAULT_REPEAT
162 kwargs['repeat'] = repeat
167 delta_times = t.repeat(**kwargs)
168 self.assertEqual(self.fake_timer.setup_calls, repeat)
169 self.assertEqual(self.fake_timer.count, repeat * number)
170 self.assertEqual(delta_times, repeat * [float(number)]
    [all...]
  /external/python/cpython3/Modules/
sre.h 57 SRE_CODE* pattern; /* points to REPEAT operator arguments */
59 struct SRE_REPEAT_T *prev; /* points to previous repeat context */
84 /* current repeat context */
85 SRE_REPEAT *repeat; member in struct:__anon37432
  /external/skia/tests/
OpChainTest.cpp 17 // kNumOpPositions starting positions x kRanges canonical ranges. We repeat each range kNumRepeats
192 bool repeat = false; local
195 for (int i = 0; i < kNumOps - 2 && !repeat; ++i) {
230 #if 0 // Useful to repeat a random configuration that fails the test while debugger attached.
232 repeat = true;
235 (void)repeat;
  /external/skqp/tests/
OpChainTest.cpp 17 // kNumOpPositions starting positions x kRanges canonical ranges. We repeat each range kNumRepeats
192 bool repeat = false; local
195 for (int i = 0; i < kNumOps - 2 && !repeat; ++i) {
231 #if 0 // Useful to repeat a random configuration that fails the test while debugger attached.
233 repeat = true;
236 (void)repeat;
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
BaseTween.java 151 public T repeat(int count, float delay) { method in class:BaseTween
195 * <b>END</b>: at each iteration ending, before the repeat delay<br/>
198 * <b>BACK_START</b>: at each backward iteration beginning, after the repeat delay<br/>
  /external/xz-java/src/org/tukaani/xz/lzma/
LZMADecoder.java 65 lz.repeat(reps[0], len);
  /art/tools/dexfuzz/src/dexfuzz/
Options.java 52 public static int repeat = 1; field in class:Options
120 Log.always(" --repeat=<n> : Fuzz N programs, executing each one.");
142 Log.always(" --report=<file> : Use <file> to report results when using --repeat");
247 } else if (key.equals("repeat")) {
248 repeat = Integer.parseInt(value);
368 if (repeat < 1) {
369 Log.error("--repeat must be at least 1!");
376 if (usingProvidedSeed && repeat > 1) {
377 Log.error("Cannot use --repeat with --seed");
384 if (repeat == 1 && inputFileList.size() > 1)
    [all...]
  /external/ImageMagick/coders/
pdb.c 733 unsigned char *source,size_t literal,size_t repeat)
739 if (repeat > 0)
741 *destination++=(unsigned char) (0x80 | (repeat-1));
782 repeat;
906 repeat=0;
919 buffer[literal+repeat]|=(0xff-scanline[x*packet_size]) >>
924 if (((literal+repeat) > 0) &&
925 (buffer[literal+repeat] == buffer[literal+repeat-1]))
927 if (repeat == 0
774 repeat; local
    [all...]
  /external/dng_sdk/source/
dng_pixel_buffer.cpp 1281 dng_point repeat = srcArea.Size (); local
1311 repeat.v,
1312 repeat.h,
1331 repeat.v,
1332 repeat.h,
1351 repeat.v,
1352 repeat.h,
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic.cc 524 /* Number of additional times to repeat each repeating tile. */
531 /* See if we can improve the fit by adding an extra repeat and squeezing them together a bit. */
555 unsigned int repeat = 1; local
557 repeat += n_copies;
560 repeat, info[k - 1].codepoint, j);
561 for (unsigned int n = 0; n < repeat; n++)
hb-ot-glyf-table.hh 318 unsigned int repeat = 1; local
326 repeat = ((uint8_t) *glyph) + 1;
338 coordBytes += (xBytes + yBytes) * repeat;
339 coordsWithFlags += repeat;
  /external/libffi/src/
closures.c 391 int repeat; member in struct:__anon28224
413 if (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
440 if (!open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat
492 && open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
  /external/libprotobuf-mutator/src/
mutator.cc 453 bool repeat; local
455 repeat = false;
472 repeat = true;
481 } while (repeat);
  /external/libxml2/
testSAX.c 62 static int repeat = 0; variable
1091 if (repeat) {
1158 } else if ((!strcmp(argv[i], "-repeat")) ||
1159 (!strcmp(argv[i], "--repeat"))) {
1160 repeat++;
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 85 private boolean repeat; field in class:BranchTargetFinder
359 repeat = false;
369 while (repeat);
645 repeat = true;
721 repeat = true;
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
layers.py 65 'max_pool3d', 'one_hot_encoding', 'relu', 'relu6', 'repeat',
2573 def repeat(inputs, repetitions, layer, *args, **kwargs): function
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
segment_reduction_ops_test.py 919 repeat = 10 variable in class:SegmentReductionOpBenchmark
    [all...]
  /external/u-boot/cmd/
nand.c 42 int repeat)
49 if (repeat)
388 int repeat = flag & CMD_FLAG_REPEAT; local
400 if (repeat && strcmp(cmd, "dump"))
541 ret = nand_dump(mtd, off, !strcmp(&cmd[4], ".oob"), repeat);
  /external/v8/src/runtime/
runtime-strings.cc 429 int repeat, int length) {
430 if (repeat == 0) return;
438 while (done < repeat) {
439 int block = Min(done, repeat - done);
463 int repeat = position - previous_separator_position; local
464 WriteRepeatToFlat<Char>(separator, buffer, cursor, repeat,
466 cursor += repeat * separator_length;
477 int repeat = last_array_index - previous_separator_position; local
478 WriteRepeatToFlat<Char>(separator, buffer, cursor, repeat, separator_length);
479 cursor += repeat * separator_length
    [all...]
  /cts/tests/tests/binder_ndk/src/android/binder/cts/
JavaClientTest.java 180 ParcelFileDescriptor repeat(ParcelFileDescriptor fd) throws RemoteException; method in interface:JavaClientTest.IRepeatFd
188 ParcelFileDescriptor repeatFd = transformer.repeat(socketIn);
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
AnimatedGifEncoder.java 52 private int repeat = -1; // no repeat field in class:AnimatedGifEncoder
121 repeat = iter;
166 if (repeat >= 0) {
483 * Writes Netscape application extension to define repeat count.
492 writeShort(repeat); // loop count (extra iterations, 0=repeat forever)

Completed in 2447 milliseconds

1 23 4 5 6 7