Home
last modified time | relevance | path

Searched refs:insert (Results 3326 - 3350 of 4982) sorted by relevance

1...<<131132133134135136137138139140>>...200

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp275 if (InsertAfter.insert(DefMI).second) in InstrDependenciesAllowIfConv()
279 LLVM_DEBUG(dbgs() << "Can't insert instructions below terminator.\n"); in InstrDependenciesAllowIfConv()
374 LLVM_DEBUG(dbgs() << "Can't insert code after " << *I); in findInsertionPoint()
399 LiveRegUnits.insert(*Units); in findInsertionPoint()
401 // We can't insert before a terminator. in findInsertionPoint()
420 LLVM_DEBUG(dbgs() << "Can insert before " << *I); in findInsertionPoint()
578 /// rewritePHIOperands - When there are additional Tail predecessors, insert
H A DStackColoring.cpp930 MergedAllocas.insert(From); in remapInstructions()
931 MergedAllocas.insert(To); in remapInstructions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp893 if (!once.insert(N).second) // If we've been here before, return now.
908 once.insert(Op.getNode());
H A DStatepointLowering.cpp753 Ops.insert(Ops.end(), CallNode->op_begin() + 2, RegMaskIt); in LowerAsSTATEPOINT()
765 Ops.insert(Ops.end(), LoweredMetaArgs.begin(), LoweredMetaArgs.end()); in LowerAsSTATEPOINT()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DDataLayout.cpp506 Alignments.insert(I, LayoutAlignElem::get(align_type, abi_align,
528 Pointers.insert(I, PointerAlignElem::get(AddrSpace, ABIAlign, PrefAlign,
840 // so we don't insert padding into a section we don't control.
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcSampleVariablesTests.cpp780 fixedSampleLocations.insert(pixel); in iterate()
798 uniquePixels.insert(pixels.getPixel(x * m_samples + sample, y)); in iterate()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cES31CompatibilitySampleVariablesTests.cpp781 fixedSampleLocations.insert(pixel); in iterate()
799 uniquePixels.insert(pixels.getPixel(x * m_samples + sample, y)); in iterate()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DMultiDrawTest.cpp259 mVertices.insert(mVertices.end(), v.begin(), v.end()); in SetupBuffers()
264 mNonIndexedVertices.insert(mNonIndexedVertices.end(), vs[i].begin(), in SetupBuffers()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_parsed_ir.cpp343 meta_needing_name_fixup.insert(id); in set_name()
352 meta_needing_name_fixup.insert(id); in set_member_name()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dir_context.h1086 id_to_name_->insert({d->GetSingleWordInOperand(0), d.get()}); in AddDebug2Inst()
1145 id_to_name_->insert({debug_inst.GetSingleWordInOperand(0), &debug_inst}); in BuildIdToNameMap()
H A Dscalar_replacement_pass.cpp945 result->insert(t.begin(), t.end()); in GetUsedComponents()
966 result->insert(index_const->GetSignExtendedValue()); in GetUsedComponents()
H A Dupgrade_memory_model.cpp329 if (!visited->insert(inst->result_id()).second) { in TraceInstruction()
460 if (!visited.insert(def).second) continue; in CheckAllTypes()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dir_context.h1086 id_to_name_->insert({d->GetSingleWordInOperand(0), d.get()}); in AddDebug2Inst()
1145 id_to_name_->insert({debug_inst.GetSingleWordInOperand(0), &debug_inst}); in BuildIdToNameMap()
H A Dscalar_replacement_pass.cpp945 result->insert(t.begin(), t.end()); in GetUsedComponents()
966 result->insert(index_const->GetSignExtendedValue()); in GetUsedComponents()
H A Dupgrade_memory_model.cpp329 if (!visited->insert(inst->result_id()).second) { in TraceInstruction()
460 if (!visited.insert(def).second) continue; in CheckAllTypes()
/third_party/skia/src/ports/
H A DSkFontMgr_android_parser.cpp789 *fallbackFonts.insert(currentOrder++) = family; in mixin_vendor_fallback_font_families()
794 *fallbackFonts.insert(order) = family; in mixin_vendor_fallback_font_families()
/third_party/skia/third_party/externals/brotli/research/
H A Ddurchschlag.cc70 output.insert(output.end(), &data[r.start], &data[r.end]); in createDictionary()
230 ranges->insert(it, {start, end}); in addRange()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-bit-set.hh782 page_t *page_for (hb_codepoint_t g, bool insert = false) in page_for()
788 if (!insert) in page_for()
/third_party/python/Lib/
H A D_collections_abc.py1058 __getitem__, __setitem__, __delitem__, __len__, and insert().
1072 def insert(self, index, value): member in MutableSequence
1073 'S.insert(index, value) -- insert value before index'
1078 self.insert(len(self), value)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DLint.cpp666 if (!Visited.insert(V).second) in findValueImpl()
673 // TODO: Look through vector insert/extract/shuffle. in findValueImpl()
680 if (!VisitedBlocks.insert(BB).second) in findValueImpl()
H A DLoopInfo.cpp552 ParallelAccessGroups.insert(AccGroup);
798 NearLoop = SubloopParents.insert({Subloop, &Unloop}).first->second;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp275 ShapeMap.insert({V, Shape}); in setShapeInfo()
335 // New entry, set the value and insert operands in propagateShapeForward()
688 Inst2ColumnMatrix.insert(std::make_pair(Inst, Matrix)); in finalizeLowering()
768 // Go through the elements of this row and insert it into the resulting in LowerTranspose()
772 // We insert at index Column since that is the row index after the in LowerTranspose()
H A DStructurizeCFG.cpp530 Visited.insert(RN->getEntry()); in collectInfos()
808 Visited.insert(Node->getEntry());
860 // insert a new dummy entry block.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp99 /// Check if unrolling created a situation where we need to insert phi nodes to
105 /// insert a phi-node, otherwise LCSSA will be broken.
586 LoopsToSimplify.insert(SubLoop); in UnrollLoop()
617 LoopsToSimplify.insert(NewLoops[OldLoop]); in UnrollLoop()
651 // we can insert the proper branches later. in UnrollLoop()
912 // precede a loop exit). In this case we might need to insert PHI nodes in in UnrollLoop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp192 FillData.insert(FillData.begin(), Size, 0); in ZeroFillBytes()
198 FillData.insert(FillData.begin(), (Size / 4) + 1, Data); in Fill()

Completed in 37 milliseconds

1...<<131132133134135136137138139140>>...200