Home
last modified time | relevance | path

Searched refs:props (Results 51 - 75 of 1592) sorted by relevance

12345678910>>...64

/third_party/node/deps/icu-small/source/common/
H A Dubidi_props.cpp135 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getClass() local
136 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass()
141 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isMirrored() local
142 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored()
146 getMirror(UChar32 c, uint16_t props) { in getMirror() argument
147 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror()
179 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getMirror() local
180 return getMirror(c, props); in ubidi_getMirror()
185 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isBidiControl() local
186 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIF in ubidi_isBidiControl()
191 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_isJoinControl() local
197 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getJoiningType() local
220 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracketType() local
226 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracket() local
[all...]
H A Dubidi_props.h119 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
120 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
123 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
125 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIF
[all...]
H A Ducase.cpp79 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
128 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_tolower() local
129 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_tolower()
130 if(UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower()
131 c+=UCASE_GET_DELTA(props); in ucase_tolower()
134 const uint16_t *pe=GET_EXCEPTIONS(&ucase_props_singleton, props); in ucase_tolower()
136 if(HAS_SLOT(excWord, UCASE_EXC_DELTA) && UCASE_IS_UPPER_OR_TITLE(props)) { in ucase_tolower()
150 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); in ucase_toupper() local
151 if(!UCASE_HAS_EXCEPTION(props)) { in ucase_toupper()
172 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_totitle() local
208 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_addCaseClosure() local
322 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_addSimpleCaseClosure() local
674 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_getType() local
681 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_getTypeOrIgnorable() local
688 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); getDotType() local
704 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_isCaseSensitive() local
1159 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_toFullLower() local
1311 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); toUpperOrTitle() local
1471 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_fold() local
1546 uint16_t props=UTRIE2_GET16(&ucase_props_singleton.trie, c); ucase_toFullFolding() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dubidi_props.cpp135 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getClass() local
136 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass()
141 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isMirrored() local
142 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored()
146 getMirror(UChar32 c, uint16_t props) { in getMirror() argument
147 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror()
179 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getMirror() local
180 return getMirror(c, props); in ubidi_getMirror()
185 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isBidiControl() local
186 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIF in ubidi_isBidiControl()
191 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_isJoinControl() local
197 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getJoiningType() local
220 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracketType() local
226 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracket() local
[all...]
H A Dubidi_props.h119 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
120 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
123 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
125 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIF
[all...]
/third_party/icu/tools/unicode/c/genprops/
H A Dcasepropsbuilder.cpp243 props(otherProps), in ExcProps()
247 UniProps props; member
393 CasePropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument
397 UChar32 start=props.start; in setProps()
398 UChar32 end=props.end; in setProps()
405 if(props.binProps[UCHAR_LOWERCASE]) { in setProps()
407 } else if(props.binProps[UCHAR_UPPERCASE]) { in setProps()
409 } else if(props.getIntProp(UCHAR_GENERAL_CATEGORY)==U_TITLECASE_LETTER) { in setProps()
418 if(props.suc>=0) { in setProps()
422 delta=props in setProps()
[all...]
/third_party/vulkan-loader/tests/
H A Dloader_phys_dev_inst_ext_tests.cpp44 void FillInRandomDeviceProps(VkPhysicalDeviceProperties& props, uint32_t api_vers, uint32_t vendor, uint32_t driver_vers) { in FillInRandomDeviceProps() argument
45 props.apiVersion = api_vers; in FillInRandomDeviceProps()
46 props.driverVersion = driver_vers; in FillInRandomDeviceProps()
47 props.vendorID = vendor; in FillInRandomDeviceProps()
48 props.deviceID = (static_cast<uint32_t>(rand()) >> 4) + (static_cast<uint32_t>(rand()) << 2); in FillInRandomDeviceProps()
49 props.deviceType = static_cast<VkPhysicalDeviceType>(rand() % 5); in FillInRandomDeviceProps()
51 props.pipelineCacheUUID[idx] = static_cast<uint8_t>(rand() % 255); in FillInRandomDeviceProps()
106 VkPhysicalDeviceProperties props{}; in TEST()
107 instance->vkGetPhysicalDeviceProperties(physical_device, &props); in TEST()
112 ASSERT_EQ(props in TEST()
719 FillInRandomFormatProperties(std::vector<VkFormatProperties>& props) FillInRandomFormatProperties() argument
1007 FillInRandomImageFormatData(VkImageFormatProperties& props) FillInRandomImageFormatData() argument
1429 FillInRandomMemoryData(VkPhysicalDeviceMemoryProperties& props) FillInRandomMemoryData() argument
1717 FillInRandomQueueFamilyData(std::vector<MockQueueFamilyProperties>& props) FillInRandomQueueFamilyData() argument
2071 FillInRandomSparseImageFormatData(std::vector<VkSparseImageFormatProperties>& props) FillInRandomSparseImageFormatData() argument
2508 FillInRandomExtMemoryData(VkExternalMemoryProperties& props) FillInRandomExtMemoryData() argument
2771 FillInRandomExtSemData(VkExternalSemaphoreProperties& props) FillInRandomExtSemData() argument
3031 FillInRandomExtFenceData(VkExternalFenceProperties& props) FillInRandomExtFenceData() argument
3290 FillInRandomSurfaceCapsData(VkSurfaceCapabilitiesKHR& props) FillInRandomSurfaceCapsData() argument
3518 FillInRandomSurfaceFormatsData(std::vector<VkSurfaceFormatKHR>& props) FillInRandomSurfaceFormatsData() argument
3749 FillInRandomDisplayPropData(std::vector<VkDisplayPropertiesKHR>& props) FillInRandomDisplayPropData() argument
3948 FillInRandomDisplayPlanePropData(std::vector<VkDisplayPlanePropertiesKHR>& props) FillInRandomDisplayPlanePropData() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/option/
H A Doption_paint_method.cpp39 auto props = AceType::DynamicCast<OptionPaintProperty>(paintWrapper->GetPaintProperty()); in PaintCustomDivider() local
40 CHECK_NULL_VOID(props); in PaintCustomDivider()
41 auto dividerWidth = static_cast<float>(props->GetDividerValue().strokeWidth.ConvertToPx()); in PaintCustomDivider()
42 auto startMargin = static_cast<float>(props->GetDividerValue().startMargin.ConvertToPx()); in PaintCustomDivider()
43 auto endMargin = static_cast<float>(props->GetDividerValue().endMargin.ConvertToPx()); in PaintCustomDivider()
61 auto dividerRtl = static_cast<float>(props->GetDividerValue().isRtl); in PaintCustomDivider()
74 auto props = DynamicCast<OptionPaintProperty>(paintWrapper->GetPaintProperty()); in PaintDivider() local
75 CHECK_NULL_VOID(props); in PaintDivider()
77 bool needDivider = props->GetNeedDivider().value_or(true); in PaintDivider()
78 bool press = props in PaintDivider()
[all...]
/kernel/linux/linux-5.10/drivers/video/backlight/
H A Dtosa_bl.c53 struct backlight_properties *props = &dev->props; in tosa_bl_update_status() local
55 int power = max(props->power, props->fb_blank); in tosa_bl_update_status()
56 int brightness = props->brightness; in tosa_bl_update_status()
68 struct backlight_properties *props = &dev->props; in tosa_bl_get_brightness() local
70 return props->brightness; in tosa_bl_get_brightness()
81 struct backlight_properties props; in tosa_bl_probe() local
101 memset(&props, in tosa_bl_probe()
[all...]
H A Dbacklight.c120 bd->props.state &= ~BL_CORE_FBBLANK; in fb_notifier_callback()
121 bd->props.fb_blank = FB_BLANK_UNBLANK; in fb_notifier_callback()
127 bd->props.state |= BL_CORE_FBBLANK; in fb_notifier_callback()
128 bd->props.fb_blank = fb_blank; in fb_notifier_callback()
186 return sprintf(buf, "%d\n", bd->props.power); in bl_power_show()
204 if (bd->props.power != power) { in bl_power_store()
205 old_power = bd->props.power; in bl_power_store()
206 bd->props.power = power; in bl_power_store()
209 bd->props.power = old_power; in bl_power_store()
227 return sprintf(buf, "%d\n", bd->props in brightness_show()
393 backlight_device_register(const char *name, struct device *parent, void *devdata, const struct backlight_ops *ops, const struct backlight_properties *props) backlight_device_register() argument
602 devm_backlight_device_register(struct device *dev, const char *name, struct device *parent, void *devdata, const struct backlight_ops *ops, const struct backlight_properties *props) devm_backlight_device_register() argument
[all...]
/third_party/skia/src/core/
H A DSkSpecialSurface.cpp19 SkSpecialSurface_Base(const SkIRect& subset, const SkSurfaceProps& props) in SkSpecialSurface_Base() argument
20 : INHERITED(subset, props) in SkSpecialSurface_Base()
45 const SkSurfaceProps& props) in SkSpecialSurface()
46 : fProps(props.flags(), kUnknown_SkPixelGeometry) in SkSpecialSurface()
70 const SkSurfaceProps& props) in SkSpecialSurface_Raster()
71 : INHERITED(subset, props) { in SkSpecialSurface_Raster()
76 fCanvas = std::make_unique<SkCanvas>(fBitmap, this->props()); in SkSpecialSurface_Raster()
86 return SkSpecialImage::MakeFromRaster(this->subset(), fBitmap, this->props());
96 const SkSurfaceProps& props) { in MakeFromBitmap()
100 return sk_make_sp<SkSpecialSurface_Raster>(bm.info(), sk_ref_sp(bm.pixelRef()), subset, props); in MakeFromBitmap()
44 SkSpecialSurface(const SkIRect& subset, const SkSurfaceProps& props) SkSpecialSurface() argument
67 SkSpecialSurface_Raster(const SkImageInfo& info, sk_sp<SkPixelRef> pr, const SkIRect& subset, const SkSurfaceProps& props) SkSpecialSurface_Raster() argument
95 MakeFromBitmap(const SkIRect& subset, SkBitmap& bm, const SkSurfaceProps& props) MakeFromBitmap() argument
103 MakeRaster(const SkImageInfo& info, const SkSurfaceProps& props) MakeRaster() argument
158 MakeRenderTarget(GrRecordingContext* rContext, const SkImageInfo& ii, const SkSurfaceProps& props) MakeRenderTarget() argument
[all...]
/third_party/lzma/CPP/7zip/Compress/
H A DLzma2Decoder.cpp99 CLzma2DecMtProps props; in Code() local
100 Lzma2DecMtProps_Init(&props); in Code()
102 props.inBufSize_ST = _inBufSize; in Code()
103 props.outStep_ST = _outStep; in Code()
107 props.numThreads = 1; in Code()
119 props.outBlockMax = expectedBlockSize; in Code()
120 props.inBlockMax = inBlockMax; in Code()
121 const size_t kOverheadSize = props.inBufSize_MT + (1 << 16); in Code()
122 const UInt64 okThreads = useLimit / (props.outBlockMax + props in Code()
217 CLzma2DecMtProps props; SetOutStreamSize() local
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/
H A Dusb-urb.c142 if ((i = usb_allocate_stream_buffers(stream,stream->props.count, in usb_bulk_urb_init()
143 stream->props.u.bulk.buffersize)) < 0) in usb_bulk_urb_init()
147 for (i = 0; i < stream->props.count; i++) { in usb_bulk_urb_init()
156 usb_rcvbulkpipe(stream->udev,stream->props.endpoint), in usb_bulk_urb_init()
158 stream->props.u.bulk.buffersize, in usb_bulk_urb_init()
172 if ((i = usb_allocate_stream_buffers(stream,stream->props.count, in usb_isoc_urb_init()
173 stream->props.u.isoc.framesize*stream->props.u.isoc.framesperurb)) < 0) in usb_isoc_urb_init()
177 for (i = 0; i < stream->props.count; i++) { in usb_isoc_urb_init()
181 stream->urb_list[i] = usb_alloc_urb(stream->props in usb_isoc_urb_init()
213 usb_urb_init(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_init() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/
H A Dusb-urb.c142 if ((i = usb_allocate_stream_buffers(stream,stream->props.count, in usb_bulk_urb_init()
143 stream->props.u.bulk.buffersize)) < 0) in usb_bulk_urb_init()
147 for (i = 0; i < stream->props.count; i++) { in usb_bulk_urb_init()
156 usb_rcvbulkpipe(stream->udev,stream->props.endpoint), in usb_bulk_urb_init()
158 stream->props.u.bulk.buffersize, in usb_bulk_urb_init()
172 if ((i = usb_allocate_stream_buffers(stream,stream->props.count, in usb_isoc_urb_init()
173 stream->props.u.isoc.framesize*stream->props.u.isoc.framesperurb)) < 0) in usb_isoc_urb_init()
177 for (i = 0; i < stream->props.count; i++) { in usb_isoc_urb_init()
181 stream->urb_list[i] = usb_alloc_urb(stream->props in usb_isoc_urb_init()
213 usb_urb_init(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_init() argument
[all...]
/third_party/libdrm/tests/modeprint/
H A Dmodeprint.c82 static int printProperty(int fd, drmModeResPtr res, drmModePropertyPtr props, uint64_t value) in printProperty() argument
87 printf("Property: %s\n", props->name); in printProperty()
88 printf("\tid : %i\n", props->prop_id); in printProperty()
89 printf("\tflags : %i\n", props->flags); in printProperty()
90 printf("\tcount_values : %d\n", props->count_values); in printProperty()
93 if (props->count_values) { in printProperty()
95 for (j = 0; j < props->count_values; j++) in printProperty()
96 printf(" %" PRIu64, props->values[j]); in printProperty()
101 printf("\tcount_enums : %d\n", props->count_enums); in printProperty()
103 if (props in printProperty()
135 drmModePropertyPtr props; printConnector() local
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dbacklight.h282 * @props: Backlight properties
284 struct backlight_properties props; member
368 bd->props.power = FB_BLANK_UNBLANK; in backlight_enable()
369 bd->props.fb_blank = FB_BLANK_UNBLANK; in backlight_enable()
370 bd->props.state &= ~BL_CORE_FBBLANK; in backlight_enable()
384 bd->props.power = FB_BLANK_POWERDOWN; in backlight_disable()
385 bd->props.fb_blank = FB_BLANK_POWERDOWN; in backlight_disable()
386 bd->props.state |= BL_CORE_FBBLANK; in backlight_disable()
405 return bd->props.power != FB_BLANK_UNBLANK || in backlight_is_blank()
406 bd->props in backlight_is_blank()
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dbacklight.h282 * @props: Backlight properties
284 struct backlight_properties props; member
368 bd->props.power = FB_BLANK_UNBLANK; in backlight_enable()
369 bd->props.fb_blank = FB_BLANK_UNBLANK; in backlight_enable()
370 bd->props.state &= ~BL_CORE_FBBLANK; in backlight_enable()
384 bd->props.power = FB_BLANK_POWERDOWN; in backlight_disable()
385 bd->props.fb_blank = FB_BLANK_POWERDOWN; in backlight_disable()
386 bd->props.state |= BL_CORE_FBBLANK; in backlight_disable()
405 return bd->props.power != FB_BLANK_UNBLANK || in backlight_is_blank()
406 bd->props in backlight_is_blank()
[all...]
/kernel/linux/linux-6.6/drivers/video/backlight/
H A Dbacklight.c120 bd->props.state &= ~BL_CORE_FBBLANK; in fb_notifier_callback()
121 bd->props.fb_blank = FB_BLANK_UNBLANK; in fb_notifier_callback()
127 bd->props.state |= BL_CORE_FBBLANK; in fb_notifier_callback()
128 bd->props.fb_blank = fb_blank; in fb_notifier_callback()
186 return sprintf(buf, "%d\n", bd->props.power); in bl_power_show()
204 if (bd->props.power != power) { in bl_power_store()
205 old_power = bd->props.power; in bl_power_store()
206 bd->props.power = power; in bl_power_store()
209 bd->props.power = old_power; in bl_power_store()
227 return sprintf(buf, "%d\n", bd->props in brightness_show()
405 backlight_device_register(const char *name, struct device *parent, void *devdata, const struct backlight_ops *ops, const struct backlight_properties *props) backlight_device_register() argument
614 devm_backlight_device_register(struct device *dev, const char *name, struct device *parent, void *devdata, const struct backlight_ops *ops, const struct backlight_properties *props) devm_backlight_device_register() argument
[all...]
H A Daat2870_bl.c35 val /= bd->props.max_brightness; in aat2870_brightness()
65 if ((brightness < 0) || (bd->props.max_brightness < brightness)) { in aat2870_bl_update_status()
71 bd->props.brightness, bd->props.power, bd->props.state); in aat2870_bl_update_status()
109 struct backlight_properties props; in aat2870_bl_probe() local
132 memset(&props, 0, sizeof(struct backlight_properties)); in aat2870_bl_probe()
134 props.type = BACKLIGHT_RAW; in aat2870_bl_probe()
137 &props); in aat2870_bl_probe()
161 bd->props in aat2870_bl_probe()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DunusedLocalsAndObjectSpread2.js2 declare let props: any;
7 } = props;
14 } = props;
34 var children = props.children, // here!
35 _a = props.active, // here!
36 rest = __rest(props, ["children", "active"]);
38 var children = props.children, _a = props.active, rest = __rest(props, ["children", "active"]);
/third_party/ffmpeg/libavfilter/
H A Dvaapi_vpp.c268 static void vaapi_vpp_fill_colour_standard(VAAPIColourProperties *props, in vaapi_vpp_fill_colour_standard() argument
283 props->va_color_standard = VAProcColorStandardExplicit; in vaapi_vpp_fill_colour_standard()
296 worst_score = 4 * (props->colorspace != AVCOL_SPC_UNSPECIFIED && in vaapi_vpp_fill_colour_standard()
297 props->colorspace != AVCOL_SPC_RGB) + in vaapi_vpp_fill_colour_standard()
298 2 * (props->color_trc != AVCOL_TRC_UNSPECIFIED) + in vaapi_vpp_fill_colour_standard()
299 (props->color_primaries != AVCOL_PRI_UNSPECIFIED); in vaapi_vpp_fill_colour_standard()
304 props->va_color_standard = VAProcColorStandardNone; in vaapi_vpp_fill_colour_standard()
315 if (props->colorspace != AVCOL_SPC_UNSPECIFIED && in vaapi_vpp_fill_colour_standard()
316 props->colorspace != AVCOL_SPC_RGB) in vaapi_vpp_fill_colour_standard()
317 score += 4 * (props in vaapi_vpp_fill_colour_standard()
334 vaapi_vpp_fill_chroma_sample_location(VAAPIColourProperties *props) vaapi_vpp_fill_chroma_sample_location() argument
369 vaapi_vpp_fill_colour_range(VAAPIColourProperties *props) vaapi_vpp_fill_colour_range() argument
388 vaapi_vpp_fill_colour_properties(AVFilterContext *avctx, VAAPIColourProperties *props, VAProcColorStandardType *vacs, int nb_vacs) vaapi_vpp_fill_colour_properties() argument
[all...]
/third_party/icu/icu4c/source/common/
H A Dubidi_props.h119 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
120 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
123 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
125 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIF
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/dialog/
H A Ddialog_test_ng.cpp532 * @tc.steps: step2. call CreateDialogNode function with different props. in HWTEST_F()
536 DialogProperties props; in HWTEST_F() local
537 props.type = types[i]; in HWTEST_F()
539 props.title = "dialog test"; in HWTEST_F()
540 props.content = "dialog content test"; in HWTEST_F()
541 props.customStyle = true; in HWTEST_F()
542 props.sheetsInfo = sheetItems; in HWTEST_F()
543 props.isMenu = true; in HWTEST_F()
544 props.buttons = btnItems; in HWTEST_F()
546 props in HWTEST_F()
889 DialogProperties props; HWTEST_F() local
934 DialogProperties props; HWTEST_F() local
961 DialogProperties props; HWTEST_F() local
1009 DialogProperties props; HWTEST_F() local
1052 DialogProperties props; HWTEST_F() local
1100 DialogProperties props; HWTEST_F() local
1166 DialogProperties props; HWTEST_F() local
1232 DialogProperties props; HWTEST_F() local
1271 DialogProperties props; HWTEST_F() local
1347 DialogProperties props; HWTEST_F() local
1891 DialogProperties props; HWTEST_F() local
1953 DialogProperties props; HWTEST_F() local
2006 DialogProperties props; HWTEST_F() local
2363 DialogProperties props; HWTEST_F() local
[all...]
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/
H A Dstate_dump.c272 base_addr = sds->props[SP_SYNC_OBJ_BASE_ADDR] + in hl_state_dump_read_sync_objects()
273 sds->props[SP_NEXT_SYNC_OBJ_ADDR] * index; in hl_state_dump_read_sync_objects()
275 sync_objects = vmalloc(sds->props[SP_SYNC_OBJ_AMOUNT] * sizeof(u32)); in hl_state_dump_read_sync_objects()
279 for (i = 0; i < sds->props[SP_SYNC_OBJ_AMOUNT]; ++i) in hl_state_dump_read_sync_objects()
332 for (i = 0; i < sds->props[SP_SYNC_OBJ_AMOUNT]; ++i) { in hl_state_dump_print_syncs_single_block()
339 sync_object_addr = sds->props[SP_SYNC_OBJ_BASE_ADDR] + in hl_state_dump_print_syncs_single_block()
340 sds->props[SP_NEXT_SYNC_OBJ_ADDR] * index + in hl_state_dump_print_syncs_single_block()
423 for (index = 0; index < sds->props[SP_NUM_CORES]; ++index) { in hl_state_dump_print_syncs()
456 monitors = vmalloc(sds->props[SP_MONITORS_AMOUNT] * in hl_state_dump_alloc_read_sm_block_monitors()
461 base_addr = sds->props[SP_NEXT_SYNC_OBJ_ADD in hl_state_dump_alloc_read_sm_block_monitors()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/particle/
H A Dparticle_pattern.cpp67 auto props = GetEmitterProperty(); in ToJsonValue() local
68 if (props.size() > 0) { in ToJsonValue()
70 for (size_t i = 0; i < props.size(); i++) { in ToJsonValue()
72 object->Put("index", std::to_string(props[i].index).c_str()); in ToJsonValue()
73 if (props[i].emitRate.has_value()) { in ToJsonValue()
74 object->Put("emitRate", std::to_string(*props[i].emitRate).c_str()); in ToJsonValue()
76 if (props[i].position.has_value()) { in ToJsonValue()
78 positionObj->Put("x", std::to_string(props[i].position->x).c_str()); in ToJsonValue()
79 positionObj->Put("y", std::to_string(props[i].position->y).c_str()); in ToJsonValue()
82 if (props[ in ToJsonValue()
145 updateEmitterPosition(std::vector<EmitterProperty>& props) updateEmitterPosition() argument
[all...]

Completed in 19 milliseconds

12345678910>>...64