Home
last modified time | relevance | path

Searched refs:allowed (Results 26 – 50 of 527) sorted by relevance

12345678910>>...22

/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt6331.dtsi23 regulator-allowed-modes = <0 1>;
33 regulator-allowed-modes = <0 1>;
43 regulator-allowed-modes = <0 1>;
53 regulator-allowed-modes = <0 1>;
63 regulator-allowed-modes = <0 1>;
73 regulator-allowed-modes = <0 1>;
H A Dmt8195-demo.dts156 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
167 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
178 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
187 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
196 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
205 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
214 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
223 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
H A Dmt8395-genio-1200-evk.dts266 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
276 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
286 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
295 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
303 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
311 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
320 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
328 regulator-allowed-modes = <MT6360_OPMODE_NORMAL
828 regulator-allowed-modes = <0 1 2>;
845 regulator-allowed-modes = <0 1 2>;
H A Dmt6359.dtsi29 regulator-allowed-modes = <0 1 2>;
44 regulator-allowed-modes = <0 1 2>;
52 regulator-allowed-modes = <0 1 2>;
73 regulator-allowed-modes = <0 1 2>;
81 regulator-allowed-modes = <0 1 2>;
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Drichtek,rt5739.yaml40 regulator-allowed-modes:
42 buck allowed operating mode
70 regulator-allowed-modes = <0 1>;
H A Dmediatek,mt6331-regulator.yaml97 regulator-allowed-modes = <0 1>;
105 regulator-allowed-modes = <0 1>;
113 regulator-allowed-modes = <0 1>;
121 regulator-allowed-modes = <0 1>;
129 regulator-allowed-modes = <0 1>;
137 regulator-allowed-modes = <0 1>;
H A Drichtek,rt6190.yaml42 regulator-allowed-modes:
44 buck allowed operating mode
77 regulator-allowed-modes = <0 1>;
H A Dmt6315-regulator.yaml59 regulator-allowed-modes = <0 1 2>;
67 regulator-allowed-modes = <0 1 2>;
H A Drichtek,rt5190a-regulator.yaml64 regulator-allowed-modes:
111 regulator-allowed-modes = <RT5190A_OPMODE_AUTO RT5190A_OPMODE_FPWM>;
130 regulator-allowed-modes = <RT5190A_OPMODE_AUTO RT5190A_OPMODE_FPWM>;
H A Dact8865-regulator.txt37 regulator-initial-mode, regulator-allowed-modes and regulator-mode could be specified
75 regulator-allowed-modes = <ACT8865_REGULATOR_MODE_FIXED>,
101 regulator-allowed-modes = <ACT8865_REGULATOR_MODE_NORMAL>,
H A Drichtek,rt5759-regulator.yaml29 regulator-allowed-modes:
31 buck allowed operating mode
H A Drichtek,rt4803.yaml38 regulator-allowed-modes:
65 regulator-allowed-modes = <1 2>;
H A Dmt6359-regulator.yaml120 regulator-allowed-modes = <0 1 2>;
135 regulator-allowed-modes = <0 1 2>;
143 regulator-allowed-modes = <0 1 2>;
164 regulator-allowed-modes = <0 1 2>;
172 regulator-allowed-modes = <0 1 2>;
/freebsd/contrib/wpa/src/ap/
H A Dacs.c375 const int allowed[] = { 5180, 5220, 5260, 5300, 5500, 5540, 5580, 5620, in acs_usable_bw40_chan() local
383 for (i = 0; i < ARRAY_SIZE(allowed); i++) in acs_usable_bw40_chan()
384 if (chan->freq == allowed[i]) in acs_usable_bw40_chan()
393 const int allowed[] = { 5180, 5260, 5500, 5580, 5660, 5745, 5955, 6035, in acs_usable_bw80_chan() local
398 for (i = 0; i < ARRAY_SIZE(allowed); i++) in acs_usable_bw80_chan()
399 if (chan->freq == allowed[i]) in acs_usable_bw80_chan()
408 const int allowed[] = { 5180, 5500, 5955, 6115, 6275, 6435, 6595, 6755, in acs_usable_bw160_chan() local
412 for (i = 0; i < ARRAY_SIZE(allowed); i++) in acs_usable_bw160_chan()
413 if (chan->freq == allowed[i]) in acs_usable_bw160_chan()
/freebsd/tools/build/
H A Dcheckstyle9.pl2429 my $allowed = 0;
2438 $allowed = 1;
2492 $allowed=1; # disable for now.
2493 if ($seen != ($#chunks + 1) && !$allowed) {
2502 my $allowed = 0;
2511 $allowed = 1;
2528 $allowed = 1;
2533 $allowed = 1;
2538 $allowed = 1;
2549 $allowed = 1;
[all …]
/freebsd/sys/dev/amdgpio/
H A Damdgpio.c199 uint32_t reg, val, allowed; in amdgpio_pin_setflags() local
207 allowed = GPIO_PIN_INPUT | GPIO_PIN_OUTPUT; in amdgpio_pin_setflags()
212 if (flags & ~allowed) in amdgpio_pin_setflags()
218 if ((flags & allowed) == allowed) in amdgpio_pin_setflags()
/freebsd/sys/dev/gpio/
H A Dchvgpio.c235 uint32_t allowed; in chvgpio_pin_setflags() local
241 allowed = GPIO_PIN_INPUT | GPIO_PIN_OUTPUT; in chvgpio_pin_setflags()
246 if (flags & ~allowed) in chvgpio_pin_setflags()
252 if ((flags & allowed) == allowed) in chvgpio_pin_setflags()
H A Dbytgpio.c402 uint32_t allowed; in bytgpio_pin_setflags() local
409 allowed = GPIO_PIN_INPUT | GPIO_PIN_OUTPUT; in bytgpio_pin_setflags()
411 allowed = 0; in bytgpio_pin_setflags()
416 if (flags & ~allowed) in bytgpio_pin_setflags()
422 if ((flags & allowed) == allowed) in bytgpio_pin_setflags()
/freebsd/contrib/tcsh/nls/C/
H A Dset14 2 %s is not allowed
82 80 $, ! or < not allowed with $# or $?
84 82 * not allowed with $# or $?
85 83 $?<digit> or $#<digit> not allowed
/freebsd/usr.sbin/ppp/
H A Dsystems.c230 int f, mode, allowed; in AllowModes() local
232 allowed = 0; in AllowModes()
238 allowed |= mode; in AllowModes()
241 modeok = modereq & allowed ? 1 : 0; in AllowModes()
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Dst,sti-i2c.yaml39 The minimum valid SCL pulse width that is allowed through the
44 The minimum valid SDA pulse width that is allowed through the
/freebsd/crypto/openssh/
H A Dreadpass.c203 int allowed = 0; in ask_permission() local
218 allowed = 1; in ask_permission()
222 return (allowed); in ask_permission()
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dat91-sama5d2_xplained.dts203 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_FIXED>,
221 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_FIXED>,
235 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_FIXED>,
249 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_NORMAL>,
263 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_NORMAL>,
277 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_NORMAL>,
291 regulator-allowed-modes = <ACT8945A_REGULATOR_MODE_NORMAL>,
H A Dat91-sama5d27_wlsom1.dtsi82 regulator-allowed-modes = <2>, <4>;
101 regulator-allowed-modes = <2>, <4>;
124 regulator-allowed-modes = <2>, <4>;
143 regulator-allowed-modes = <2>, <4>;
/freebsd/contrib/bc/
H A DMEMORY_BUGS.md40 function as the only argument. This happened because arrays are allowed as
41 function arguments, which allowed them to be used as arguments to `asciify()`,
42 but they should not have been allowed. However, since they were, the

12345678910>>...22