Home
last modified time | relevance | path

Searched refs:dstType (Results 1 - 15 of 15) sorted by relevance

/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/src/
H A Dlnn_heartbeat_utils.c232 LnnHeartbeatType *dstType = (LnnHeartbeatType *)data; in VisitCheckSupportedHbType() local
234 if ((eachType & *dstType) == 0) { in VisitCheckSupportedHbType()
235 LNN_LOGE(LNN_HEART_BEAT, "HB not support hbType=%{public}d completely", *dstType); in VisitCheckSupportedHbType()
241 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) in LnnCheckSupportedHbType() argument
243 if (srcType == NULL || dstType == NULL) { in LnnCheckSupportedHbType()
247 return LnnVisitHbTypeSet(VisitCheckSupportedHbType, srcType, dstType); in LnnCheckSupportedHbType()
/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/src/
H A Dhb_fsm_strategy_mock.cpp58 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) in LnnCheckSupportedHbType() argument
60 return HeartBeatFSMStrategyInterfaceInstance()->LnnCheckSupportedHbType(srcType, dstType); in LnnCheckSupportedHbType()
/foundation/communication/dsoftbus/tests/core/bus_center/test/heartbeat/
H A Dhb_utils_test.cpp146 uint32_t dstType = 0; in HWTEST_F() local
152 ret = LnnCheckSupportedHbType(&srcType, &dstType); in HWTEST_F()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_utils.cpp284 AlphaType ImageUtils::GetValidAlphaTypeByFormat(const AlphaType &dstType, const PixelFormat &format) in GetValidAlphaTypeByFormat() argument
295 if (dstType != AlphaType::IMAGE_ALPHA_TYPE_PREMUL) { in GetValidAlphaTypeByFormat()
302 if (dstType != AlphaType::IMAGE_ALPHA_TYPE_OPAQUE) { in GetValidAlphaTypeByFormat()
311 if (dstType != AlphaType::IMAGE_ALPHA_TYPE_PREMUL) { in GetValidAlphaTypeByFormat()
322 return dstType; in GetValidAlphaTypeByFormat()
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/include/
H A Dlnn_heartbeat_utils.h157 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType);
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/include/
H A Dimage_utils.h42 static AlphaType GetValidAlphaTypeByFormat(const AlphaType &dstType, const PixelFormat &format);
/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/include/
H A Dhb_fsm_strategy_mock.h40 virtual bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) = 0;
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/include/
H A Dpixel_convert.h194 static AlphaConvertType GetAlphaConvertType(const AlphaType &srcType, const AlphaType &dstType);
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Danimation_system.cpp231 auto* dstType = Cast<T*>(dst); in Mult() local
232 *dstType = src * *dstType; in Mult()
238 auto* dstType = Cast<T*>(dst); in Add() local
239 *dstType = *dstType + src; in Add()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/src/
H A Dpixel_convert.cpp1599 AlphaConvertType PixelConvert::GetAlphaConvertType(const AlphaType &srcType, const AlphaType &dstType) in GetAlphaConvertType() argument
1601 if (srcType == AlphaType::IMAGE_ALPHA_TYPE_UNKNOWN || dstType == AlphaType::IMAGE_ALPHA_TYPE_UNKNOWN) { in GetAlphaConvertType()
1605 if ((srcType == AlphaType::IMAGE_ALPHA_TYPE_PREMUL) && (dstType == AlphaType::IMAGE_ALPHA_TYPE_UNPREMUL)) { in GetAlphaConvertType()
1608 if ((srcType == AlphaType::IMAGE_ALPHA_TYPE_PREMUL) && (dstType == AlphaType::IMAGE_ALPHA_TYPE_OPAQUE)) { in GetAlphaConvertType()
1611 if ((srcType == AlphaType::IMAGE_ALPHA_TYPE_UNPREMUL) && (dstType == AlphaType::IMAGE_ALPHA_TYPE_PREMUL)) { in GetAlphaConvertType()
1614 if ((srcType == AlphaType::IMAGE_ALPHA_TYPE_UNPREMUL) && (dstType == AlphaType::IMAGE_ALPHA_TYPE_OPAQUE)) { in GetAlphaConvertType()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H A Dpixel_map.cpp3807 void *context, AllocatorType dstType) in UpdateSdrYuvStrides()
3821 if (dstType == AllocatorType::DMA_ALLOC) { in UpdateSdrYuvStrides()
3836 AllocatorType dstType, uint32_t errorCode, bool toSRGB) in CreateSdrMemory()
3846 auto sdrMemory = MemoryManager::CreateMemory(dstType, sdrData); in CreateSdrMemory()
3954 AllocatorType dstType = AllocatorType::DMA_ALLOC; in ToSdr()
3958 auto sdrMemory = CreateSdrMemory(imageInfo, format, dstType, ret, toSRGB); in ToSdr()
3962 SetPixelsAddr(sdrMemory->data.data, sdrMemory->extend.data, sdrMemory->data.size, dstType, nullptr); in ToSdr()
3966 UpdateSdrYuvStrides(imageInfo, dstStrides, sdrMemory->extend.data, dstType); in ToSdr()
3806 UpdateSdrYuvStrides(const ImageInfo &imageInfo, YUVStrideInfo &dstStrides, void *context, AllocatorType dstType) UpdateSdrYuvStrides() argument
3835 CreateSdrMemory(ImageInfo &imageInfo, PixelFormat format, AllocatorType dstType, uint32_t errorCode, bool toSRGB) CreateSdrMemory() argument
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/
H A Dwebgl_arg.h379 BufferDataType dstType; member
/foundation/multimedia/image_framework/interfaces/innerkits/include/
H A Dpixel_map.h489 AllocatorType dstType, uint32_t errorCode, bool toSRGB);
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp1702 const GLenum dstType = getTarget(dstPlat.type, layer, dstSampleCount); in RenderCommandBlitImage() local
1705 glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, dstType, dstPlat.image, dstMipLevel); in RenderCommandBlitImage()
1709 glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, dstType, 0, 0); in RenderCommandBlitImage()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/
H A Dwebgl_rendering_context_base_impl.cpp2272 writeBuffer.DumpBuffer(typeMap->dstType); in GetUniform()
2273 return writeBuffer.ToNormalArray(typeMap->srcType, typeMap->dstType); in GetUniform()

Completed in 33 milliseconds