Searched refs:props (Results 1 - 25 of 69) sorted by relevance

123

/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DTransProperties.cpp85 PropsTy &props = AtProps[Loc]; local
86 props.push_back(Prop);
120 PropsTy &props = findAtLoc->second; local
121 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) {
133 PropsTy &props = I->second; local
134 if (!getPropertyType(props)->isObjCRetainableType())
136 if (hasIvarWithExplicitARCOwnership(props))
140 rewriteProperty(props, atLoc);
146 PropsTy &props, SourceLocatio
145 doPropAction(PropActionKind kind, PropsTy &props, SourceLocation atLoc, bool markAction = true) argument
169 rewriteProperty(PropsTy &props, SourceLocation atLoc) argument
198 removeAssignForDefaultStrong(PropsTy &props, SourceLocation atLoc) const argument
213 rewriteAssign(PropsTy &props, SourceLocation atLoc) const argument
242 maybeAddWeakOrUnsafeUnretainedAttr(PropsTy &props, SourceLocation atLoc) const argument
335 hasGCWeak(PropsTy &props, SourceLocation atLoc) const argument
[all...]
/openbsd-current/sys/dev/pci/drm/i915/selftests/
H A Dintel_scheduler_helpers.c37 saved->timeslice = engine->props.timeslice_duration_ms;
38 saved->preempt_timeout = engine->props.preempt_timeout_ms;
52 engine->props.timeslice_duration_ms = REDUCED_TIMESLICE;
53 engine->props.preempt_timeout_ms = REDUCED_PREEMPT;
57 engine->props.preempt_timeout_ms = 0;
81 engine->props.timeslice_duration_ms = saved->timeslice;
82 engine->props.preempt_timeout_ms = saved->preempt_timeout;
H A Di915_perf.c96 struct perf_open_properties props = { local
107 if (!props.engine)
110 gt = props.engine->gt;
115 props.metrics_set = oa_config->id;
126 if (i915_oa_stream_init(stream, &param, &props)) {
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dbacklight.h35 struct backlight_properties props; member in struct:backlight_device
51 return bd->props.brightness;
77 bd->props.brightness = bd->ops->get_brightness(bd);
83 if (level > bd->props.max_brightness)
85 bd->props.brightness = level;
/openbsd-current/sys/dev/
H A Dmidi_if.h38 int props; member in struct:midi_info
H A Dmidivar.h78 int props; /* midi hw proprieties */ member in struct:midi_softc
/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_crat.c988 struct kfd_mem_properties *props; local
990 list_for_each_entry(props, &dev->mem_props, list) {
991 if (props->heap_type == heap_type
992 && props->flags == flags
993 && props->width == width)
994 return props;
1005 struct kfd_mem_properties *props; local
1043 props = find_subtype_mem(heap_type, flags, width, dev);
1044 if (props) {
1045 props
1074 struct kfd_cache_properties *props; local
1143 struct kfd_iolink_properties *props = NULL, *props2; local
[all...]
H A Dkfd_topology.c1333 struct kfd_iolink_properties *props = NULL, *props2 = NULL; local
1373 props = kfd_alloc_struct(props);
1374 if (!props)
1377 memcpy(props, gpu_link, sizeof(struct kfd_iolink_properties));
1378 props->weight = gpu_link->weight + cpu_link->weight;
1379 props->min_latency = gpu_link->min_latency + cpu_link->min_latency;
1380 props->max_latency = gpu_link->max_latency + cpu_link->max_latency;
1381 props->min_bandwidth = min(gpu_link->min_bandwidth, cpu_link->min_bandwidth);
1382 props
1417 struct kfd_iolink_properties *props = NULL; local
[all...]
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_blend.c276 static const struct drm_prop_enum_list props[] = { local
291 props, ARRAY_SIZE(props),
576 static const struct drm_prop_enum_list props[] = { local
596 for (i = 0; i < ARRAY_SIZE(props); i++) {
599 if (!(BIT(props[i].type) & supported_modes))
602 ret = drm_property_add_enum(prop, props[i].type,
603 props[i].name);
H A Ddrm_property.c147 * @props: enumeration lists with property values
163 const struct drm_prop_enum_list *props,
177 props[i].type,
178 props[i].name);
194 * @props: enumeration lists with property bitflags
195 * @num_props: size of the @props array
211 const struct drm_prop_enum_list *props,
225 if (!(supported_bits & (1ULL << props[i].type)))
229 props[i].type,
230 props[
161 drm_property_create_enum(struct drm_device *dev, u32 flags, const char *name, const struct drm_prop_enum_list *props, int num_values) argument
209 drm_property_create_bitmask(struct drm_device *dev, u32 flags, const char *name, const struct drm_prop_enum_list *props, int num_props, uint64_t supported_bits) argument
[all...]
H A Ddrm_mode_object.c334 if (bd->props.type == BACKLIGHT_FIRMWARE)
337 *val = bd->props.brightness;
345 * having to deal w/ EDID and similar props in atomic paths:
564 connector->backlight_device->props.brightness = prop_value;
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dsysfs_engines.c175 WRITE_ONCE(engine->props.max_busywait_duration_ns, duration);
185 return sysfs_emit(buf, "%lu\n", engine->props.max_busywait_duration_ns);
226 WRITE_ONCE(engine->props.timeslice_duration_ms, duration);
239 return sysfs_emit(buf, "%lu\n", engine->props.timeslice_duration_ms);
281 WRITE_ONCE(engine->props.stop_timeout_ms, duration);
290 return sysfs_emit(buf, "%lu\n", engine->props.stop_timeout_ms);
332 WRITE_ONCE(engine->props.preempt_timeout_ms, timeout);
346 return sysfs_emit(buf, "%lu\n", engine->props.preempt_timeout_ms);
402 return sysfs_emit(buf, "%lu\n", engine->props.heartbeat_interval_ms);
H A Dintel_engine_heartbeat.c28 delay = READ_ONCE(engine->props.heartbeat_interval_ms);
50 longer = READ_ONCE(engine->props.preempt_timeout_ms) * 2;
165 long delay = READ_ONCE(engine->props.heartbeat_interval_ms);
301 old = xchg(&engine->props.heartbeat_interval_ms, delay);
321 delay < 2 * engine->props.preempt_timeout_ms) {
336 if (delay != engine->props.heartbeat_interval_ms) {
H A Dselftest_engine_heartbeat.c395 engine->props.heartbeat_interval_ms = 0;
405 engine->props.heartbeat_interval_ms =
411 engine->props.heartbeat_interval_ms = 0;
427 engine->props.heartbeat_interval_ms =
/openbsd-current/gnu/llvm/libcxx/utils/
H A Dgenerate_extended_grapheme_cluster_table.py239 ranges: list[PropertyRange], props: list[str]
241 assert len(props) < 16
250 e = Entry(range.lower, range.upper - range.lower, props.index(range.prop))
/openbsd-current/sys/dev/pci/drm/include/drm/
H A Ddrm_property.h244 /* instanceof for props.. handles extended type vs original types: */
255 const struct drm_prop_enum_list *props,
259 const struct drm_prop_enum_list *props,
/openbsd-current/gnu/llvm/llvm/utils/llvm-locstats/
H A Dllvm-locstats.py124 props = dict(boxstyle='round', facecolor='wheat', alpha=0.5)
127 verticalalignment='top', bbox=props)
157 props = dict(boxstyle='round', facecolor='wheat', alpha=0.5)
162 verticalalignment='top', bbox=props)
168 verticalalignment='top', bbox=props)
/openbsd-current/sys/dev/pci/drm/i915/
H A Di915_perf.c3310 * i915_oa_stream_init - validate combined props for OA stream and init
3313 * @props: The property state that configures stream (individually validated)
3329 struct perf_open_properties *props)
3337 if (!props->engine) {
3342 gt = props->engine->gt;
3343 g = props->engine->oa_group;
3356 if (!(props->sample_flags & SAMPLE_OA_REPORT) &&
3380 if (!props->oa_format) {
3386 stream->engine = props->engine;
3391 stream->oa_buffer.format = &perf->oa_formats[props
3327 i915_oa_stream_init(struct i915_perf_stream *stream, struct drm_i915_perf_open_param *param, struct perf_open_properties *props) argument
3920 i915_perf_open_ioctl_locked(struct i915_perf *perf, struct drm_i915_perf_open_param *param, struct perf_open_properties *props, struct drm_file *file) argument
4097 read_properties_unlocked(struct i915_perf *perf, u64 __user *uprops, u32 n_props, struct perf_open_properties *props) argument
4354 struct perf_open_properties props; local
[all...]
H A Di915_driver.c2002 dp->max = bd->props.max_brightness;
2011 if (bd == NULL || dp->curval > bd->props.max_brightness)
2016 bd->props.brightness = dp->curval;
2172 dp.curval = bd->props.brightness;
2559 0, "Backlight", 0, bd->props.max_brightness);
2561 connector->backlight_property, bd->props.brightness);
2583 struct backlight_properties props; local
2586 memset(&props, 0, sizeof(props));
2587 props
[all...]
/openbsd-current/sys/dev/pci/drm/apple/
H A Ddcp_backlight.c220 struct backlight_properties props = { local
225 props.max_brightness = min(dcp->brightness.maximum, MAX_BRIGHTNESS_PART2 - 1);
228 &dcp_backlight_ops, &props);
H A Diomfb.h162 struct frame_sync_props props; member in struct:dcp_set_frame_sync_props_req
168 struct frame_sync_props props; member in struct:dcp_set_frame_sync_props_resp
H A Dapldrm.c152 dp->max = bd->props.max_brightness;
153 dp->curval = bd->props.brightness;
163 bd->props.brightness = dp->curval;
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_backlight.c328 panel->backlight.device->props.brightness =
331 panel->backlight.device->props.max_brightness);
467 panel->backlight.device->props.power = FB_BLANK_POWERDOWN;
779 panel->backlight.device->props.brightness =
782 panel->backlight.device->props.max_brightness);
788 panel->backlight.device->props.power = FB_BLANK_UNBLANK;
873 bd->props.brightness, bd->props.max_brightness);
874 intel_panel_set_backlight(connector->base.state, bd->props.brightness,
875 bd->props
929 struct backlight_properties props; local
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/B/t/
H A Dshowlex.t80 my ($self,%props)=@_;
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_mes.c941 struct amdgpu_mes_queue_properties *props)
943 props->queue_type = ring->funcs->type;
944 props->hqd_base_gpu_addr = ring->gpu_addr;
945 props->rptr_gpu_addr = ring->rptr_gpu_addr;
946 props->wptr_gpu_addr = ring->wptr_gpu_addr;
947 props->wptr_mc_addr =
949 props->queue_size = ring->ring_size;
950 props->eop_gpu_addr = ring->eop_gpu_addr;
951 props->hqd_pipe_priority = AMDGPU_GFX_PIPE_PRIO_NORMAL;
952 props
939 amdgpu_mes_ring_to_queue_props(struct amdgpu_device *adev, struct amdgpu_ring *ring, struct amdgpu_mes_queue_properties *props) argument
[all...]

Completed in 573 milliseconds

123