Searched defs:Insert (Results 1 - 25 of 99) sorted by last modified time

1234

/external/webrtc/src/common_audio/resampler/
H A Dresampler.cc996 int Resampler::Insert(WebRtc_Word16 * samplesIn, int lengthIn) function in class:webrtc::Resampler
/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.cc149 int ListWrapper::Insert(ListItem* existing_previous_item, ListItem* new_item) function in class:webrtc::ListWrapper
H A Dlist_stl.cc180 int ListWrapper::Insert(ListItem* existing_previous_item, function in class:webrtc::ListWrapper
H A Dlist_unittest.cc66 int Insert(ListItem* existing_previous_item, function in class:ListWrapperSimple
68 const int retval = list_.Insert(existing_previous_item, new_item);
387 // Use Insert to interleave two lists.
423 EXPECT_EQ(0, interleave_list->Insert(item, insert_item));
H A Dmap.cc68 int MapWrapper::Insert(int id, void* ptr) function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc74 int MapNoStl::Insert(int id, void* ptr) function in class:webrtc::MapNoStl
/external/srec/seti/sltsEngine/src/
H A Dlinklist_impl.c123 LListResult Insert(LList *list, void *data) function
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dheap.h59 int Insert(const T& val) { function in class:fst::Heap
70 return Insert(val, size_ - 1);
80 Insert(val, i);
170 int Insert(const T& val, int i) { function in class:fst::Heap
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h280 void PushBack(const E& element) { Insert(element, size_); }
283 void PushFront(const E& element) { Insert(element, 0); }
303 void Insert(const E& element, int index) { function in class:testing::internal::Vector
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp708 FX_STRSIZE CFX_ByteString::Insert(FX_STRSIZE nIndex, FX_CHAR ch) function in class:CFX_ByteString
H A Dfx_basic_wstring.cpp709 FX_STRSIZE CFX_WideString::Insert(FX_STRSIZE nIndex, FX_WCHAR ch) function in class:CFX_WideString
/external/openfst/src/include/fst/
H A Dheap.h64 // Insert a value into the heap
65 int Insert(const T& val) { function in class:fst::Heap
76 return Insert(val, size_ - 1);
86 Insert(val, i);
182 // Insert (update) element at subtree rooted at index i
183 int Insert(const T& val, int i) { function in class:fst::Heap
H A Dutil.h391 void Insert(Key key) { function in class:fst::CompactSet
/external/lzma/CPP/Common/
H A DMyString.h469 int Insert(int index, T c) function in class:CStringBase
476 int Insert(int index, const CStringBase &s) function in class:CStringBase
523 Insert(pos, newString);
H A DMyVector.h60 void Insert(int index, T item) function in class:CRecordVector
128 Insert(right, item);
206 void Insert(int index, const T& item) { CPointerVector::Insert(index, new T(item)); } function in class:CObjectVector
254 Insert(right, item);
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2048 InsertElementInst *Insert = dyn_cast<InsertElementInst>(*it); local
2050 if (!Insert)
2054 Loop *L = LI->getLoopFor(Insert->getParent());
2066 Instruction *CurrVec = dyn_cast<Instruction>(Insert->getOperand(0));
2067 Instruction *NewElem = dyn_cast<Instruction>(Insert->getOperand(1));
2074 Insert->moveBefore(PreHeader->getTerminator());
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h417 /// Insert them into \a Loops before \c Insert.
422 std::list<LoopData>::iterator Insert);
856 /// of \c Insert), and call \a computeMassInLoop() on each of them.
862 /// \pre \c Insert points at the the last loop successfully processed by \a
866 std::list<LoopData>::iterator Insert);
1123 LoopData *OuterLoop, std::list<LoopData>::iterator Insert) {
1134 for (auto &L : analyzeIrreducible(G, OuterLoop, Insert))
1122 computeIrreducibleMass( LoopData *OuterLoop, std::list<LoopData>::iterator Insert) argument
/external/llvm/include/llvm/IR/
H A DIRBuilder.h490 /// \brief Insert and return the specified instruction.
492 InstTy *Insert(InstTy *I, const Twine &Name = "") const { function in class:llvm::IRBuilder
499 Constant *Insert(Constant *C, const Twine& = "") const { function in class:llvm::IRBuilder
520 return Insert(ReturnInst::Create(Context));
525 return Insert(ReturnInst::Create(Context, V));
539 return Insert(ReturnInst::Create(Context, V));
544 return Insert(BranchInst::Create(Dest));
551 return Insert(addBranchWeights(BranchInst::Create(True, False, Cond),
560 return Insert(addBranchWeights(SwitchInst::Create(V, Dest, NumCases),
568 return Insert(IndirectBrIns
[all...]
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp661 LoopData *OuterLoop, std::list<LoopData>::iterator Insert,
670 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(),
684 std::list<LoopData>::iterator Insert) {
685 assert((OuterLoop == nullptr) == (Insert == Loops.begin()));
686 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end();
693 createIrreducibleLoop(*this, G, OuterLoop, Insert, *I);
697 return make_range(std::next(Prev), Insert);
698 return make_range(Loops.begin(), Insert);
659 createIrreducibleLoop( BlockFrequencyInfoImplBase &BFI, const IrreducibleGraph &G, LoopData *OuterLoop, std::list<LoopData>::iterator Insert, const std::vector<const IrreducibleGraph::IrrNode *> &SCC) argument
682 analyzeIrreducible( const IrreducibleGraph &G, LoopData *OuterLoop, std::list<LoopData>::iterator Insert) argument
/external/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp38 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
40 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) const;
262 unsigned BasicTTI::getScalarizationOverhead(Type *Ty, bool Insert, argument
268 if (Insert)
/external/llvm/lib/IR/
H A DMetadata.cpp220 FunctionLocalness FL, bool Insert) {
234 if (N || !Insert)
219 getMDNode(LLVMContext &Context, ArrayRef<Value*> Vals, FunctionLocalness FL, bool Insert) argument
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1007 SDValue Insert = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, Op.getValueType(), local
1009 return vectorToVerticalVector(DAG, Insert);
1914 // Insert the element
H A DSIAnnotateControlFlow.cpp243 TerminatorInst *Insert = From->getTerminator(); local
244 Value *PhiArg = CallInst::Create(Break, Broken, "", Insert);
252 TerminatorInst *Insert = Parent->getTerminator(); local
254 return CallInst::Create(IfBreak, Args, "", Insert);

Completed in 334 milliseconds

1234