Home
last modified time | relevance | path

Searched refs:dstRange (Results 1 – 25 of 89) sorted by relevance

1234

/dports/sysutils/roct/ROCT-Thunk-Interface-9d1fb76/tests/kfdtest/src/
H A DKFDIPCTest.cpp484 cmaLocalArray.Init(&dstRange[testNo], defaultGPUNode); in CrossMemoryAttachChildProcess()
485 cmaLocalArray.FillPattern(&dstRange[testNo]); in CrossMemoryAttachChildProcess()
501 status = cmaLocalArray.checkPattern(&dstRange[testNo]); in CrossMemoryAttachChildProcess()
538 status = cmaLocalArray.Init(&dstRange[testNo], defaultGPUNode); in CrossMemoryAttachParentProcess()
541 cmaLocalArray.FillPattern(&dstRange[testNo]); in CrossMemoryAttachParentProcess()
552 status = cmaLocalArray.checkPattern(&dstRange[testNo]); in CrossMemoryAttachParentProcess()
665 HsaMemoryRange srcRange, dstRange; in TEST_F() local
691 dstRange.MemoryAddress = testLocalBuffer.As<void*>(); in TEST_F()
692 dstRange.SizeInBytes = size; in TEST_F()
711 dstRange.SizeInBytes = unaligned_size; in TEST_F()
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/Core/Testing/Cxx/
H A DExampleDataArrayRangeDispatch.cxx106 auto dstRange = vtk::DataArrayValueRange<1>(dst); in operator ()() local
109 assert(srcRange.size() == dstRange.size()); in operator ()()
114 auto dstIter = dstRange.begin(); in operator ()()
192 const auto dstRange = vtk::DataArrayValueRange<1>(intArray); in ExampleDataArrayRangeDispatch() local
193 if (!std::equal(srcRange.cbegin(), srcRange.cend(), dstRange.cbegin(), CloseEnough{})) in ExampleDataArrayRangeDispatch()
/dports/misc/usd/USD-21.11/pxr/imaging/hdSt/
H A DcopyComputation.cpp58 HdStBufferArrayRangeSharedPtr dstRange = in Execute() local
62 HdStBufferResourceSharedPtr dstRes = dstRange->GetResource(_name); in Execute()
74 dstRange->GetNumElements(); in Execute()
87 size_t writeOffset = dstRange->GetByteOffset(_name) + dstRes->GetOffset(); in Execute()
H A DresourceRegistry.cpp817 HdBufferArrayRangeSharedPtr &dstRange = pendingComp.range; in _Commit() local
818 if (dstRange) { in _Commit()
830 dstRange->Resize(numElements); in _Commit()
861 HdBufferArrayRangeSharedPtr &dstRange = pendingSource.range; in _Commit() local
863 if (!dstRange) continue; in _Commit()
868 if (dstRange->GetNumElements() == 0) continue; in _Commit()
871 dstRange->CopyData(src); in _Commit()
874 _CopyChainedBuffers(src, dstRange); in _Commit()
879 ss << *dstRange; in _Commit()
918 HdBufferArrayRangeSharedPtr &dstRange = pendingComp.range; in _Commit() local
[all …]
/dports/graphics/aseprite/aseprite-1.2.9/src/app/util/
H A Dclipboard.cpp390 DocRange dstRange; in paste() local
391 dstRange.startRange(dstLayer, dstFrameFirst, DocRange::kCels); in paste()
397 dstRange.endRange(dstLayer, dstFrameFirst+srcRange.frames()-1); in paste()
403 if (srcRange.layers() == dstRange.layers()) in paste()
404 app::copy_range(srcDoc, srcRange, dstRange, kDocRangeBefore); in paste()
417 auto dstLayers = dstRange.selectedLayers().toLayerList(); in paste()
494 DocRange dstRange; in paste() local
495 dstRange.startRange(nullptr, dstFrame, DocRange::kFrames); in paste()
496 dstRange.endRange(nullptr, dstFrame); in paste()
497 app::copy_range(srcDoc, srcRange, dstRange, kDocRangeBefore); in paste()
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/Testing/Cxx/
H A DTestCompositeDataSetRange.cxx42 const auto dstRange = vtk::Range(dst); in TestCopy() local
43 std::copy(srcRange.begin(), srcRange.end(), dstRange.begin()); in TestCopy()
48 const auto dstRange = vtk::Range(dst); in TestCopy() local
49 if (!std::equal(srcRange.begin(), srcRange.end(), dstRange.begin())) in TestCopy()
H A DTestDataObjectTreeRange.cxx45 const auto dstRange = vtk::Range(dst, opts); in TestCopy() local
46 std::copy(srcRange.begin(), srcRange.end(), dstRange.begin()); in TestCopy()
51 const auto dstRange = vtk::Range(dst, opts); in TestCopy() local
52 if (!std::equal(srcRange.begin(), srcRange.end(), dstRange.begin())) in TestCopy()
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/java/test/
H A DRangeTest.java28 Range dstRange = new Range(); in testClone() local
29 dstRange = r1.clone(); in testClone()
30 assertEquals(r1, dstRange); in testClone()
/dports/math/vtk9/VTK-9.1.0/Filters/Hybrid/
H A DvtkTemporalArrayOperatorFilter.cxx369 auto dstRange = vtk::DataArrayValueRange(dst); in operator ()() local
374 std::transform(srcRange1.cbegin(), srcRange1.cend(), srcRange2.cbegin(), dstRange.begin(), in operator ()()
378 std::transform(srcRange1.cbegin(), srcRange1.cend(), srcRange2.cbegin(), dstRange.begin(), in operator ()()
382 std::transform(srcRange1.cbegin(), srcRange1.cend(), srcRange2.cbegin(), dstRange.begin(), in operator ()()
386 std::transform(srcRange1.cbegin(), srcRange1.cend(), srcRange2.cbegin(), dstRange.begin(), in operator ()()
390 std::copy(srcRange1.cbegin(), srcRange1.cend(), dstRange.begin()); in operator ()()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libavif/src/src/
H A Dalpha.c20 const uint16_t maxChannel = (uint16_t)calcMaxChannel(params->dstDepth, params->dstRange); in avifFillAlpha()
29 const uint8_t maxChannel = (uint8_t)calcMaxChannel(params->dstDepth, params->dstRange); in avifFillAlpha()
53 if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
77 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
105 … } else if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
133 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
162 if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
213 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
267 … } else if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
321 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
/dports/graphics/libavif/libavif-0.9.3/src/
H A Dalpha.c21 const uint16_t maxChannel = (uint16_t)calcMaxChannel(params->dstDepth, params->dstRange); in avifFillAlpha()
30 const uint8_t maxChannel = (uint8_t)calcMaxChannel(params->dstDepth, params->dstRange); in avifFillAlpha()
54 if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
78 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
106 … } else if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
134 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
163 if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
214 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_FULL)) { in avifReformatAlpha()
268 … } else if ((params->srcRange == AVIF_RANGE_FULL) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
322 … } else if ((params->srcRange == AVIF_RANGE_LIMITED) && (params->dstRange == AVIF_RANGE_LIMITED)) { in avifReformatAlpha()
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/objc/test/
H A DRangeTest.swift22 let dstRange = r1.clone() in testClone() variable
23 XCTAssertEqual(r1, dstRange) in testClone()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/guilib/
H A DFFmpegImage.cpp491 int srcRange, dstRange, brightness, contrast, saturation; in DecodeFrame() local
492 …sws_getColorspaceDetails(context, &inv_table, &srcRange, &table, &dstRange, &brightness, &contrast… in DecodeFrame()
494 …sws_setColorspaceDetails(context, inv_table, srcRange, table, dstRange, brightness, contrast, satu… in DecodeFrame()
653 int srcRange, dstRange, brightness, contrast, saturation; in CreateThumbnailFromSurface() local
655 …if (sws_getColorspaceDetails(tdm.sws, &inv_table, &srcRange, &table, &dstRange, &brightness, &cont… in CreateThumbnailFromSurface()
661 dstRange = 1; // jpeg full range yuv420p output in CreateThumbnailFromSurface()
663 …if (sws_setColorspaceDetails(tdm.sws, inv_table, srcRange, table, dstRange, brightness, contrast, … in CreateThumbnailFromSurface()
/dports/multimedia/QtAV/QtAV-1.13.0/src/
H A DImageConverterFF.cpp119 int dstRange = range_out == ColorRange_Limited ? 0 : 1; in setupColorspaceDetails() local
123 , dstRange in setupColorspaceDetails()
/dports/multimedia/handbrake/ffmpeg-4.4/libswscale/
H A Dutils.c786 dstRange = 0; //FIXME range = 1 is handled elsewhere in fill_rgb2yuv_table()
788 if (!dstRange) { in fill_rgb2yuv_table()
885 dstRange = 0; in sws_setColorspaceDetails()
890 c->dstRange != dstRange || in sws_setColorspaceDetails()
908 c->dstRange = dstRange; in sws_setColorspaceDetails()
1002 fill_rgb2yuv_table(c, table, dstRange); in sws_setColorspaceDetails()
1017 *dstRange = range_override_needed(c->dstFormat) ? 1 : c->dstRange; in sws_getColorspaceDetails()
1209 c->dstRange |= handle_jpeg(&c->dstFormat); in sws_init_context()
1588 c->srcRange != c->dstRange in sws_init_context()
1613 c->cascaded_context[1]->dstRange = c->dstRange; in sws_init_context()
[all …]
H A Dswscale.h232 int srcRange, const int table[4], int dstRange,
239 int *srcRange, int **table, int *dstRange,
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libswscale/
H A Dutils.c771 dstRange = 0; //FIXME range = 1 is handled elsewhere in fill_rgb2yuv_table()
773 if (!dstRange) { in fill_rgb2yuv_table()
865 dstRange = 0; in sws_setColorspaceDetails()
870 c->dstRange != dstRange || in sws_setColorspaceDetails()
888 c->dstRange = dstRange; in sws_setColorspaceDetails()
982 fill_rgb2yuv_table(c, table, dstRange); in sws_setColorspaceDetails()
997 *dstRange = c->dstRange; in sws_getColorspaceDetails()
1189 c->dstRange |= handle_jpeg(&c->dstFormat); in sws_init_context()
1563 c->srcRange != c->dstRange in sws_init_context()
1588 c->cascaded_context[1]->dstRange = c->dstRange; in sws_init_context()
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libswscale/
H A Dutils.c786 dstRange = 0; //FIXME range = 1 is handled elsewhere in fill_rgb2yuv_table()
788 if (!dstRange) { in fill_rgb2yuv_table()
885 dstRange = 0; in sws_setColorspaceDetails()
890 c->dstRange != dstRange || in sws_setColorspaceDetails()
908 c->dstRange = dstRange; in sws_setColorspaceDetails()
1002 fill_rgb2yuv_table(c, table, dstRange); in sws_setColorspaceDetails()
1017 *dstRange = range_override_needed(c->dstFormat) ? 1 : c->dstRange; in sws_getColorspaceDetails()
1209 c->dstRange |= handle_jpeg(&c->dstFormat); in sws_init_context()
1588 c->srcRange != c->dstRange in sws_init_context()
1613 c->cascaded_context[1]->dstRange = c->dstRange; in sws_init_context()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libswscale/
H A Dutils.c777 dstRange = 0; //FIXME range = 1 is handled elsewhere in fill_rgb2yuv_table()
779 if (!dstRange) { in fill_rgb2yuv_table()
871 dstRange = 0; in sws_setColorspaceDetails()
876 c->dstRange != dstRange || in sws_setColorspaceDetails()
894 c->dstRange = dstRange; in sws_setColorspaceDetails()
988 fill_rgb2yuv_table(c, table, dstRange); in sws_setColorspaceDetails()
1003 *dstRange = c->dstRange; in sws_getColorspaceDetails()
1195 c->dstRange |= handle_jpeg(&c->dstFormat); in sws_init_context()
1570 c->srcRange != c->dstRange in sws_init_context()
1595 c->cascaded_context[1]->dstRange = c->dstRange; in sws_init_context()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libswscale/
H A Dutils.c786 dstRange = 0; //FIXME range = 1 is handled elsewhere in fill_rgb2yuv_table()
788 if (!dstRange) { in fill_rgb2yuv_table()
880 dstRange = 0; in sws_setColorspaceDetails()
885 c->dstRange != dstRange || in sws_setColorspaceDetails()
903 c->dstRange = dstRange; in sws_setColorspaceDetails()
997 fill_rgb2yuv_table(c, table, dstRange); in sws_setColorspaceDetails()
1012 *dstRange = c->dstRange; in sws_getColorspaceDetails()
1204 c->dstRange |= handle_jpeg(&c->dstFormat); in sws_init_context()
1583 c->srcRange != c->dstRange in sws_init_context()
1608 c->cascaded_context[1]->dstRange = c->dstRange; in sws_init_context()
[all …]
/dports/multimedia/py-av/av-8.0.3/include/libswscale/
H A Dswscale.pxd83 int *dstRange, argument
94 int dstRange, argument
/dports/net/mediastreamer/mediastreamer-2.16.1/src/utils/
H A Dswscale.h119 …ntext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, …
120 …struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness,…
/dports/sysutils/xvidcap/xvidcap-1.1.7/ffmpeg/
H A Dswscale.h119 …ntext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, …
120 …struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness,…
/dports/sysutils/xvidcap/xvidcap-1.1.7/ffmpeg/libswscale/
H A Dswscale.h119 …ntext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, …
120 …struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness,…
/dports/graphics/cfdg/cfdg-3.3_1/src-ffmpeg/include/libswscale/
H A Dswscale.h232 int srcRange, const int table[4], int dstRange,
239 int *srcRange, int **table, int *dstRange,

1234