Home
last modified time | relevance | path

Searched refs:share (Results 1 – 25 of 42) sorted by relevance

12

/frameworks/av/media/tests/benchmark/src/native/common/
DBenchmarkC2Common.h42 : C2Buffer({block->share(block->offset(), block->size(), ::C2Fence())}) {} in LinearBuffer()
45 : C2Buffer({block->share(block->offset(), size, ::C2Fence())}) {} in LinearBuffer()
51 : C2Buffer({block->share(C2Rect(block->width(), block->height()), ::C2Fence())}) {} in GraphicBuffer()
/frameworks/av/media/codec2/tests/vndk/
DC2BufferTest.cpp401 C2ConstLinearBlock constBlock = block->share( in TEST_F()
545 C2ConstGraphicBlock constBlock = block->share(C2Rect(kWidth, kHeight), fence); in TEST_F()
626 …std::shared_ptr<C2BufferData> data(new BufferData({ linearBlock1->share(0, kCapacity1, C2Fence()) … in TEST_F()
633 linearBlock1->share(0, kCapacity1, C2Fence()), in TEST_F()
634 linearBlock2->share(0, kCapacity2, C2Fence()), in TEST_F()
642 data.reset(new BufferData({ graphicBlock1->share(kCrop1, C2Fence()) })); in TEST_F()
649 graphicBlock1->share(kCrop1, C2Fence()), in TEST_F()
650 graphicBlock2->share(kCrop2, C2Fence()), in TEST_F()
685 std::shared_ptr<C2Buffer> buffer(new Buffer( { block->share(0, kCapacity, C2Fence()) })); in TEST_F()
692 buffer.reset(new Buffer( { block->share(0, kCapacity, C2Fence()) })); in TEST_F()
[all …]
/frameworks/base/media/jni/
Dandroid_media_MediaCodecLinearBlock.h55 return C2Buffer::CreateLinearBuffer(mBlock->share(offset, size, C2Fence{})); in toC2Buffer()
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dbitfield.rscript21 // of unions: if a union contains several structures that share a
25 // completed type of the union is visible. Two structures share a
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
DNekoLand.java252 holder.share.setOnClickListener(new View.OnClickListener() { in onBindViewHolder()
329 private final View share; field in NekoLand.CatHolder
337 share = itemView.findViewById(android.R.id.shareText); in CatHolder()
/frameworks/compile/slang/lit-tests/padding/
Dbitfield.rscript27 // of unions: if a union contains several structures that share a
31 // completed type of the union is visible. Two structures share a
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dbitfield.rscript23 // of unions: if a union contains several structures that share a
27 // completed type of the union is visible. Two structures share a
/frameworks/av/media/codec2/sfplugin/tests/
DCCodecBuffers_test.cpp48 std::shared_ptr<C2Buffer> c2Buffer = C2Buffer::CreateGraphicBuffer(block->share( in TEST()
/frameworks/base/core/java/android/widget/
DLinearLayout.java972 final int share = (int) (childWeight * remainingExcess / remainingWeightSum); in measureVertical() local
973 remainingExcess -= share; in measureVertical()
983 childHeight = share; in measureVertical()
987 childHeight = child.getMeasuredHeight() + share; in measureVertical()
1360 final int share = (int) (childWeight * remainingExcess / remainingWeightSum); in measureHorizontal() local
1361 remainingExcess -= share; in measureHorizontal()
1371 childWidth = share; in measureHorizontal()
1375 childWidth = child.getMeasuredWidth() + share; in measureHorizontal()
/frameworks/av/media/codec2/sfplugin/
DCodec2Buffer.cpp147 return C2Buffer::CreateLinearBuffer(mBlock->share(offset(), size(), C2Fence())); in asC2Buffer()
568 mBlock->share(C2Rect(width, height), C2Fence())); in asC2Buffer()
613 block->share(C2Rect(buffer->width, buffer->height), C2Fence())); in asC2Buffer()
794 return C2Buffer::CreateLinearBuffer(mBlock->share(offset(), size(), C2Fence())); in asC2Buffer()
DC2OMXNode.cpp406 new Buffer2D(block->share( in emptyBuffer()
/frameworks/base/core/proto/android/
Dprivacy.proto38 // still must have previously accepted a consent to share this
/frameworks/base/core/proto/android/net/
Dnetworkrequest.proto51 // request's capabilities, thus causing it to share fate in every way
/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp598 return C2Buffer::CreateLinearBuffer(block->share(offset, size, ::C2Fence())); in createLinearBuffer()
608 return C2Buffer::CreateGraphicBuffer(block->share(crop, ::C2Fence())); in createGraphicBuffer()
/frameworks/av/media/codec2/core/include/
DC2Buffer.h1166 C2ConstLinearBlock share(size_t offset, size_t size, C2Fence fence);
1263 c2_status_t share(size_t size, C2Fence fence, std::vector<C2ConstLinearBlock> &blocks);
1952 C2ConstGraphicBlock share(const C2Rect &crop, C2Fence fence);
/frameworks/hardware/interfaces/cameraservice/device/2.0/
Dtypes.hal323 * The outputs will share memory buffers whenever possible. Due to buffer
340 * buffer streams simultaneously. The ICameraDevice may be able to share the buffers used
/frameworks/opt/net/wifi/service/proto/src/
Dscorecard.proto31 // Describes a network, consisting of a collection of access points that share
/frameworks/av/media/codec2/components/cmds/
Dcodec2.cpp70 : C2Buffer({ block->share(block->offset(), block->size(), ::C2Fence()) }) {} in LinearBuffer()
/frameworks/av/media/codec2/hidl/1.0/utils/
DInputSurfaceConnection.cpp217 new Buffer2D(block->share( in submitBuffer()
Dtypes.cpp1219 *buffer = C2Buffer::CreateLinearBuffer(block->share( in createLinearBuffer()
1249 *buffer = C2Buffer::CreateGraphicBuffer(block->share( in createGraphicBuffer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DSaveImageInBackgroundTask.java303 r.getString(com.android.internal.R.string.share), shareAction); in createShareAction()
/frameworks/av/media/codec2/hidl/1.0/vts/functional/video/
DVtsHalMediaC2V1_0TargetVideoDecTest.cpp54 : C2Buffer({block->share(block->offset(), block->size(), ::C2Fence())}) {} in LinearBuffer()
57 : C2Buffer({block->share(block->offset(), size, ::C2Fence())}) {} in LinearBuffer()
/frameworks/base/proto/src/
Dsystem_messages.proto120 // Entice the use to tap to share files
/frameworks/av/media/codec2/vndk/
DC2Buffer.cpp325 C2ConstLinearBlock C2LinearBlock::share(size_t offset_, size_t size_, C2Fence fence) { in share() function in C2LinearBlock
1098 C2ConstGraphicBlock C2GraphicBlock::share(const C2Rect &crop, C2Fence fence) { in share() function in C2GraphicBlock
/frameworks/av/media/codec2/hidl/1.0/vts/functional/audio/
DVtsHalMediaC2V1_0TargetAudioEncTest.cpp47 : C2Buffer({block->share(block->offset(), block->size(), ::C2Fence())}) {} in LinearBuffer()

12