/Linux-v5.4/arch/arm64/include/asm/ |
D | atomic_ll_sc.h | 38 #define ATOMIC_OP(op, asm_op, constraint) \ argument 53 : __stringify(constraint) "r" (i)); \ 56 #define ATOMIC_OP_RETURN(name, mb, acq, rel, cl, op, asm_op, constraint)\ argument 72 : __stringify(constraint) "r" (i) \ 78 #define ATOMIC_FETCH_OP(name, mb, acq, rel, cl, op, asm_op, constraint) \ argument 94 : __stringify(constraint) "r" (i) \ 137 #define ATOMIC64_OP(op, asm_op, constraint) \ in ATOMIC_OPS() argument 152 : __stringify(constraint) "r" (i)); \ in ATOMIC_OPS() 155 #define ATOMIC64_OP_RETURN(name, mb, acq, rel, cl, op, asm_op, constraint)\ argument 171 : __stringify(constraint) "r" (i) \ [all …]
|
/Linux-v5.4/drivers/net/wireless/marvell/mwifiex/ |
D | 11h.c | 43 struct mwifiex_ie_types_local_pwr_constraint *constraint; in mwifiex_11h_process_infra_join() local 61 constraint = (struct mwifiex_ie_types_local_pwr_constraint *)*buffer; in mwifiex_11h_process_infra_join() 62 constraint->header.type = cpu_to_le16(WLAN_EID_PWR_CONSTRAINT); in mwifiex_11h_process_infra_join() 63 constraint->header.len = cpu_to_le16(2); in mwifiex_11h_process_infra_join() 64 constraint->chan = bss_desc->channel; in mwifiex_11h_process_infra_join() 65 constraint->constraint = bss_desc->local_constraint; in mwifiex_11h_process_infra_join() 66 *buffer += sizeof(*constraint); in mwifiex_11h_process_infra_join()
|
/Linux-v5.4/kernel/ |
D | resource.c | 595 struct resource_constraint *constraint) in __find_resource() argument 618 resource_clip(&tmp, constraint->min, constraint->max); in __find_resource() 622 avail.start = ALIGN(tmp.start, constraint->align); in __find_resource() 627 alloc.start = constraint->alignf(constraint->alignf_data, &avail, in __find_resource() 628 size, constraint->align); in __find_resource() 653 struct resource_constraint *constraint) in find_resource() argument 655 return __find_resource(root, NULL, new, size, constraint); in find_resource() 670 struct resource_constraint *constraint) in reallocate_resource() argument 678 if ((err = __find_resource(root, old, &new, newsize, constraint))) in reallocate_resource() 729 struct resource_constraint constraint; in allocate_resource() local [all …]
|
/Linux-v5.4/sound/soc/codecs/ |
D | ak4613.c | 94 struct snd_pcm_hw_constraint_list constraint; member 270 struct snd_pcm_hw_constraint_list *constraint = &priv->constraint; in ak4613_hw_constraints() local 274 constraint->list = ak4613_rates; in ak4613_hw_constraints() 275 constraint->mask = 0; in ak4613_hw_constraints() 276 constraint->count = 0; in ak4613_hw_constraints() 294 constraint->count = i + 1; in ak4613_hw_constraints() 298 SNDRV_PCM_HW_PARAM_RATE, constraint); in ak4613_hw_constraints()
|
D | madera.c | 2927 dai_priv->constraint.mask = MADERA_384K_RATE_MASK; in madera_startup() 2929 dai_priv->constraint.mask = MADERA_384K_44K1_RATE_MASK; in madera_startup() 2931 dai_priv->constraint.mask = MADERA_384K_48K_RATE_MASK; in madera_startup() 2935 dai_priv->constraint.mask = MADERA_192K_RATE_MASK; in madera_startup() 2937 dai_priv->constraint.mask = MADERA_192K_44K1_RATE_MASK; in madera_startup() 2939 dai_priv->constraint.mask = MADERA_192K_48K_RATE_MASK; in madera_startup() 2945 &dai_priv->constraint); in madera_startup() 3353 dai_priv->constraint = madera_constraint; in madera_init_dai()
|
D | arizona.c | 1638 dai_priv->constraint.mask = ARIZONA_RATE_MASK; in arizona_startup() 1640 dai_priv->constraint.mask = ARIZONA_44K1_RATE_MASK; in arizona_startup() 1642 dai_priv->constraint.mask = ARIZONA_48K_RATE_MASK; in arizona_startup() 1646 &dai_priv->constraint); in arizona_startup() 2046 dai_priv->constraint = arizona_constraint; in arizona_init_dai()
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-class-powercap | 92 constraint can have an optional name. Here "X" can have values 110 constraint_X_power_limit_uw to define a power constraint. 119 Maximum allowed power in micro watts for this constraint. 127 Minimum allowed power in micro watts for this constraint. 136 constraint. Here "X" can have values from 0 to max integer. 144 constraint. Here "X" can have values from 0 to max integer.
|
D | sysfs-class-regulator | 156 NOTE: this will return the string 'constraint not defined' if 157 the power domain has no min microvolts constraint defined by 171 NOTE: this will return the string 'constraint not defined' if 172 the power domain has no max microvolts constraint defined by 186 NOTE: this will return the string 'constraint not defined' if 187 the power domain has no min microamps constraint defined by 201 NOTE: this will return the string 'constraint not defined' if 202 the power domain has no max microamps constraint defined by
|
/Linux-v5.4/drivers/acpi/ |
D | sleep.c | 760 struct lpi_constraints *constraint; in lpi_device_get_constraints() local 790 constraint = &lpi_constraints_table[lpi_constraints_table_size]; in lpi_device_get_constraints() 792 status = acpi_get_handle(NULL, info.name, &constraint->handle); in lpi_device_get_constraints() 799 constraint->min_dstate = -1; in lpi_device_get_constraints() 826 constraint->min_dstate = dev_info.min_dstate; in lpi_device_get_constraints() 831 if (constraint->min_dstate < 0) { in lpi_device_get_constraints()
|
/Linux-v5.4/Documentation/power/powercap/ |
D | powercap.rst | 155 max_energy_range_uj) and constraint attributes (constraint_*) allowing controls 172 each zone there are 2 attributes representing the constraint names, 2 power 174 constraint_j_* attributes correspond to the jth constraint (j = 0,1). 221 An optional name of the constraint
|
/Linux-v5.4/include/linux/ |
D | oom.h | 54 enum oom_constraint constraint; member
|
D | intel_rapl.h | 70 struct powercap_zone_constraint *constraint; member
|
/Linux-v5.4/mm/ |
D | oom_kill.c | 444 oom_constraint_text[oc->constraint], in dump_oom_summary() 1009 if (oc->constraint != CONSTRAINT_NONE) in check_panic_on_oom() 1082 oc->constraint = constrained_alloc(oc); in out_of_memory() 1083 if (oc->constraint != CONSTRAINT_MEMORY_POLICY) in out_of_memory()
|
/Linux-v5.4/sound/soc/sh/rcar/ |
D | core.c | 962 struct snd_pcm_hw_constraint_list *constraint = &rdai->constraint; in rsnd_soc_dai_startup() local 973 constraint->list = rsnd_soc_hw_channels_list; in rsnd_soc_dai_startup() 974 constraint->count = 0; in rsnd_soc_dai_startup() 975 constraint->mask = 0; in rsnd_soc_dai_startup() 980 constraint->count = i + 1; in rsnd_soc_dai_startup() 986 SNDRV_PCM_HW_PARAM_CHANNELS, constraint); in rsnd_soc_dai_startup()
|
/Linux-v5.4/Documentation/admin-guide/pm/ |
D | cpuidle.rst | 402 [If there is a wakeup latency constraint coming from the `PM QoS framework 405 latency within the constraint is preselected without consulting the ``hits``, 588 global constraint in the ``PM_QOS_CPU_DMA_LATENCY`` class and through the 594 resume latency constraint for a CPU can be modified by user space by writing a 600 number will be interpreted as a requested PM QoS constraint in microseconds. 602 The requested value is not automatically applied as a new constraint, however, 604 constraint previously requested by someone else. For this reason, the PM QoS 607 (minimum in this particular case) value as the new constraint. 614 request represented by it as a new requested constraint value. Next, the 617 constraint. Thus setting a new requested constraint value will only change the [all …]
|
/Linux-v5.4/security/selinux/ss/ |
D | services.c | 620 struct constraint_node *constraint; in context_struct_compute_av() local 682 constraint = tclass_datum->constraints; in context_struct_compute_av() 683 while (constraint) { in context_struct_compute_av() 684 if ((constraint->permissions & (avd->allowed)) && in context_struct_compute_av() 686 constraint->expr)) { in context_struct_compute_av() 687 avd->allowed &= ~(constraint->permissions); in context_struct_compute_av() 689 constraint = constraint->next; in context_struct_compute_av() 758 struct constraint_node *constraint; in security_compute_validatetrans() local 806 constraint = tclass_datum->validatetrans; in security_compute_validatetrans() 807 while (constraint) { in security_compute_validatetrans() [all …]
|
D | policydb.c | 222 struct constraint_node *constraint, *ctemp; in cls_destroy() local 230 constraint = cladatum->constraints; in cls_destroy() 231 while (constraint) { in cls_destroy() 232 e = constraint->expr; in cls_destroy() 238 ctemp = constraint; in cls_destroy() 239 constraint = constraint->next; in cls_destroy() 243 constraint = cladatum->validatetrans; in cls_destroy() 244 while (constraint) { in cls_destroy() 245 e = constraint->expr; in cls_destroy() 251 ctemp = constraint; in cls_destroy() [all …]
|
/Linux-v5.4/Documentation/arm/ |
D | porting.rst | 35 and eventually executed. The following constraint must be valid: 48 Virtual address of the initial RAM disk. The following constraint
|
/Linux-v5.4/Documentation/admin-guide/blockdev/drbd/ |
D | drbd-connection-state-overview.dot | 70 WFBitMapT -> WFSyncUUID [minlen=0.1,constraint=false]
|
/Linux-v5.4/Documentation/devicetree/bindings/sram/ |
D | sram.txt | 46 constraint that code wil be run from the region and
|
/Linux-v5.4/Documentation/media/uapi/v4l/ |
D | vidioc-g-selection.rst | 132 Size adjustments with constraint flags. 134 Behaviour of rectangle adjustment for different constraint flags.
|
D | selection-api-configuration.rst | 27 :ref:`constraint flags <v4l2-selection-flags>`. 70 :ref:`constraint flags <v4l2-selection-flags>`.
|
/Linux-v5.4/Documentation/sound/designs/ |
D | tracepoints.rst | 156 device, rules of constraint and name of the changed parameter, in order. The 157 field for rules of constraint consists of two sub-fields; index of applied rule
|
/Linux-v5.4/drivers/video/fbdev/omap2/omapfb/dss/ |
D | Kconfig | 95 If this is set to 0, there's no extra constraint on the
|
/Linux-v5.4/drivers/gpu/drm/omapdrm/dss/ |
D | Kconfig | 117 If this is set to 0, there's no extra constraint on the
|