| /freebsd/sys/dev/sound/pci/hda/ |
| H A D | pin_patch.h | 47 PIN_PATCH_STRING(n, "as=15 misc=1 color=Black ctype=1/8 device=Speaker loc=Rear conn=None") 49 PIN_PATCH_STRING(n, "seq=15 as=1 color=Green ctype=1/8 device=Headphones loc=Rear") 51 PIN_PATCH_STRING(n, "seq=15 as=1 misc=1 color=Green ctype=1/8 device=Headphones loc=Rear") 57 PIN_PATCH_STRING(n, "as=5 misc=9 color=Pink ctype=1/8 device=Mic loc=Rear") 63 PIN_PATCH_STRING(n, "seq=1 as=3 color=Blue ctype=1/8 device=Line-in loc=Rear") 65 PIN_PATCH_STRING(n, "as=1 color=Green ctype=1/8 loc=Rear") 67 PIN_PATCH_STRING(n, "as=4 misc=1 color=Green ctype=Optical device=SPDIF-out loc=Rear") 69 PIN_PATCH_STRING(n, "seq=12 as=3 misc=1 color=Pink ctype=1/8 device=Mic loc=Rear") 71 PIN_PATCH_STRING(n, "seq=13 as=3 misc=1 color=Pink ctype=1/8 device=Mic loc=Rear") 73 PIN_PATCH_STRING(n, "seq=12 as=3 color=Pink ctype=1/8 device=Mic loc=Rear") [all …]
|
| /freebsd/sys/dev/sound/pcm/ |
| H A D | matrix.h | 132 /* 3 @ 2.1 (lfe), 3.0 (rear center, DEFAULT) */ 147 /* 6 @ 5.1 (lfe, DEFAULT), 6.0 (rear center) */ 367 /* Rear Center */ \ 410 /* Rear Center */ \ 448 /* Rear Left */ \ 455 /* Rear Right */ \ 492 /* Rear Left */ \ 499 /* Rear Right */ \ 542 /* Rear Left */ \ 549 /* Rear Right */ \ [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | dolby | 31 >6 byte&0xe0 = 0x20 1 front/0 rear, 33 >6 byte&0xe0 = 0x40 2 front/0 rear, 40 >6 byte&0xe0 = 0x60 3 front/0 rear, 42 >6 byte&0xe0 = 0x80 2 front/1 rear, 44 >6 byte&0xe0 = 0xa0 3 front/1 rear, 46 >6 byte&0xe0 = 0xc0 2 front/2 rear, 48 >6 byte&0xe0 = 0xe0 3 front/2 rear,
|
| /freebsd/share/man/man4/ |
| H A D | snd_hda.4 | 78 For example, one device for main rear 7.1 output and inputs, one device 402 on a rear side and one internal speaker. 413 hdaa0: 20 01014020 2 0 Line-out Jack 1/8 Rear Green 0 415 hdaa0: 22 411111f0 15 0 Speaker None 1/8 Rear Black 1 DISA 416 hdaa0: 23 411111f0 15 0 Speaker None 1/8 Rear Black 1 DISA 417 hdaa0: 24 01a19830 3 0 Mic Jack 1/8 Rear Pink 8 419 hdaa0: 26 01813031 3 1 Line-in Jack 1/8 Rear Blue 0 421 hdaa0: 28 411111f0 15 0 Speaker None 1/8 Rear Black 1 DISA 422 hdaa0: 30 411111f0 15 0 Speaker None 1/8 Rear Black 1 DISA 423 hdaa0: 31 411111f0 15 0 Speaker None 1/8 Rear Black 1 DISA [all …]
|
| H A D | snd_emu10kx.4 | 159 PCM inputs: front left, front right, rear left, rear right, center, sub 172 PCM inputs: front LR, rear LR, center, sub, ...
|
| H A D | pcm.4 | 451 3 channels (left, right, rear center). 453 Quadraphonic, 4 channels (front/rear left and right). 461 6 channels (4.0 + front/rear center).
|
| /freebsd/lib/libc/stdlib/ |
| H A D | random.c | 115 * advances the front and rear pointers 10*rand_deg times, and hence the 116 * rear pointer which starts at 0 will also end up at zero; thus the zeroeth 118 * position of the rear pointer is just 134 * fptr and rptr are two pointers into the state info, a front and a rear 143 * (The position of the rear pointer, rptr, is really 0 (as explained above 158 * the last element to see if the front and rear pointers have wrapped. 337 * multiplexed with the current value of the rear pointer; this is so 408 uint32_t rear = new_state[0] / MAX_TYPES; in setstate() local 411 if (type != TYPE_0 && rear >= degrees[type]) in setstate() 424 implicit.rst_rptr = &implicit.rst_state[rear]; in setstate() [all …]
|
| /freebsd/contrib/ntp/libntp/ |
| H A D | ntp_random.c | 151 * advances the front and rear pointers 10*rand_deg times, and hence the 152 * rear pointer which starts at 0 will also end up at zero; thus the zeroeth 154 * position of the rear pointer is just 181 * fptr and rptr are two pointers into the state info, a front and a rear 190 * (The position of the rear pointer, rptr, is really 0 (as explained above 205 * the last element to see if the front and rear pointers have wrapped. 334 * multiplexed with the current value of the rear pointer; this is so 423 register long rear = new_state[0] / MAX_TYPES; in ntp_setstate() local 446 rptr = &state[rear]; in ntp_setstate() 447 fptr = &state[(rear + rand_sep) % rand_deg]; in ntp_setstate() [all …]
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | zfs_rlock.c | 266 zfs_locked_range_t *rear; in zfs_rangelock_split() local 274 /* create the rear proxy range lock */ in zfs_rangelock_split() 275 rear = kmem_alloc(sizeof (zfs_locked_range_t), KM_SLEEP); in zfs_rangelock_split() 276 rear->lr_offset = off; in zfs_rangelock_split() 277 rear->lr_length = lr->lr_offset + lr->lr_length - off; in zfs_rangelock_split() 278 rear->lr_count = lr->lr_count; in zfs_rangelock_split() 279 rear->lr_type = RL_READER; in zfs_rangelock_split() 280 rear->lr_proxy = B_TRUE; in zfs_rangelock_split() 281 rear->lr_write_wanted = B_FALSE; in zfs_rangelock_split() 282 rear->lr_read_wanted = B_FALSE; in zfs_rangelock_split() [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm/marvell/ |
| H A D | armada-388-clearfog-base.dts | 23 /* The rear SW3 button */ 24 label = "Rear Button"; 64 rear_button_pins: rear-button-pins {
|
| H A D | armada-388-clearfog.dts | 40 /* The rear SW3 button */ 41 label = "Rear Button"; 170 rear_button_pins: rear-button-pins {
|
| H A D | armada-xp-netgear-rn2120.dts | 44 /* Controller for rear fan #1 of 3 (Protechnic 55 /* Controller for rear (center) fan #2 of 3 */ 65 /* Controller for rear fan #3 of 3 */ 115 /* Two rear eSATA ports */
|
| H A D | armada-385-clearfog-gtr.dtsi | 43 36 - Rear button (GPIO active low) 186 cf_gtr_rear_button_pins: cf-gtr-rear-button-pins { 300 label = "Rear Button";
|
| H A D | armada-370-synology-ds213j.dts | 83 /* rear USB port, near reset button */ 88 /* rear USB port, near RJ45 port */
|
| /freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
| H A D | aspeed-bmc-opp-witherspoon.dts | 158 rear-fault { 162 rear-id { 166 rear-power { 215 /*N0-N7*/ "presence-ps1","","led-rear-fault","led-rear-power", 216 "led-rear-id","","","", 302 /* Rear RS-232 connector */
|
| H A D | aspeed-bmc-bytedance-g220a.dts | 114 event-rear-riser1-presence { 115 label = "rear-riser1-presence"; 126 event-rear-riser0-presence { 127 label = "rear-riser0-presence"; 210 event-rear-bp-presence { 211 label = "rear-bp-presence";
|
| H A D | aspeed-bmc-ibm-bonnell.dts | 77 rear-enc-id0 { 81 rear-enc-fault0 { 138 /*H0-H7*/ "","","rear-enc-id0","rear-enc-fault0","","","","",
|
| H A D | aspeed-bmc-asrock-e3c256d4i.dts | 241 &pinctrl_pwm2_default /* rear */ 250 /* rear */
|
| H A D | aspeed-bmc-opp-swift.dts | 193 rear-fault { 197 rear-id { 288 /* Rear RS-232 connector */
|
| H A D | aspeed-bmc-opp-tacoma.dts | 116 /*E0-E7*/ "power-button","","","checkstop","","presence-ps1","","led-rear-fault", 126 /*O0-O7*/ "led-rear-power","led-rear-id","","usb-power","","","","",
|
| /freebsd/sys/contrib/device-tree/src/arm64/marvell/ |
| H A D | cn9130-cf-base.dts | 29 /* The rear SW3 button */ 30 label = "Rear Button"; 142 rear_button_pins: cp0-rear-button-pins {
|
| H A D | cn9130-cf-pro.dts | 29 /* The rear SW3 button */ 30 label = "Rear Button"; 335 rear_button_pins: cp0-rear-button-pins {
|
| /freebsd/sys/contrib/device-tree/src/arm/st/ |
| H A D | stih410-pinctrl.dtsi | 10 pin-controller-rear@922f080 {
|
| /freebsd/sys/contrib/device-tree/Bindings/soc/sti/ |
| H A D | st,sti-syscon.yaml | 25 - st,stih407-rear-syscfg
|
| /freebsd/sys/contrib/device-tree/src/powerpc/ |
| H A D | xpedite5200.dts | 272 /* eTSEC3: Rear panel port 2 */ 301 /* eTSEC4: Rear panel port 3 */
|