/freebsd/crypto/heimdal/doc/ |
H A D | latin1.tex | 4 \global\catcode`\^^a0=\active \global\let^^a0=~ % no-break space 5 \global\catcode`\^^a1=\active \global\def^^a1{!`} % inverted exclamation mark 6 \global\catcode`\^^a2=\active \global\def^^a2{{\rm\rlap/c}} % cent sign 7 \global\catcode`\^^a3=\active \global\def^^a3{{\it\$}} % pound sign 9 \global\catcode`\^^a7=\active \global\let^^a7=\S % section sign 10 \global\catcode`\^^a8=\active \global\def^^a8{\"{}} % diaeresis 11 \global\catcode`\^^a9=\active \global\let^^a9=\copyright % copyright sign 13 \global\catcode`\^^ac=\active \global\def^^ac{\inmathmode\neg}% not sign 14 \global\catcode`\^^ad=\active \global\let^^ad=\- % soft hyphen 16 \global\catcode`\^^af=\active \global\def^^af{\={}} % macron [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6qdl-tx6-lcd.dtsi | 123 hsync-active = <0>; 124 vsync-active = <0>; 125 de-active = <1>; 126 pixelclk-active = <0>; 139 hsync-active = <0>; 140 vsync-active = <0>; 141 de-active = <1>; 142 pixelclk-active = <0>; 155 hsync-active = <0>; 156 vsync-active = <0>; [all …]
|
H A D | imx6qdl-tx6-lvds.dtsi | 140 de-active = <1>; 141 pixelclk-active = <1>; 154 hsync-active = <0>; 155 vsync-active = <0>; 156 de-active = <1>; 157 pixelclk-active = <0>; 170 hsync-active = <0>; 171 vsync-active = <0>; 172 de-active = <1>; 173 pixelclk-active = <1>; [all …]
|
H A D | imx53-tx53-x03x.dts | 80 hsync-active = <0>; 81 vsync-active = <0>; 82 de-active = <1>; 83 pixelclk-active = <0>; 96 hsync-active = <0>; 97 vsync-active = <0>; 98 de-active = <1>; 99 pixelclk-active = <0>; 112 hsync-active = <0>; 113 vsync-active = <0>; [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/ |
H A D | exynos5433-tmu.dtsi | 20 type = "active"; 25 type = "active"; 30 type = "active"; 35 type = "active"; 40 type = "active"; 45 type = "active"; 50 type = "active"; 108 type = "active"; 113 type = "active"; 118 type = "active"; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | active-semi,act8945a-charger.yaml | 4 $id: http://devicetree.org/schemas/power/supply/active-semi,act8945a-charger.yaml# 7 title: Active-semi ACT8945A Charger Function 17 const: active-semi,act8945a-charger 22 active-semi,chglev-gpios: 26 active-semi,lbo-gpios: 30 active-semi,input-voltage-threshold-microvolt: 37 active-semi,precondition-timeout: 45 active-semi,total-timeout: 56 - active-semi,chglev-gpios 57 - active-semi,lbo-gpios [all …]
|
H A D | act8945a-charger.txt | 1 Device-Tree bindings for charger of Active-semi ACT8945A Multi-Function Device 4 - compatible: "active-semi,act8945a-charger". 5 - active-semi,chglev-gpios: charge current level phandle with args 7 - active-semi,lbo-gpios: specify the low battery voltage detect phandle 14 - active-semi,input-voltage-threshold-microvolt: unit: mV; 17 - active-semi,precondition-timeout: unit: minutes; 21 - active-semi,total-timeout: unit: hours; 28 compatible = "active-semi,act8945a"; 32 compatible = "active-semi,act8945a-charger"; 38 active-semi,chglev-gpios = <&pioA 12 GPIO_ACTIVE_HIGH>; [all …]
|
/freebsd/lib/geom/multipath/ |
H A D | gmultipath.8 | 131 option enables Active/Active mode, 133 option enables Active/Read mode, otherwise Active/Passive mode is used 146 option enables Active/Active mode, 148 option enables Active/Read mode, otherwise Active/Passive mode is used 154 option enables Active/Active mode, 156 option enables Active/Passive mode, 158 option enables Active/Read mode. 177 Change the active provider/path to the next available provider in Active/Passive mode. 179 Change the active provider/path to the specified provider in Active/Passive mode. 181 Get the currently active provider(s)/path(s). [all …]
|
/freebsd/sys/contrib/ck/src/ |
H A D | ck_array.c | 37 struct _ck_array *active; in ck_array_create() local 39 active = allocator->malloc(sizeof(struct _ck_array) + sizeof(void *) * length); in ck_array_create() 40 if (active == NULL) in ck_array_create() 43 active->n_committed = 0; in ck_array_create() 44 active->length = length; in ck_array_create() 46 return active; in ck_array_create() 52 struct _ck_array *active; in ck_array_init() local 62 active = ck_array_create(allocator, length); in ck_array_init() 63 if (active == NULL) in ck_array_init() 68 array->active = active; in ck_array_init() [all …]
|
H A D | ck_epoch.c | 44 * acquired some snapshot (e) of the global epoch value (e_g) and set an active 46 * For example, assume an initial e_g value of 1, e value of 0 and active value 51 * active = 1 54 * Any serialized reads may observe e = 0 or e = 1 with active = 0, or e = 0 or 55 * e = 1 with active = 1. The e_g value can only go from 1 to 2 if every thread 58 * critical sections (referred to as "active" threads from here on) would have 86 * still be accessed at e_g as threads are "active" at the same time 93 * e_g-1 were still active, then we would never increment to e_g+1 (active != 0 97 * (since it is valid for active threads to be at e_g and threads at e_g still 100 * However, at e_g+2, all active threads must be either at e_g+1 or e_g+2. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | tvp7002.txt | 10 - hsync-active: HSYNC Polarity configuration for the bus. Default value when 13 - vsync-active: VSYNC Polarity configuration for the bus. Default value when 19 - sync-on-green-active: Active state of Sync-on-green signal property of the 21 0 = Normal Operation (Active Low, Default) 24 - field-even-active: Active-high Field ID output polarity control of the bus. 27 0 = Normal Operation (Active Low, Default) 44 hsync-active = <1>; 45 vsync-active = <1>; 47 sync-on-green-active = <1>; 48 field-even-active = <0>;
|
/freebsd/contrib/netbsd-tests/ipf/expected/ |
H A D | f11 | 17 List of active MAP/Redirect filters: 19 List of active sessions: 22 List of active state sessions: 53 List of active MAP/Redirect filters: 55 List of active sessions: 58 List of active state sessions: 89 List of active MAP/Redirect filters: 91 List of active sessions: 94 List of active state sessions: 125 List of active MAP/Redirect filters: [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/leds/ |
H A D | leds-bcm6358.txt | 18 - brcm,clk-dat-low : Boolean, makes clock and data signals active low. 43 active-low; 48 active-low; 53 active-low; 58 active-low; 74 active-low; 79 active-low; 89 active-low; 98 active-low; 103 active-low; [all …]
|
/freebsd/tests/sys/geom/class/multipath/ |
H A D | misc.sh | 44 check_multipath_state ${md0} "OPTIMAL" "ACTIVE" "PASSIVE" 48 check_multipath_state ${md0} "OPTIMAL" "ACTIVE" "PASSIVE" "PASSIVE" 58 atf_set "descr" "Create an Active/Active multipath device" 70 check_multipath_state "${md1} ${md0}" "OPTIMAL" "ACTIVE" "ACTIVE" 80 atf_set "descr" "Create an Active/Read multipath device" 92 check_multipath_state ${md0} "OPTIMAL" "ACTIVE" "READ" 135 # don't really care which path is active. 160 check_multipath_state ${md0} "OPTIMAL" "ACTIVE" "PASSIVE" 161 # Manually fail the active path 163 check_multipath_state ${md1} "DEGRADED" "FAIL" "ACTIVE" [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | active-semi,act8945a.yaml | 4 $id: http://devicetree.org/schemas/regulator/active-semi,act8945a.yaml# 7 title: Active-semi ACT8945a regulator 14 const: active-semi,act8945a 25 active-semi,vsel-high: 88 const: active-semi,act8945a-charger 93 active-semi,chglev-gpios: 97 active-semi,lbo-gpios: 101 active-semi,input-voltage-threshold-microvolt: 105 active-semi,precondition-timeout: 109 active-semi,total-timeout: [all …]
|
H A D | tps65132-regulator.txt | 14 -enable-gpios:(active high, output) Regulators are controlled by the input pins. 17 -active-discharge-gpios: (active high, output) Some configurations use delay mechanisms 20 the delay mechanism. Requires specification of ti,active-discharge-time-us 21 -ti,active-discharge-time-us: how long the active discharge gpio should be 22 asserted for during active discharge, in microseconds. 43 regulator-active-discharge = <0>;
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SuffixTree.cpp | 33 Active.Node = Root; in SuffixTree() 185 if (Active.Len == 0) { in extend() 186 // If not, then say the active index is the end index. in extend() 187 Active.Idx = EndIdx; in extend() 190 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend() 193 unsigned FirstChar = Str[Active.Idx]; in extend() 196 if (Active.Node->Children.count(FirstChar) == 0) { in extend() 198 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend() 200 // The active node is an internal node, and we visited it, so it must in extend() 203 NeedsLink->setLink(Active.Node); in extend() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | allwinner,sun4i-a10-csi.yaml | 83 data-active: true 84 hsync-active: true 86 vsync-active: true 90 - data-active 91 - hsync-active 93 - vsync-active 121 hsync-active = <1>; /* Active high */ 122 vsync-active = <0>; /* Active low */ 123 data-active = <1>; /* Active high */
|
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/ |
H A D | tegra210-p2180.dtsi | 143 maxim,active-fps-source = <MAX77620_FPS_SRC_0>; 144 maxim,active-fps-power-up-slot = <7>; 145 maxim,active-fps-power-down-slot = <0>; 152 maxim,active-fps-source = <MAX77620_FPS_SRC_0>; 182 maxim,active-fps-source = <MAX77620_FPS_SRC_1>; 193 maxim,active-fps-source = <MAX77620_FPS_SRC_0>; 204 maxim,active-fps-source = <MAX77620_FPS_SRC_1>; 217 maxim,active-fps-source = <MAX77620_FPS_SRC_0>; 230 maxim,active-fps-source = <MAX77620_FPS_SRC_NONE>; 241 maxim,active-fps-source = <MAX77620_FPS_SRC_1>; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | act8945a.txt | 1 Device-Tree bindings for Active-semi ACT8945A MFD driver 4 - compatible: "active-semi,act8945a". 13 compatible = "active-semi,act8945a"; 16 active-semi,vsel-high; 70 compatible = "active-semi,act8945a-charger"; 76 active-semi,chglev-gpios = <&pioA 12 GPIO_ACTIVE_HIGH>; 77 active-semi,lbo-gpios = <&pioA 72 GPIO_ACTIVE_LOW>; 78 active-semi,input-voltage-threshold-microvolt = <6600>; 79 active-semi,precondition-timeout = <40>; 80 active-semi,total-timeout = <3>;
|
/freebsd/sys/contrib/device-tree/Bindings/power/reset/ |
H A D | gpio-restart.txt | 11 priority order. The gpio is configured as an output, and driven active, 13 inactive->active edge condition, triggering positive edge triggered 14 reset. After a delay specified by active-delay, the GPIO is set to 15 inactive, thus causing an active->inactive edge, triggering negative edge 17 is driven active again. After a delay specified by wait-delay, the 24 low to reset the board set it to "Active Low", otherwise set 25 gpio to "Active High". 40 - active-delay: Delay (default 100) to wait after driving gpio active [ms] 51 active-delay = <100>;
|
H A D | gpio-restart.yaml | 21 is configured as an output, and driven active, triggering a level triggered reset condition. 22 This will also cause an inactive->active edge condition, triggering positive edge triggered 23 reset. After a delay specified by active-delay, the GPIO is set to inactive, thus causing an 24 active->inactive edge, triggering negative edge triggered reset. After a delay specified by 25 inactive-delay, the GPIO is driven active again. After a delay specified by wait-delay, the 38 set it to "Active Low", otherwise set GPIO to "Active High". 49 active-delay: 51 description: Delay (default 100) to wait after driving gpio active [ms] 76 active [all...] |
/freebsd/stand/common/ |
H A D | console.c | 70 * specified, mark them as active. Else, mark the first probed console 71 * as active. Also create the console variable. 77 int active; in cons_probe() local 97 active = -1; in cons_probe() 98 for (cons = 0; consoles[cons] != NULL && active == -1; cons++) { in cons_probe() 102 active = cons; in cons_probe() 105 if (active == -1) in cons_probe() 106 active = 0; in cons_probe() 116 consoles[active]->c_flags |= C_ACTIVEIN | C_ACTIVEOUT; in cons_probe() 117 consoles[active]->c_init(0); in cons_probe() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/mxs/ |
H A D | imx28-tx28.dts | 49 enable-active-high; 58 enable-active-high; 93 enable-active-high; 103 enable-active-high; 335 hsync-active = <0>; 336 vsync-active = <0>; 337 de-active = <1>; 338 pixelclk-active = <1>; 351 hsync-active = <0>; 352 vsync-active = <0>; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/bus/ |
H A D | nvidia,tegra20-gmi.txt | 34 child device is supported which represents the active chip-select line, see 45 - nvidia,snor-rdy-active-before-data: Assert RDY signal one cycle before data. 47 - nvidia,snor-rdy-active-high: RDY signal is active high 48 - nvidia,snor-adv-active-high: ADV signal is active high 49 - nvidia,snor-oe-active-high: WE/OE signal is active high 50 - nvidia,snor-cs-active-high: CS signal is active high 94 nvidia,snor-adv-active-high; 125 nvidia,snor-adv-active-high;
|