Home
last modified time | relevance | path

Searched refs:splice (Results 1 – 25 of 41) sorted by relevance

12

/aosp12/frameworks/compile/mclinker/include/mcld/ADT/
H A Dilist_sort.h39 xs.splice(first, xs, second); in sort()
51 ys.splice(ys.begin(), xs, mid_iter, xs.end()); in sort()
65 xs.splice(xs_it, ys, ys_it++); in sort()
71 xs.splice(xs_end, ys, ys_it, ys_end); in sort()
/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp113 splice((EdgePointer) sym(a), b); in build()
146 void CDelaunay::splice(EdgePointer a, EdgePointer b) in splice() function in CDelaunay
163 splice(ans, (EdgePointer) lnext(a)); in connectLeft()
164 splice((EdgePointer) sym(ans), b); in connectLeft()
172 splice(ans, (EdgePointer) sym(a)); in connectRight()
173 splice((EdgePointer) sym(ans), (EdgePointer) oprev(b)); in connectRight()
180 splice(e, (EdgePointer) oprev(e)); in deleteEdge()
181 splice((EdgePointer) sym(e), (EdgePointer) oprev(sym(e))); in deleteEdge()
H A DDelaunay.h73 void splice(EdgePointer, EdgePointer);
/aosp12/system/bt/gd/common/
H A Dlist_map_test.cc151 list_map.splice(list_map.find(2), list_map_2, list_map_2.find(4)); in TEST()
164 list_map.splice(list_map.find(2), list_map, list_map.find(3)); in TEST()
171 list_map.splice(list_map.begin(), list_map, list_map.find(4)); in TEST()
172 list_map.splice(list_map.begin(), list_map, list_map.find(3)); in TEST()
173 list_map.splice(list_map.begin(), list_map, list_map.find(1)); in TEST()
H A Dlist_map.h162 void splice(const_iterator pos, ListMap<Key, T>& other, const_iterator it) { in splice() function
167 node_list_.splice(pos, other.node_list_, it); in splice()
H A Dlru_cache.h122 list_map_.splice(list_map_.begin(), list_map_, iter); in find()
/aosp12/bionic/tests/
H A Dfcntl_test.cpp179 TEST(fcntl, splice) { in TEST() argument
188 …ssize_t bytes_read = splice(in, nullptr, pipe_fds[1], nullptr, 8*1024, SPLICE_F_MORE | SPLICE_F_MO… in TEST()
191 …ssize_t bytes_written = splice(pipe_fds[0], nullptr, tf.fd, nullptr, bytes_read, SPLICE_F_MORE | S… in TEST()
237 …ssize_t bytes_read = splice(in, nullptr, pipe1[1], nullptr, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE); in TEST()
/aosp12/frameworks/base/core/java/android/app/
H A DAppOpsManager.java5181 HistoricalOps splice = null; in splice() local
5187 if (splice == null) { in splice()
5196 return splice; in splice()
5573 if (splice == null) { in splice()
5582 return splice; in splice()
5844 return splice; in splice()
6185 return splice; in splice()
6537 splice(mAccessCount, splice::getOrCreateAccessCount, fractionToRemove); in splice()
6538 splice(mRejectCount, splice::getOrCreateRejectCount, fractionToRemove); in splice()
6539 splice(mAccessDuration, splice::getOrCreateAccessDuration, fractionToRemove); in splice()
[all …]
/aosp12/packages/modules/DnsResolver/
H A DDnsTlsDispatcher.cpp102 out.splice(out.cend(), existing4); in getOrderedAndUsableServerList()
103 out.splice(out.cend(), new6); in getOrderedAndUsableServerList()
104 out.splice(out.cend(), new4); in getOrderedAndUsableServerList()
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp537 dst.splice(dst.end(), src, frag++); in mergeSection()
728 tmp.splice(tmp.end(), list, first); in rewriteARMExIdxSection()
729 tmp.splice(tmp.end(), list, last); in rewriteARMExIdxSection()
788 list.splice(list.begin(), tmp, tmp.begin()); in rewriteARMExIdxSection()
789 list.splice(list.end(), tmp, tmp.begin()); in rewriteARMExIdxSection()
/aosp12/bionic/libc/include/
H A Dfcntl.h152 ssize_t splice(int __in_fd, off64_t* __in_offset, int __out_fd, off64_t* __out_offset, size_t __len…
/aosp12/system/bt/common/
H A Dlru.h83 node_list_.splice(node_list_.begin(), node_list_, map_iterator->second); in Find()
/aosp12/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp939 to_list.splice(fragInsert, pFrom.getFragmentList()); in MoveCommonData()
941 to_list.splice(frag, pFrom.getFragmentList()); in MoveCommonData()
1006 to_list.splice(fragInsert, pFrom.getFragmentList()); in MoveSectionDataAndSort()
1008 to_list.splice(frag, pFrom.getFragmentList()); in MoveSectionDataAndSort()
/aosp12/frameworks/av/media/libstagefright/
H A DFrameRenderTracker.cpp142 done.splice(done.end(), mRenderQueue, it++); in checkFencesAndGetRenderedFrames()
/aosp12/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp157 to_list.splice(to_list.end(), from_list); in MoveSectionData()
/aosp12/frameworks/av/media/codec2/sfplugin/
H A DFrameReassembler.cpp96 items->splice(items->end(), mPendingWork); in process()
/aosp12/frameworks/base/services/core/java/com/android/server/appop/
H A DHistoricalRegistry.java1665 final HistoricalOps splice = ops.spliceFromEnd(spliceRatio); in spliceFromEnd() local
1667 Slog.w(LOG_TAG, "Spliced into:" + ops + " and:" + splice); in spliceFromEnd()
1669 return splice; in spliceFromEnd()
1678 final HistoricalOps splice = ops.spliceFromBeginning(spliceRatio); in spliceFromBeginning() local
1680 Slog.w(LOG_TAG, "Spliced into:" + ops + " and:" + splice); in spliceFromBeginning()
1682 return splice; in spliceFromBeginning()
/aosp12/frameworks/base/core/java/android/os/
H A DFileUtils.java484 while ((t = Os.splice(in, null, out, null, Math.min(count, COPY_CHECKPOINT_BYTES), in copyInternalSplice()
1098 final String splice = file.getAbsolutePath().substring( in rewriteAfterRename() local
1100 return new File(afterDir, splice); in rewriteAfterRename()
/aosp12/system/logging/logd/
H A DSerializedLogBuffer.cpp70 new_logs.splice(new_logs.end(), log_buffer, chunk); in ClearLogsByUid()
/aosp12/frameworks/base/cmds/incident/
H A Dmain.cpp213 int amt = splice(read_fd, NULL, write_fd, NULL, 4096, 0); in stream_output()
/aosp12/frameworks/rs/script_api/
H A DGenerateRSFunctionsList.cpp135 tokens.splice(++i, std::move(newTokens)); in expandTypedefs()
/aosp12/frameworks/av/media/codec2/sfplugin/utils/
H A DCodec2BufferUtils.cpp633 mFreeBlocks.splice(mFreeBlocks.begin(), mBlocksInUse, block); in release()
648 mBlocksInUse.splice(mBlocksInUse.begin(), mFreeBlocks, mFreeBlocks.begin()); in fetch()
/aosp12/hardware/google/graphics/common/libhwc2.1/libdisplayinterface/
H A DExynosDisplayDrmInterface.cpp114 mCleanBuffers.splice(mCleanBuffers.end(), std::move(it->second)); in cleanup()
129 cleanupBuffers.splice(cleanupBuffers.end(), mCleanBuffers); in removeFBsThreadRoutine()
278 mCleanBuffers.splice(mCleanBuffers.end(), cachedBuffers); in getBuffer()
353 mCleanBuffers.splice(mCleanBuffers.end(), std::move(layer->second)); in destroyUnusedLayersLocked()
378 mCleanBuffers.splice(mCleanBuffers.end(), bufferList, it, bufferList.end()); in destroySecureFramebufferLocked()
/aosp12/frameworks/av/media/codec2/vndk/
H A DC2DmaBufAllocator.cpp363 mUsageMapperLru.splice(mUsageMapperLru.begin(), mUsageMapperLru, entry->second); in mapUsage()
/aosp12/build/make/tools/droiddoc/templates-pdk/assets/
H A Djquery-1.6.2.min.js16splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;…
17splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=functio…

12