| /llvm-project-15.0.7/flang/runtime/ |
| H A D | format-implementation.h | 181 if (repeat > 0) { in CueUpNextDataEdit() 182 return repeat; in CueUpNextDataEdit() 231 } else if (repeat) { in CueUpNextDataEdit() 232 if (*repeat <= 0) { in CueUpNextDataEdit() 306 if (!repeat || *repeat < 1 || offset_ + *repeat > formatLength_) { in CueUpNextDataEdit() 312 offset_ += *repeat; in CueUpNextDataEdit() 337 return repeat && *repeat > 0 ? *repeat : 1; in CueUpNextDataEdit() 344 repeat ? *repeat : 1); in CueUpNextDataEdit() 347 context.AdvanceRecord(repeat && *repeat > 0 ? *repeat : 1); in CueUpNextDataEdit() 453 edit.repeat = std::min(repeat, maxRepeat); // 0 if maxRepeat==0 in GetNextDataEdit() [all …]
|
| H A D | format.h | 65 int repeat{1};
|
| H A D | io-stmt.cpp | 768 edit.repeat = maxRepeat; in GetNextDataEdit() 780 edit.repeat = 1; // may be overridden below in GetNextDataEdit() 795 edit.repeat = std::min<int>(remaining_, maxRepeat); in GetNextDataEdit() 802 remaining_ -= edit.repeat; in GetNextDataEdit() 867 edit.repeat = std::min<int>(r, maxRepeat); in GetNextDataEdit() 868 remaining_ = r - edit.repeat; in GetNextDataEdit()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | ppc-vaarg-agg.ll | 9 br i1 undef, label %repeat, label %maxlen_reached 11 repeat: ; preds = %entry 20 sw.bb72: ; preds = %repeat 23 sw.bb309: ; preds = %repeat 26 sw.bb313: ; preds = %repeat 29 sw.bb321: ; preds = %repeat 32 sw.bb323: ; preds = %repeat 36 sw.bb326: ; preds = %repeat
|
| /llvm-project-15.0.7/flang/unittests/Runtime/ |
| H A D | Format.cpp | 76 if (edit.repeat != 1) { in Report() 77 str = std::to_string(edit.repeat) + '*' + str; in Report() 114 for (const auto &[n, format, expect, repeat] : params) { in TEST() 120 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)); in TEST() 147 static constexpr int repeat{1}; in TEST() local 154 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST() 160 static constexpr int repeat{1}; in TEST() local 167 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST() 173 static constexpr int repeat{1}; in TEST() local 180 context.Report(/*edit=*/control.GetNextDataEdit(context, repeat)), in TEST()
|
| /llvm-project-15.0.7/llvm/test/Transforms/CodeExtractor/ |
| H A D | LoopExtractor.ll | 26 %repeat.0 = icmp sgt i32 %index.0, 1 27 br i1 %repeat.0, label %loop.0, label %loop.1 33 %repeat.1 = icmp sgt i32 %index.1, 1 34 br i1 %repeat.1, label %loop.1, label %exit 49 ; CHECK-NEXT: %repeat.1 = icmp sgt i32 %index.1, 1 50 ; CHECK-NEXT: br i1 %repeat.1, label %loop.1.loop.1_crit_edge, label %exit.exitStub 63 ; CHECK-NEXT: %repeat.0 = icmp sgt i32 %index.0, 1 64 ; CHECK-NEXT: br i1 %repeat.0, label %loop.0.loop.0_crit_edge, label %loop.0.loop.1_crit_edge.ex…
|
| H A D | LoopExtractor_min_wrapper.ll | 12 ; CHECK-NEXT: %repeat = icmp sgt i32 %index, 1 13 ; CHECK-NEXT: br i1 %repeat, label %loop.loop_crit_edge, label %exit 26 %repeat = icmp sgt i32 %index, 1 27 br i1 %repeat, label %loop, label %exit
|
| /llvm-project-15.0.7/clang/test/C/drs/ |
| H A D | dr2xx.c | 261 #define repeat(x) x && x in dr258() macro 262 #if repeat(defined fred) /* expected-warning 2 {{macro expansion producing 'defined' has undefined … in dr258() 270 #undef repeat in dr258()
|
| /llvm-project-15.0.7/mlir/utils/tree-sitter-mlir/ |
| H A D | grammar.js | 35 optional(seq('.', repeat(/[0-9]/), 40 repeat(token.immediate(prec(1, /[^\\"\n\f\v\r]+/))),
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | InterpreterProperties.td | 35 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">, 38 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. …
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | blocks.cpp | 25 int repeat(int value, int (^block)(int), unsigned n) { 36 return repeat(1, ^(int v) { return v * base; }, n); in calculate()
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | shuffle_fuzz.py | 108 for _ in itertools.repeat(None, width)] 109 for _ in itertools.repeat(None, args.max_shuffle_height - i)] 180 s += ''.join(['\\00' for _ in itertools.repeat(None, 128 - len(s) + 2)])
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | ICF.cpp | 64 std::atomic<bool> repeat = {false}; member in lld::coff::ICF 125 repeat = true; in segregate() 300 repeat = false; in run() 303 } while (repeat); in run()
|
| /llvm-project-15.0.7/llvm/test/MC/AsmParser/ |
| H A D | directive_fill.s | 50 # OBJ-ERRS: '.fill' directive with negative repeat count has no effect 70 # OBJ-ERRS: '.fill' directive with negative repeat count has no effect
|
| H A D | directive_dcb.s | 49 # ERR: :[[#@LINE+1]]:6: warning: '.dcb' directive with negative repeat count has no effect
|
| H A D | directive_ds.s | 52 # CHECK-ERROR: warning: '.ds' directive with negative repeat count has no effect
|
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | ICF.cpp | 126 std::atomic<bool> repeat; member in __anon659a06d30111::ICF 229 repeat = true; in segregate() 527 repeat = false; in run() 531 } while (repeat); in run()
|
| /llvm-project-15.0.7/polly/www/ |
| H A D | content.css | 59 background-repeat:no-repeat;
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | io-parsers.cpp | 541 constexpr DigitStringIgnoreSpaces repeat; variable 547 maybe(repeat), Parser<format::IntrinsicTypeDataEditDesc>{}) || 549 maybe(repeat), Parser<format::DerivedTypeDataEditDesc>{}) || 552 construct<format::FormatItem>(maybe(repeat), parenthesized(formatItems))) 566 constexpr auto width{repeat}; 568 constexpr auto digits{repeat};
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | regcomp.c | 222 static void repeat(struct parse *, sopno, int, int); 588 repeat(p, pos, count, count2); in p_ere_exp() 759 repeat(p, pos, count, count2); in p_simp_re() 1113 repeat(struct parse *p, in repeat() function 1139 repeat(p, start+1, 1, to); in repeat() 1159 repeat(p, copy, 1, to-1); in repeat() 1167 repeat(p, copy, from-1, to-1); in repeat() 1171 repeat(p, copy, from-1, to); in repeat()
|
| /llvm-project-15.0.7/llvm/test/Transforms/Coroutines/ |
| H A D | coro-elide-stat.ll | 5 ; RUN: -passes='cgscc(repeat<2>(inline,function(coro-elide,dce)))' -stats 2>&1 \ 8 ; RUN: -passes='cgscc(repeat<2>(inline,function(coro-elide,dce)))' \
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | mempcpy.ll | 8 ; variable G before the mempcpy call. This instance of DST+N causes the repeat
|
| /llvm-project-15.0.7/clang/utils/ |
| H A D | FuzzTest | 328 itertools.repeat(tg.num_tests, opts.max_tests)) 330 it = itertools.imap(random.randrange, itertools.repeat(tg.num_tests))
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest-internal-inl.h | 173 repeat_ = GTEST_FLAG(repeat); in GTestFlagSaver() 195 GTEST_FLAG(repeat) = repeat_; in ~GTestFlagSaver() 969 bool escaped, char ch, char repeat, const char* regex, const char* str);
|
| /llvm-project-15.0.7/lld/docs/llvm-theme/static/ |
| H A D | llvm.css | 43 background-repeat: repeat-x;
|