Home
last modified time | relevance | path

Searched refs:swap (Results 1 – 25 of 113) sorted by relevance

12345

/frameworks/av/services/audioflinger/
DPatchPanel.h91 Endpoint(Endpoint&& other) noexcept { swap(other); } in Endpoint()
93 swap(other);
140 void swap(Endpoint &other) noexcept { in swap() function
141 using std::swap; in swap()
142 swap(mThread, other.mThread); in swap()
143 swap(mCloseThread, other.mCloseThread); in swap()
144 swap(mClearPeerProxy, other.mClearPeerProxy); in swap()
145 swap(mHandle, other.mHandle); in swap()
146 swap(mTrack, other.mTrack); in swap()
149 friend void swap(Endpoint &a, Endpoint &b) noexcept { in swap() function
[all …]
/frameworks/native/libs/vr/libvrflinger/
Dacquired_buffer.cpp44 using std::swap; in operator =()
45 swap(buffer_, other.buffer_); in operator =()
46 swap(acquire_fence_, other.acquire_fence_); in operator =()
47 swap(slot_, other.slot_); in operator =()
Dhardware_composer.cpp1374 using std::swap; in operator =()
1375 swap(composer_, other.composer_); in operator =()
1376 swap(display_params_, other.display_params_); in operator =()
1377 swap(hardware_composer_layer_, other.hardware_composer_layer_); in operator =()
1378 swap(z_order_, other.z_order_); in operator =()
1379 swap(blending_, other.blending_); in operator =()
1380 swap(composition_type_, other.composition_type_); in operator =()
1381 swap(target_composition_type_, other.target_composition_type_); in operator =()
1382 swap(source_, other.source_); in operator =()
1383 swap(acquire_fence_, other.acquire_fence_); in operator =()
[all …]
/frameworks/base/cmds/incident_helper/tests/
DCpuInfoParser_test.cpp70 CpuInfoProto::MemStats* swap = expected.mutable_swap(); in TEST_F() local
71 swap->set_total(524284); in TEST_F()
72 swap->set_used(25892); in TEST_F()
73 swap->set_free(498392); in TEST_F()
74 swap->set_cached(1316952); in TEST_F()
/frameworks/base/core/proto/android/os/
Dprocrank.proto47 // swap size, unit KB
48 optional int64 swap = 6; field
50 // proportional swap size, unit KB
53 // unique swap size, unit KB
/frameworks/base/libs/hwui/renderthread/
DCanvasContext.cpp508 SwapHistory& swap = mSwapHistory.next(); in draw() local
510 swap.damage = windowDirty; in draw()
513 swap.damage = SkRect::MakeWH(max, max); in draw()
515 swap.swapCompletedTime = systemTime(SYSTEM_TIME_MONOTONIC); in draw()
516 swap.vsyncTime = mRenderThread.timeLord().latestVsync(); in draw()
523 swap.dequeueDuration = 0; in draw()
525 swap.dequeueDuration = in draw()
528 swap.queueDuration = in draw()
531 swap.dequeueDuration = 0; in draw()
532 swap.queueDuration = 0; in draw()
[all …]
/frameworks/base/core/java/android/text/
DAndroidBidi.java166 boolean swap; in directions()
169 swap = maxLevel > minLevel; in directions()
171 swap = runCount > 1; in directions()
173 if (swap) { in directions()
/frameworks/base/cmds/incident_helper/testdata/
Dprocrank.txt7 ZRAM: 6828K physical used for 31076K in swap (524284K total swap)
/frameworks/native/services/sensorservice/
Dmat.h339 size_t swap; in invert() local
345 swap = i; in invert()
348 swap = j; in invert()
352 if (swap != i) { in invert()
356 tmp[i][k] = tmp[swap][k]; in invert()
357 tmp[swap][k] = t; in invert()
360 inverse[i][k] = inverse[swap][k]; in invert()
361 inverse[swap][k] = t; in invert()
/frameworks/base/startop/apps/test/src/
DCPUIntensiveBenchmarks.java41 int swap = mArray[mThreadNumber][j]; in run() local
43 mArray[mThreadNumber][(j + i) % arrayLength] = swap; in run()
/frameworks/base/tools/preload/
Dsorttable.js308 var swap = true;
310 while(swap) {
311 swap = false;
315 swap = true;
320 if (!swap) break;
325 swap = true;
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
DTiledImageView.java251 final boolean swap = !(rotation % 180 == 0); in positionFromMatrix()
252 final int width = swap ? mRenderer.source.getImageHeight() in positionFromMatrix()
254 final int height = swap ? mRenderer.source.getImageWidth() in positionFromMatrix()
275 mRenderer.centerX = swap ? cy : cx; in positionFromMatrix()
276 mRenderer.centerY = swap ? cx : cy; in positionFromMatrix()
/frameworks/native/libs/input/
DTouchVideoFrame.cpp82 std::swap(mHeight, mWidth); in rotateQuarterTurn()
97 std::swap(mData[i], mData[mHeight * mWidth - 1 - i]); in rotate180()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DListGridLayout.java72 public void setSwapRowsAndColumns(boolean swap) { in setSwapRowsAndColumns() argument
73 mSwapRowsAndColumns = swap; in setSwapRowsAndColumns()
/frameworks/native/services/surfaceflinger/
DLayerRejecter.cpp52 std::swap(bufWidth, bufHeight); in reject()
58 std::swap(bufWidth, bufHeight); in reject()
/frameworks/base/libs/androidfw/include/androidfw/
DUtil.h97 inline void swap(unique_cptr& o) { std::swap(ptr_, o.ptr_); } in swap() function
/frameworks/compile/mclinker/lib/MC/
DSymbolCategory.cpp78 std::swap(m_OutputSymbols[current->begin], in add()
158 std::swap(m_OutputSymbols[pos], m_OutputSymbols[rear]); in arrange()
177 std::swap(m_OutputSymbols[current->begin], m_OutputSymbols[pos]); in arrange()
208 std::swap(m_OutputSymbols[pos], m_OutputSymbols[m_pDynamic->end - 1]); in changeCommonsToGlobal()
/frameworks/native/libs/vr/libpdx/private/pdx/
Dstatus.h59 std::swap(other.value_, empty);
71 std::swap(value_, empty); in SetError()
/frameworks/native/libs/math/include/math/
DTMatHelpers.h89 size_t swap = i; in gaussJordanInverse() local
94 swap = j; in gaussJordanInverse()
99 if (swap != i) { in gaussJordanInverse()
101 std::swap(tmp[i], tmp[swap]); in gaussJordanInverse()
102 std::swap(inverted[i], inverted[swap]); in gaussJordanInverse()
/frameworks/native/services/surfaceflinger/Scheduler/
DLayerHistory.cpp161 std::swap(mLayerInfos[i], mLayerInfos[--mActiveLayersEnd]); in partitionLayers()
170 std::swap(mLayerInfos[i], mLayerInfos[--end]); in partitionLayers()
DLayerHistoryV2.cpp193 std::swap(mLayerInfos[i], mLayerInfos[--mActiveLayersEnd]); in partitionLayers()
202 std::swap(mLayerInfos[i], mLayerInfos[--end]); in partitionLayers()
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DCallOrderStateMachineHelper.h118 std::swap(instance, mInstance); in nextState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DFavoritesModel.kt195 Collections.swap(elements, i, i + 1) in moveElement()
199 Collections.swap(elements, i, i - 1) in moveElement()
/frameworks/native/libs/vr/libpdx/
Dservice.cpp41 std::swap(service_, other.service_); in operator =()
42 std::swap(channel_, other.channel_); in operator =()
43 std::swap(info_, other.info_); in operator =()
44 std::swap(state_, other.state_); in operator =()
45 std::swap(replied_, other.replied_); in operator =()
/frameworks/native/opengl/tests/lib/
DWindowSurface.cpp65 std::swap(width, height); in WindowSurface()

12345