Home
last modified time | relevance | path

Searched full:inserted (Results 1 – 25 of 1671) sorted by relevance

12345678910>>...67

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dlwpintrin.h60 /// A 32-bit value is zero-extended and inserted into the 64-bit Data2 field.
62 /// A 32-bit value is inserted into the 32-bit Data1 field.
64 /// A 32-bit immediate value is inserted into the 32-bit Flags field.
82 /// A 32-bit value is zero-extended and inserted into the 64-bit Data2 field.
84 /// A 32-bit value is inserted into the 32-bit Data1 field.
86 /// A 32-bit immediate value is inserted into the 32-bit Flags field.
101 /// A 64-bit value is inserted into the 64-bit Data2 field.
103 /// A 32-bit value is inserted into the 32-bit Data1 field.
105 /// A 32-bit immediate value is inserted into the 32-bit Flags field.
123 /// A 64-bit value is and inserted into the 64-bit Data2 field.
[all …]
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dregress_minheap.c58 struct event *inserted[1024]; in test_heap_randomized() local
65 inserted[i] = malloc(sizeof(struct event)); in test_heap_randomized()
66 set_random_timeout(inserted[i]); in test_heap_randomized()
67 min_heap_push_(&heap, inserted[i]); in test_heap_randomized()
74 min_heap_erase_(&heap, inserted[i]); in test_heap_randomized()
91 free(inserted[i]); in test_heap_randomized()
H A Dcheck-dumpevents.py13 expect_inserted_pos = text.index("Inserted:\n")
15 got_inserted_pos = text.index("Inserted events:\n")
48 sys.stderr.write("Inserted event lists were not as expected!")
/freebsd/contrib/libevent/test/
H A Dregress_minheap.c58 struct event *inserted[1024]; in test_heap_randomized() local
65 inserted[i] = malloc(sizeof(struct event)); in test_heap_randomized()
66 set_random_timeout(inserted[i]); in test_heap_randomized()
67 min_heap_push_(&heap, inserted[i]); in test_heap_randomized()
74 min_heap_erase_(&heap, inserted[i]); in test_heap_randomized()
91 free(inserted[i]); in test_heap_randomized()
H A Dcheck-dumpevents.py13 expect_inserted_pos = text.index("Inserted:\n")
15 got_inserted_pos = text.index("Inserted events:\n")
48 sys.stderr.write("Inserted event lists were not as expected!")
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DRewriteBuffer.h29 /// RewriteBuffer. For example, if text is inserted into the buffer, any
69 /// text is inserted after the specified location.
75 /// SourceBuffer. The text is inserted before the specified location. This is
83 /// The text is inserted after the specified location.
98 /// position where text is inserted, the location returned will be after any
99 /// inserted text at the position.
H A DAddressRanges.h179 // Inserted range does not overlap with any range. in insert()
186 // Inserted range partially overlaps with current range. in insert()
187 // Store not overlapped part of inserted range. in insert()
195 // Inserted range fully overlaps with current range. in insert()
199 // Inserted range partially overlaps with current range. in insert()
200 // Remove overlapped part from the inserted range. in insert()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassManagerImpl.h134 auto [RI, Inserted] = AnalysisResults.try_emplace(std::make_pair(ID, &IR)); in getResultImpl()
138 if (Inserted) { in getResultImpl()
152 // P.run may have inserted elements into AnalysisResults and invalidated in getResultImpl()
155 assert(RI != AnalysisResults.end() && "we just inserted it!"); in getResultImpl()
193 bool Inserted = in invalidate() local
195 (void)Inserted; in invalidate()
196 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLCSSA.cpp102 auto [It, Inserted] = LoopExitBlocks.try_emplace(L); in formLCSSAForInstructionsImpl()
103 if (Inserted) in formLCSSAForInstructionsImpl()
161 // If we already inserted something for this BB, don't reprocess it. in formLCSSAForInstructionsImpl()
198 // header. This could break LCSSA form for L2 because these inserted PHIs in formLCSSAForInstructionsImpl()
215 // inserted. in formLCSSAForInstructionsImpl()
226 // If this use is in an exit block, rewrite to use the newly inserted PHI. in formLCSSAForInstructionsImpl()
228 // in the same block. It assumes the PHI we inserted is at the end of the in formLCSSAForInstructionsImpl()
256 // traversed while rewriting the uses. If we inserted just a single PHI, in formLCSSAForInstructionsImpl()
271 // traversed while rewriting the uses. If we inserted just a single PHI, in formLCSSAForInstructionsImpl()
279 // SSAUpdater might have inserted phi-nodes inside other loops. We'll need in formLCSSAForInstructionsImpl()
[all …]
H A DCodeMoverUtils.cpp76 /// equals to \p True. Return true if inserted successfully.
136 bool Inserted = false; in collectControlConditions() local
145 Inserted = Conditions.addControlCondition( in collectControlConditions()
151 Inserted = Conditions.addControlCondition( in collectControlConditions()
156 if (Inserted) in collectControlConditions()
169 bool Inserted = false; in addControlCondition() local
174 Inserted = true; in addControlCondition()
177 LLVM_DEBUG(dbgs() << (Inserted ? "Inserted " : "Not inserted ") << C << "\n"); in addControlCondition()
178 return Inserted; in addControlCondition()
/freebsd/contrib/llvm-project/llvm/tools/opt/
H A DNewPMDriver.cpp95 /// inserted into default pipelines at the respective extension points
98 cl::desc("A textual description of the function pass pipeline inserted at "
104 "A textual description of the loop pass pipeline inserted at "
109 cl::desc("A textual description of the loop pass pipeline inserted at "
114 cl::desc("A textual description of the function pass pipeline inserted at "
119 cl::desc("A textual description of the cgscc pass pipeline inserted at "
124 cl::desc("A textual description of the function pass pipeline inserted at "
129 cl::desc("A textual description of the function pass pipeline inserted at "
134 cl::desc("A textual description of the module pass pipeline inserted at "
139 cl::desc("A textual description of the module pass pipeline inserted at "
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h44 u32 Put(args_type args, bool *inserted = nullptr);
116 bool *inserted) { in Put() argument
117 if (inserted) in Put()
118 *inserted = false; in Put()
146 if (inserted) *inserted = true; in Put()
168 // the hash table, but the only issue is a few items inserted by parent
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dqcom,ebi2-peripheral-props.yaml19 They are inserted when reading one CS and switching to another
28 The extra cycles inserted after every write minimum 1. The
38 The initial latency for write cycles inserted for the first
46 The initial latency for read cycles inserted for the first
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblySortRegion.cpp31 auto [It, Inserted] = LoopMap.try_emplace(ML); in getRegionFor()
32 if (Inserted) in getRegionFor()
37 auto [It, Inserted] = ExceptionMap.try_emplace(WE); in getRegionFor()
38 if (Inserted) in getRegionFor()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DParentMap.cpp38 auto [Iter, Inserted] = M.try_emplace(SF, S); in BuildParentMap()
39 if (!Inserted) { in BuildParentMap()
84 auto [Iter, Inserted] = M.try_emplace(SrcExpr, S); in BuildParentMap()
86 if (!Inserted && OVMode == OV_Transparent) { in BuildParentMap()
88 Inserted = true; in BuildParentMap()
90 if (Inserted) in BuildParentMap()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DArena.cpp28 auto [It, Inserted] = Cache.try_emplace(std::forward<Key>(K)); in cached()
29 if (Inserted) in cached()
105 auto [It, Inserted] = IntegerLiterals.try_emplace(Value, nullptr); in makeIntLiteral()
107 if (Inserted) in makeIntLiteral()
113 auto [It, Inserted] = FormulaValues.try_emplace(&F); in makeBoolValue()
114 if (Inserted) in makeBoolValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineLoopUtils.h26 /// The loop block is copied and inserted into the CFG such that two copies of
27 /// the loop follow on from each other. The copy is inserted either before or
30 /// Phis are updated and an unconditional branch inserted at the end of the
H A DIndirectThunks.h40 /// each of the thunk functions to be inserted
49 /// to track which thunks were already inserted.
51 /// In any case, the thunk function has to be inserted on behalf of some other
65 // inserted so far. InsertedThunksTy is usually a bool, but can be other types
101 /// If multiple thunks are created, the content that must be inserted in the
174 // have already been inserted. in run()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DMacroExpansionContext.cpp62 bool Inserted; in MacroExpands() local
63 std::tie(It, Inserted) = in MacroExpands()
65 if (Inserted) { in MacroExpands()
226 bool Inserted; in onTokenLexed() local
227 std::tie(It, Inserted) = in onTokenLexed()
229 if (!Inserted) in onTokenLexed()
/freebsd/lib/libpmc/pmu-events/arch/x86/tremontx/
H A Duncore-other.json391 …: All requests from iA Cores : Counts the number of entries successfuly inserted into the TOR that…
403 …CLFlushes issued by iA Cores : Counts the number of entries successfuly inserted into the TOR that…
415 …ts : CRDs issued by iA Cores : Counts the number of entries successfuly inserted into the TOR that…
427 … DRd_Opts issued by iA Cores : Counts the number of entries successfuly inserted into the TOR that…
439 …Opt_Prefs issued by iA Cores : Counts the number of entries successfuly inserted into the TOR that…
451 …om iA Cores that Hit the LLC : Counts the number of entries successfuly inserted into the TOR that…
463 …by iA Cores that Hit the LLC : Counts the number of entries successfuly inserted into the TOR that…
475 …by iA Cores that hit the LLC : Counts the number of entries successfuly inserted into the TOR that…
487 …by iA Cores that hit the LLC : Counts the number of entries successfuly inserted into the TOR that…
499 …by iA Cores that hit the LLC : Counts the number of entries successfuly inserted into the TOR that…
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/emeraldrapids/
H A Duncore-cache.json1341 "PublicDescription": ": count # of FAST TOR Request inserted to ha_tor_req_fifo",
1346 "BriefDescription": "Number of SLOW TOR Request inserted to ha_pmm_tor_req_fifo",
3013 …iption": "TOR Inserts : All : Counts the number of entries successfully inserted into the TOR that…
3022 …: "TOR Inserts : DDR Access : Counts the number of entries successfully inserted into the TOR that…
3030 … Inserts : SF/LLC Evictions : Counts the number of entries successfully inserted into the TOR that…
3039 …": "TOR Inserts : Just Hits : Counts the number of entries successfully inserted into the TOR that…
3047 …"PublicDescription": "Counts the number of entries successfully inserted into the TOR that match q…
3056 …"PublicDescription": "Counts the number of entries successfully inserted into the TOR that match q…
3065 …"PublicDescription": "Counts the number of entries successfully inserted into the TOR that match q…
3101 …iA Cores due to a page walk : Counts the number of entries successfully inserted into the TOR that…
[all …]
/freebsd/share/man/man3/
H A Dtree.3279 is the type of the elements to be inserted into the tree.
414 is the type of the elements to be inserted into the tree.
634 is defined by the RB user, then when an element is inserted or removed
649 is defined, then when an element is inserted or removed from the tree,
668 inserted again.
672 Values are inserted into it and the contents of the tree are printed
787 if the element was inserted in the tree successfully, otherwise they
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h73 /// Indicates whether LCSSA phis should be created for inserted values.
80 // InsertedValues only flags inserted instructions so needs no RAUW.
106 /// be inserted with increments at IVIncInsertPos.
224 /// Return a vector containing all instructions inserted during expansion.
315 /// program. The code is inserted into the specified block.
323 /// program. The code is inserted into the SCEVExpander's current
328 /// Generates a code sequence that evaluates this predicate. The inserted
412 /// Return true if the specified instruction was inserted by the code
432 /// MustDominate. Skips instructions inserted by the expander.
554 /// Helper to remove instructions inserted during SCEV expansion, unless they
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DCFGMST.h307 bool Inserted; in addEdge() local
308 std::tie(Iter, Inserted) = BBInfos.try_emplace(Src); in addEdge()
309 if (Inserted) { in addEdge()
310 // Newly inserted, update the real info. in addEdge()
314 std::tie(Iter, Inserted) = BBInfos.try_emplace(Dest); in addEdge()
315 if (Inserted) in addEdge()
316 // Newly inserted, update the real info. in addEdge()
/freebsd/contrib/tzcode/
H A Dtime2posix.337 by the net number of leap seconds inserted since the Epoch.
74 would have taken place on a POSIX system as leap seconds were inserted
99 the POSIX representation over the leap second inserted at the end of June,

12345678910>>...67