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

1 2 34 5 6 7

  /external/skia/tests/
GrCCPRTest.cpp 662 int repeat = rand.nextRangeU(1, 3); variable
663 for (int k = 0; k < repeat; ++k) {
    [all...]
  /external/skqp/tests/
GrCCPRTest.cpp 661 int repeat = rand.nextRangeU(1, 3); variable
662 for (int k = 0; k < repeat; ++k) {
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 144 static void repeat(struct parse *p, sopno start, int from, int to, size_t reclimit);
524 repeat(p, pos, count, count2, 0);
719 repeat(p, pos, count, count2, 0);
1130 - repeat - generate code for a bounded repetition, recursively if needed
1131 == static void repeat(struct parse *p, sopno start, int from, int to,
1135 repeat( function
1169 repeat(p, start+1, 1, to, reclimit);
1189 repeat(p, copy, 1, to-1, reclimit);
1197 repeat(p, copy, from-1, to-1, reclimit);
1201 repeat(p, copy, from-1, to, reclimit)
    [all...]
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 241 final int repeat = mDataBuffer.getInt(4 * 4); local
  /cts/tests/tests/util/src/android/util/cts/
JsonReaderTest.java 998 private String repeat(char c, int count) { method in class:JsonReaderTest
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 288 int repeat = Integer.parseInt(args[4]); local
293 MonkeyKeyEvent e = new MonkeyKeyEvent(downTime, eventTime, action, code, repeat,
    [all...]
  /external/brotli/c/dec/
state.h 173 uint32_t repeat; member in struct:BrotliDecoderStateStruct
decode.c 508 A) reset the repeat variable
514 uint32_t* symbol, uint32_t* repeat, uint32_t* space,
517 *repeat = 0;
531 A) Check if it is the extension of previous repeat sequence; if the decoded
534 B) Update repeat variable
542 uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len,
553 *repeat = 0;
556 old_repeat = *repeat;
557 if (*repeat > 0) {
558 *repeat -= 2
592 uint32_t repeat = s->repeat; local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Pick.java 113 return new Repeat(0, 1, new int[]{100-percent, percent}, item);
116 static public Pick repeat(int minCount, int maxCount, int itemWeights, Object item) {
117 return new Repeat(minCount, maxCount, itemWeights, item);
125 static public Pick repeat(int minCount, int maxCount, int[] itemWeights, Pick item) { method in class:Pick
126 return new Repeat(minCount, maxCount, itemWeights, item);
272 private static class Repeat extends ItemPick {
276 private Repeat(int minCount, int maxCount, int[] itemWeights, Pick item) {
281 /*private Repeat(int minCount, int maxCount, int itemWeight, Pick item) {
286 private Repeat(int minCount, int maxCount, Object item) {
301 result = indent(depth) + result + "REPEAT(" + weightedInde
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOptimizationTests.cpp 67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles2::Performance
570 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
572 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
584 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
607 + repeat(" value += a*b;\n", numTopLevelRepeats);
778 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
810 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
831 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
846 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOptimizationTests.cpp 67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles3::Performance
581 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
583 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
595 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
618 + repeat(" value += a*b;\n", numTopLevelRepeats);
789 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
821 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
842 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
857 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
    [all...]
  /external/eigen/bench/
analyze-blocking-sizes.cpp 650 bool repeat = false; variable
654 repeat = true;
658 if (!repeat) {
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
symbols.c 95 enum key_repeat repeat; member in struct:__anon30395
400 into->repeat = from->repeat;
884 istreq(field, "repeat")) {
889 "Illegal repeat setting for %s; "
890 "Non-boolean repeat setting ignored\n",
895 keyi->repeat = val;
    [all...]
  /external/llvm/lib/Support/
regcomp.c 94 static void repeat(struct parse *, sopno, int, int);
460 repeat(p, pos, count, count2);
631 repeat(p, pos, count, count2);
980 - repeat - generate code for a bounded repetition, recursively if needed
983 repeat(struct parse *p, function
1009 repeat(p, start+1, 1, to);
1029 repeat(p, copy, 1, to-1);
1037 repeat(p, copy, from-1, to-1);
1041 repeat(p, copy, from-1, to);
    [all...]
  /external/python/cpython3/Modules/
faulthandler.c 66 int repeat; member in struct:__anon37374
584 } while (ok && thread.repeat);
644 static char *kwlist[] = {"timeout", "repeat", "file", "exit", NULL};
647 int repeat = 0; local
657 &timeout_obj, &repeat, &file, &exit))
698 thread.repeat = repeat;
1192 PyDoc_STR("dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False):\n"
1194 "or each timeout seconds if repeat is True. If exit is True, "
    [all...]
  /external/strace/
bpf_attr.h 174 uint32_t repeat; member in struct:BPF_PROG_TEST_RUN_struct
  /external/swiftshader/third_party/LLVM/lib/Support/
regcomp.c 86 static void repeat(struct parse *, sopno, int, int);
424 repeat(p, pos, count, count2);
595 repeat(p, pos, count, count2);
944 - repeat - generate code for a bounded repetition, recursively if needed
947 repeat(struct parse *p, function
973 repeat(p, start+1, 1, to);
993 repeat(p, copy, 1, to-1);
1001 repeat(p, copy, from-1, to-1);
1005 repeat(p, copy, from-1, to);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
regcomp.c 221 static void repeat(struct parse *, sopno, int, int);
587 repeat(p, pos, count, count2);
758 repeat(p, pos, count, count2);
1107 - repeat - generate code for a bounded repetition, recursively if needed
1110 repeat(struct parse *p, function
1136 repeat(p, start+1, 1, to);
1156 repeat(p, copy, 1, to-1);
1164 repeat(p, copy, from-1, to-1);
1168 repeat(p, copy, from-1, to);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regcomp.c 94 static void repeat(struct parse *, sopno, int, int);
460 repeat(p, pos, count, count2);
631 repeat(p, pos, count, count2);
980 - repeat - generate code for a bounded repetition, recursively if needed
983 repeat(struct parse *p, function
1009 repeat(p, start+1, 1, to);
1029 repeat(p, copy, 1, to-1);
1037 repeat(p, copy, from-1, to-1);
1041 repeat(p, copy, from-1, to);
    [all...]
  /external/tensorflow/tensorflow/python/data/ops/
dataset_ops.py 701 def repeat(self, count=None): member in class:DatasetV2
806 d = d.repeat(num_epochs)
824 d = d.repeat(num_epochs)
1622 def repeat(self, count=None): member in class:DatasetV1
    [all...]
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
TimelineApplet.java 155 if (rptCnt > 0) code += "\n .repeat" + (isYoyo ? "Yoyo" : "") + "(" + rptCnt + ", " + rptDelay + ")";
263 else if (rptCnt > 0) timeline.repeat(rptCnt, rpDelay);
374 jLabel6.setText("Repeat delay:");
  /external/dokka/maven/org/jetbrains/dokka/dokka-maven-plugin/0.9.17-g20190326/
dokka-maven-plugin-0.9.17-g20190326.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
itertoolsmodule.c 795 Then repeat the sequence indefinitely.");
1823 Py_ssize_t nargs, npools, repeat=1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
itertoolsmodule.c 776 Then repeat the sequence indefinitely.");
1792 Py_ssize_t nargs, npools, repeat=1; local
    [all...]
  /external/brotli/java/org/brotli/dec/
Decode.java 299 int repeat = 0; local
313 repeat = 0;
326 repeat = 0;
329 int oldRepeat = repeat;
330 if (repeat > 0) {
331 repeat -= 2;
332 repeat <<= extraBits;
335 repeat += BitReader.readFewBits(s, extraBits) + 3;
336 int repeatDelta = repeat - oldRepeat;
    [all...]

Completed in 1114 milliseconds

1 2 34 5 6 7