Home
last modified time | relevance | path

Searched refs:term (Results 1 – 25 of 114) sorted by relevance

12345

/llvm-project-15.0.7/llvm/utils/lit/lit/
H A DProgressBar.py225 self.term = term
226 if not (self.term.CLEAR_EOL and self.term.UP and self.term.BOL):
231 if self.term.COLS:
233 if not self.term.XN:
234 self.BOL = self.term.UP + self.term.BOL
269 bar = self.term.render(bar)
271 self.BOL + self.term.UP + self.term.CLEAR_EOL +
275 if not self.term.XN:
281 self.term.UP + self.term.CLEAR_EOL +
282 self.term.UP + self.term.CLEAR_EOL)
[all …]
/llvm-project-15.0.7/utils/bazel/deps_impl/
H A Dterminfo_test.c7 extern int setupterm(char *term, int filedes, int *errret);
8 extern struct term *set_curterm(struct term *termp);
9 extern int del_curterm(struct term *termp);
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_polynomial.c3902 if (!term) in isl_term_alloc()
3920 if (!term) in isl_term_copy()
3952 if (!term) in isl_term_cow()
4002 return term ? term->dim : NULL; in isl_term_peek_space()
4029 return term ? term->dim->ctx : NULL; in isl_term_get_ctx()
4047 term->n, term->d); in isl_term_get_coefficient_val()
4123 term = isl_term_cow(term); in isl_poly_foreach_term()
4138 term = isl_term_cow(term); in isl_poly_foreach_term()
4146 term = isl_term_cow(term); in isl_poly_foreach_term()
4185 term = isl_term_free(term); in isl_qpolynomial_from_term()
[all …]
H A Disl_range.c194 static isl_stat collect_fixed_sign_terms(__isl_take isl_term *term, void *user) in collect_fixed_sign_terms() argument
204 nparam = isl_term_dim(term, isl_dim_param); in collect_fixed_sign_terms()
205 nvar = isl_term_dim(term, isl_dim_set); in collect_fixed_sign_terms()
210 isl_term_get_num(term, &n); in collect_fixed_sign_terms()
217 exp = isl_term_get_exp(term, isl_dim_param, i); in collect_fixed_sign_terms()
226 exp = isl_term_get_exp(term, isl_dim_set, i); in collect_fixed_sign_terms()
234 isl_qpolynomial *t = isl_qpolynomial_from_term(term); in collect_fixed_sign_terms()
238 isl_term_free(term); in collect_fixed_sign_terms()
H A Disl_ast_build_expr.c425 isl_ast_expr *term; in isl_ast_expr_add_term() local
431 term = var(data, ls, type, pos); in isl_ast_expr_add_term()
436 term = scale(term, v); in isl_ast_expr_add_term()
437 return ast_expr_sub(expr, term); in isl_ast_expr_add_term()
439 term = scale(term, v); in isl_ast_expr_add_term()
440 return ast_expr_add(expr, term); in isl_ast_expr_add_term()
573 __isl_take isl_aff *term, __isl_take isl_aff *arg) in extract_term_and_mod() argument
583 term = oppose_div_arg(term, isl_val_copy(data->d)); in extract_term_and_mod()
601 term = isl_aff_scale_val(term, isl_val_copy(data->v)); in extract_term_and_mod()
604 data->add = term; in extract_term_and_mod()
[all …]
/llvm-project-15.0.7/bolt/test/X86/
H A Dtail-duplication-complex.s21 # int fib(int term) {
22 # if (term <= 1)
23 # return term;
24 # return fib(term-1) + fib(term-2);
/llvm-project-15.0.7/mlir/lib/IR/
H A DBlock.cpp324 Operation *term = &block->back(); in SuccessorRange() local
325 if ((count = term->getNumSuccessors())) in SuccessorRange()
326 base = term->getBlockOperands().data(); in SuccessorRange()
329 SuccessorRange::SuccessorRange(Operation *term) : SuccessorRange() { in SuccessorRange() argument
330 if ((count = term->getNumSuccessors())) in SuccessorRange()
331 base = term->getBlockOperands().data(); in SuccessorRange()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DMainLoopTest.cpp154 PseudoTerminal term; in TEST_F() local
155 ASSERT_THAT_ERROR(term.OpenFirstAvailablePrimary(O_RDWR), llvm::Succeeded()); in TEST_F()
156 ASSERT_THAT_ERROR(term.OpenSecondary(O_RDWR | O_NOCTTY), llvm::Succeeded()); in TEST_F()
158 term.ReleasePrimaryFileDescriptor(), true); in TEST_F()
165 term.CloseSecondaryFileDescriptor(); in TEST_F()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dcolorprint.cc174 const char* const term = getenv("TERM"); in IsColorTerminal()
178 if (term && 0 == strcmp(term, candidate)) { in IsColorTerminal()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DTerminal.cpp402 TerminalState::TerminalState(Terminal term, bool save_process_group) in TerminalState() argument
403 : m_tty(term) { in TerminalState()
404 Save(term, save_process_group); in TerminalState()
416 bool TerminalState::Save(Terminal term, bool save_process_group) { in Save() argument
418 m_tty = term; in Save()
H A DFile.cpp832 Terminal term{fd}; in Create() local
833 if (llvm::Error error = term.SetRaw()) in Create()
836 if (llvm::Error error = term.SetBaudRate(serial_options.BaudRate.value())) in Create()
840 if (llvm::Error error = term.SetParity(serial_options.Parity.value())) in Create()
845 term.SetParityCheck(serial_options.ParityCheck.value())) in Create()
849 if (llvm::Error error = term.SetStopBits(serial_options.StopBits.value())) in Create()
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dcombine-movc-sub.ll14 %struct.subst = type { %struct.subst*, i32, %struct.term* }
15 %struct.term = type { i32, %union.anon, %struct.LIST_HELP*, i32, i32 }
18 %struct.SHARED_INDEX_NODE = type { %struct.st*, [3001 x %struct.term*], [4000 x %struct.term*], i32…
21 %struct.LITERAL_HELP = type { i32, i32, i32, %struct.CLAUSE_HELP*, %struct.term* }
/llvm-project-15.0.7/llvm/test/Transforms/LoopUnroll/
H A Dpeel-multiple-unreachable-exits.ll249 ; CHECK: unreachable.term:
281 br label %unreachable.term
285 br label %unreachable.term
287 unreachable.term:
321 ; CHECK: unreachable.term:
354 br label %unreachable.term
358 br label %unreachable.term
360 unreachable.term:
425 br label %unreachable.term
429 br label %unreachable.term
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DTerminal.h100 TerminalState(Terminal term = -1, bool save_process_group = false);
122 bool Save(Terminal term, bool save_process_group);
/llvm-project-15.0.7/llvm/test/Transforms/LoopSimplifyCFG/
H A Dmssa_update.ll3 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -passes='require<domtree>,loop(loop-simpli…
4 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -loop-simplifycfg -verify-memoryssa -verif…
H A Dphi_with_duplicating_inputs.ll5 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -passes='require<domtree>,loop(loop-simpli…
6 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -loop-simplifycfg -verify-memoryssa -debug…
H A Dirreducible_cfg.ll3 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -passes='require<domtree>,loop(loop-simpli…
4 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -loop-simplifycfg -verify-memoryssa -debug…
H A Dhandle_dead_exits.ll1 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -loop-simplifycfg %s | FileCheck %s
2 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -passes='require<domtree>,loop(loop-simpli…
H A Dlive_block_marking.ll3 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -passes='require<domtree>,loop(indvars,loo…
4 ; RUN: opt -S -enable-loop-simplifycfg-term-folding=true -indvars -loop-simplifycfg -verify-memorys…
/llvm-project-15.0.7/clang/docs/
H A DBlockLanguageSpec.rst2 .. role:: block-term
31 Like function types, the :block-term:`Block type` is a pair consisting
53 A :block-term:`variable with Block type` is declared using function
77 A :block-term:`Block literal expression` produces a reference to a
188 Blocks are :block-term:`invoked` using function call syntax with a
210 The compiler and runtime provide :block-term:`copy` and
211 :block-term:`release` operations for Block references that create and,
226 qualifier, :block-term:`__block`, for local variables. [testme: a
280 The :block-term:`Block_copy` operator retains all objects held in
/llvm-project-15.0.7/mlir/lib/Analysis/AliasAnalysis/
H A DLocalAliasAnalysis.cpp93 Operation *term = block.getTerminator(); in collectUnderlyingAddressValues() local
97 getRegionBranchSuccessorOperands(term, regionIndex); in collectUnderlyingAddressValues()
101 } else if (term->getNumSuccessors()) { in collectUnderlyingAddressValues()
/llvm-project-15.0.7/mlir/lib/Dialect/PDL/IR/
H A DPDL.cpp312 Operation *term = body.front().getTerminator(); in verifyRegions() local
313 auto rewriteOp = dyn_cast<RewriteOp>(term); in verifyRegions()
316 .attachNote(term->getLoc()) in verifyRegions()
/llvm-project-15.0.7/polly/lib/External/isl/include/isl/
H A Dpolynomial.h107 isl_ctx *isl_term_get_ctx(__isl_keep isl_term *term);
109 __isl_give isl_term *isl_term_copy(__isl_keep isl_term *term);
110 __isl_null isl_term *isl_term_free(__isl_take isl_term *term);
112 isl_size isl_term_dim(__isl_keep isl_term *term, enum isl_dim_type type);
113 __isl_give isl_val *isl_term_get_coefficient_val(__isl_keep isl_term *term);
114 isl_size isl_term_get_exp(__isl_keep isl_term *term,
116 __isl_give isl_aff *isl_term_get_div(__isl_keep isl_term *term, unsigned pos);
119 isl_stat (*fn)(__isl_take isl_term *term, void *user), void *user);
131 __isl_give isl_qpolynomial *isl_qpolynomial_from_term(__isl_take isl_term *term);
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProcess.inc323 extern "C" int setupterm(char *term, int filedes, int *errret);
324 extern "C" struct term *set_curterm(struct term *termp);
325 extern "C" int del_curterm(struct term *termp);
352 struct term *previous_term = set_curterm(nullptr);
377 struct term *termp = set_curterm(previous_term);
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A DANSI.py182 class term (screen.screen): class
193 class ANSI (term):
200 term.__init__(self,r,c,*args,**kwargs)

12345