/Linux-v4.19/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-v4.19/kernel/ |
D | resource.c | 587 struct resource_constraint *constraint) in __find_resource() argument 610 resource_clip(&tmp, constraint->min, constraint->max); in __find_resource() 614 avail.start = ALIGN(tmp.start, constraint->align); in __find_resource() 619 alloc.start = constraint->alignf(constraint->alignf_data, &avail, in __find_resource() 620 size, constraint->align); in __find_resource() 645 struct resource_constraint *constraint) in find_resource() argument 647 return __find_resource(root, NULL, new, size, constraint); in find_resource() 662 struct resource_constraint *constraint) in reallocate_resource() argument 670 if ((err = __find_resource(root, old, &new, newsize, constraint))) in reallocate_resource() 721 struct resource_constraint constraint; in allocate_resource() local [all …]
|
/Linux-v4.19/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 | arizona.c | 1641 dai_priv->constraint.mask = ARIZONA_RATE_MASK; in arizona_startup() 1643 dai_priv->constraint.mask = ARIZONA_44K1_RATE_MASK; in arizona_startup() 1645 dai_priv->constraint.mask = ARIZONA_48K_RATE_MASK; in arizona_startup() 1649 &dai_priv->constraint); in arizona_startup() 2049 dai_priv->constraint = arizona_constraint; in arizona_init_dai()
|
D | arizona.h | 76 struct snd_pcm_hw_constraint_list constraint; member
|
/Linux-v4.19/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-v4.19/drivers/acpi/ |
D | sleep.c | 779 struct lpi_constraints *constraint; in lpi_device_get_constraints() local 809 constraint = &lpi_constraints_table[lpi_constraints_table_size]; in lpi_device_get_constraints() 811 status = acpi_get_handle(NULL, info.name, &constraint->handle); in lpi_device_get_constraints() 818 constraint->min_dstate = -1; in lpi_device_get_constraints() 845 constraint->min_dstate = dev_info.min_dstate; in lpi_device_get_constraints() 850 if (constraint->min_dstate < 0) { in lpi_device_get_constraints()
|
/Linux-v4.19/mm/ |
D | oom_kill.c | 1009 enum oom_constraint constraint) in check_panic_on_oom() argument 1019 if (constraint != CONSTRAINT_NONE) in check_panic_on_oom() 1056 enum oom_constraint constraint = CONSTRAINT_NONE; in out_of_memory() local 1092 constraint = constrained_alloc(oc); in out_of_memory() 1093 if (constraint != CONSTRAINT_MEMORY_POLICY) in out_of_memory() 1095 check_panic_on_oom(oc, constraint); in out_of_memory()
|
/Linux-v4.19/Documentation/power/powercap/ |
D | powercap.txt | 153 max_energy_range_uj) and constraint attributes (constraint_*) allowing controls 168 each zone there are 2 attributes representing the constraint names, 2 power 170 constraint_j_* attributes correspond to the jth constraint (j = 0,1). 206 constraint_X_name (ro): An optional name of the constraint
|
/Linux-v4.19/sound/soc/sh/rcar/ |
D | core.c | 887 struct snd_pcm_hw_constraint_list *constraint = &rdai->constraint; in rsnd_soc_dai_startup() local 899 constraint->list = rsnd_soc_hw_channels_list; in rsnd_soc_dai_startup() 900 constraint->count = 0; in rsnd_soc_dai_startup() 901 constraint->mask = 0; in rsnd_soc_dai_startup() 906 constraint->count = i + 1; in rsnd_soc_dai_startup() 912 SNDRV_PCM_HW_PARAM_CHANNELS, constraint); in rsnd_soc_dai_startup()
|
/Linux-v4.19/security/selinux/ss/ |
D | services.c | 626 struct constraint_node *constraint; in context_struct_compute_av() local 692 constraint = tclass_datum->constraints; in context_struct_compute_av() 693 while (constraint) { in context_struct_compute_av() 694 if ((constraint->permissions & (avd->allowed)) && in context_struct_compute_av() 696 constraint->expr)) { in context_struct_compute_av() 697 avd->allowed &= ~(constraint->permissions); in context_struct_compute_av() 699 constraint = constraint->next; in context_struct_compute_av() 768 struct constraint_node *constraint; in security_compute_validatetrans() local 816 constraint = tclass_datum->validatetrans; in security_compute_validatetrans() 817 while (constraint) { in security_compute_validatetrans() [all …]
|
D | policydb.c | 652 struct constraint_node *constraint, *ctemp; in cls_destroy() local 660 constraint = cladatum->constraints; in cls_destroy() 661 while (constraint) { in cls_destroy() 662 e = constraint->expr; in cls_destroy() 668 ctemp = constraint; in cls_destroy() 669 constraint = constraint->next; in cls_destroy() 673 constraint = cladatum->validatetrans; in cls_destroy() 674 while (constraint) { in cls_destroy() 675 e = constraint->expr; in cls_destroy() 681 ctemp = constraint; in cls_destroy() [all …]
|
/Linux-v4.19/Documentation/arm/ |
D | Porting | 31 and eventually executed. The following constraint must be valid: 44 Virtual address of the initial RAM disk. The following constraint
|
/Linux-v4.19/Documentation/blockdev/drbd/ |
D | drbd-connection-state-overview.dot | 70 WFBitMapT -> WFSyncUUID [minlen=0.1,constraint=false]
|
/Linux-v4.19/Documentation/media/uapi/v4l/ |
D | vidioc-g-selection.rst | 125 Size adjustments with constraint flags. 127 Behaviour of rectangle adjustment for different constraint flags.
|
D | selection-api-configuration.rst | 20 :ref:`constraint flags <v4l2-selection-flags>`. 63 :ref:`constraint flags <v4l2-selection-flags>`.
|
/Linux-v4.19/Documentation/devicetree/bindings/sram/ |
D | sram.txt | 46 constraint that code wil be run from the region and
|
/Linux-v4.19/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-v4.19/Documentation/devicetree/bindings/mtd/ |
D | nand.txt | 42 size constraint into account.
|
/Linux-v4.19/drivers/gpu/drm/omapdrm/dss/ |
D | Kconfig | 116 If this is set to 0, there's no extra constraint on the
|
/Linux-v4.19/drivers/video/fbdev/omap2/omapfb/dss/ |
D | Kconfig | 114 If this is set to 0, there's no extra constraint on the
|
/Linux-v4.19/tools/memory-model/ |
D | linux-kernel.cat | 124 * a single constraint on an "executes-before" relation, xb:
|
/Linux-v4.19/Documentation/driver-api/ |
D | regulator.rst | 120 containing constraint and supply information.
|
/Linux-v4.19/Documentation/power/regulator/ |
D | overview.txt | 124 If the regulator request passes all the constraint tests
|