Home
last modified time | relevance | path

Searched refs:outWidth (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H A Dradio_paint_method.cpp270 …auto outWidth = outCircleRadius * (totalScale_->Get() - pointScale_->Get() - ringPointScale_->Get(… in PaintRadio() local
271 if (outWidth < borderWidth_) { in PaintRadio()
272 outWidth = borderWidth_; in PaintRadio()
274 outPen.SetWidth(outWidth); in PaintRadio()
276 …awCircle(RSPoint(centerX, centerY), outCircleRadius * totalScale_->Get() - outWidth / CALC_RADIUS); in PaintRadio()
342 auto outWidth = outCircleRadius * totalScale_->Get(); in PaintIndicator() local
343 if (outWidth < borderWidth_) { in PaintIndicator()
344 outWidth = borderWidth_; in PaintIndicator()
354 outPen.SetWidth(outWidth); in PaintIndicator()
356 …canvas.DrawCircle(RSPoint(centerX, centerY), outCircleRadius * totalScale_->Get() - outWidth / CAL… in PaintIndicator()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/src/
H A Dcolor_extract.cpp117 uint32_t ColorExtract::ModifyWordWidth(uint8_t color, int inWidth, int outWidth) in ModifyWordWidth() argument
120 if (outWidth > inWidth) { in ModifyWordWidth()
121 newValue = color << (outWidth - inWidth); in ModifyWordWidth()
123 newValue = color >> (inWidth - outWidth); in ModifyWordWidth()
125 return newValue & ((1 << outWidth) - 1); in ModifyWordWidth()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_color_extract.cpp89 uint32_t RSColorExtract::ModifyWordWidth(uint8_t color, int inWidth, int outWidth) in ModifyWordWidth() argument
92 if (outWidth > inWidth) { in ModifyWordWidth()
93 newValue = color << (outWidth - inWidth); in ModifyWordWidth()
95 newValue = color >> (inWidth - outWidth); in ModifyWordWidth()
97 return newValue & ((1 << outWidth) - 1); in ModifyWordWidth()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dheif_yuv_test.cpp61 int outWidth = width; in TestDecodeToSize() local
63 DecodeToYuv(heifPath, outfmt[j], outname, outWidth, outHeight); in TestDecodeToSize()
215 int outWidth = 0; variable
217 DecodeToYuv(heifPath, outfmt[j], outname, outWidth, outHeight);
H A Djpg_yuv_test.cpp125 int outWidth = width; in TestDecodeToSize() local
127 DecodeToYuv(jpgpath, outfmt[j], outname, outWidth, outHeight); in TestDecodeToSize()
1137 int outWidth = 0; variable
1139 DecodeToYuv(jpgpath, outfmt[j], outname, outWidth, outHeight);
1215 int outWidth = ODDTREE_ORIGINAL_WIDTH; variable
1217 DecodeToYuv(jpgpath, outfmt[j], outname, outWidth, outHeight);
/ohos5.0/foundation/multimedia/media_foundation/tests/unittest/detail_enhancer_video_ndk/sample/
H A Dvideo_sample.h36 int32_t outWidth; member
H A Dvideo_sample.cpp133 …(void)OH_NativeWindow_NativeWindowHandleOpt(outWindow_, SET_BUFFER_GEOMETRY, param_.outWidth, para… in InitVideoSample()
163 …(void)OH_NativeWindow_NativeWindowHandleOpt(outWindow_, SET_BUFFER_GEOMETRY, param_.outWidth, para… in InitVideoSampleImpl()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_color_extract.h85 static uint32_t ModifyWordWidth(uint8_t color, int inWidth, int outWidth);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/color_picker/include/
H A Dcolor_extract.h91 static uint32_t ModifyWordWidth(uint8_t color, int inWidth, int outWidth);