/linux/drivers/gpu/drm/i915/gt/ |
H A D | selftest_ring.c | 79 unsigned int half = 2048; in igt_ring_direction() local 82 ring = mock_ring(2 * half); in igt_ring_direction() 86 GEM_BUG_ON(ring->size != 2 * half); in igt_ring_direction() 89 for (step = 1; step < half; step <<= 1) { in igt_ring_direction() 91 err |= check_ring_offset(ring, half, step); in igt_ring_direction() 93 err |= check_ring_step(ring, 0, half - 64); in igt_ring_direction() 96 err |= check_ring_offset(ring, 0, 2 * half + 64); in igt_ring_direction() 97 err |= check_ring_offset(ring, 3 * half, 1); in igt_ring_direction()
|
/linux/Documentation/devicetree/bindings/interrupt-controller/ |
H A D | cirrus,clps711x-intc.txt | 24 12: UTXINT1 UART1 transmit FIFO half empty 25 13: URXINT1 UART1 receive FIFO half full 29 17: SS2RX SSI2 receive FIFO half or greater full 30 18: SS2TX SSI2 transmit FIFO less than half empty 31 28: UTXINT2 UART2 transmit FIFO half empty 32 29: URXINT2 UART2 receive FIFO half full
|
/linux/drivers/net/ethernet/8390/ |
H A D | stnic.c | 29 #define half unsigned short macro 97 *(vhalf *) (PA_83902 + ((reg) << 1)) = ((half) (val) << 8); in STNIC_WRITE() 186 half buf[2]; in stnic_get_hdr() 222 half val; in stnic_block_input() 244 length -= sizeof (half); in stnic_block_input() 270 *(vhalf *) PA_83902_IF = ((half) buf[1] << 8) | buf[0]; in stnic_block_output() 272 *(vhalf *) PA_83902_IF = ((half) buf[0] << 8) | buf[1]; in stnic_block_output() 275 buf += sizeof (half); in stnic_block_output() 276 length -= sizeof (half); in stnic_block_output()
|
/linux/drivers/gpu/drm/sun4i/ |
H A D | sun4i_hdmi_tmds_clk.c | 31 bool *half) in sun4i_tmds_calc_divider() argument 57 if (div && half) { in sun4i_tmds_calc_divider() 59 *half = is_double; in sun4i_tmds_calc_divider() 147 bool half; in sun4i_tmds_set_rate() local 152 &div, &half); in sun4i_tmds_set_rate() 156 if (half) in sun4i_tmds_set_rate()
|
/linux/drivers/clk/sunxi/ |
H A D | clk-sun4i-tcon-ch1.c | 101 bool *half) in tcon_ch1_calc_divider() argument 127 if (div && half) { in tcon_ch1_calc_divider() 129 *half = is_double; in tcon_ch1_calc_divider() 191 bool half; in tcon_ch1_set_rate() local 195 tcon_ch1_calc_divider(rate, parent_rate, &div_m, &half); in tcon_ch1_set_rate() 202 if (half) in tcon_ch1_set_rate()
|
/linux/Documentation/input/devices/ |
H A D | rotary-encoder.rst | 16 a stable state with both outputs high (half-period mode) and some have 37 one step (half-period mode) 49 In half-period mode, state a) and c) above are used to determine the 52 (i.e. the rotation was not reversed half-way). 61 meaning that there it has seen half the way of a one-step transition. 68 should have happened, unless it flipped back on half the way. The
|
/linux/drivers/misc/sgi-gru/ |
H A D | grukservices.c | 641 int half, qlines; in send_message_queue_full() local 649 half = (limit != qlines); in send_message_queue_full() 651 if (half) in send_message_queue_full() 657 gru_gamir(cb, EOP_IR_CLR, HSTATUS(mqd->mq_gpa, half), XTYPE_DW, IMA); in send_message_queue_full() 668 gru_gamir(cb, EOP_IR_INC, HSTATUS(mqd->mq_gpa, half), in send_message_queue_full() 687 gru_gamir(cb, EOP_IR_INC, HSTATUS(mqd->mq_gpa, half), XTYPE_DW, in send_message_queue_full() 840 int half = -1; in gru_free_message() local 851 half = 1; in gru_free_message() 853 half = 0; in gru_free_message() 856 if (half >= 0) in gru_free_message() [all …]
|
/linux/tools/testing/ktest/ |
H A D | config-bisect.pl | 472 my @half = @{$phalf}; 479 foreach my $item (@half) { 533 my $half = int($#diff_arr / 2); 534 my @tophalf = @diff_arr[0 .. $half]; 558 my $half = int($#diff_arr / 2); 559 my @bottomhalf = @diff_arr[$half+1 .. $#diff_arr];
|
/linux/arch/arm/vdso/ |
H A D | vdsomunge.c | 106 static Elf32_Half read_elf_half(Elf32_Half half, bool swap) in read_elf_half() argument 108 return swap ? swab16(half) : half; in read_elf_half()
|
/linux/Documentation/driver-api/iio/ |
H A D | triggered-buffers.rst | 56 * **sensor_iio_pollfunc**, the function that will be used as top half of poll 61 * **sensor_trigger_handler**, the function that will be used as bottom half of 65 top half.
|
/linux/drivers/auxdisplay/ |
H A D | hd44780_common.c | 330 int half; in hd44780_common_redefine_char() local 333 half = hex_to_bin(*esc++); in hd44780_common_redefine_char() 334 if (half < 0) in hd44780_common_redefine_char() 337 value |= half << shift; in hd44780_common_redefine_char()
|
/linux/drivers/mtd/spi-nor/ |
H A D | sfdp.c | 237 u16 half, in spi_nor_set_read_settings_from_bfpt() argument 240 read->num_mode_clocks = (half >> 5) & 0x07; in spi_nor_set_read_settings_from_bfpt() 241 read->num_wait_states = (half >> 0) & 0x1f; in spi_nor_set_read_settings_from_bfpt() 242 read->opcode = (half >> 8) & 0xff; in spi_nor_set_read_settings_from_bfpt() 443 u16 half; in spi_nor_parse_bfpt() local 512 half = bfpt.dwords[rd->settings_dword] >> rd->settings_shift; in spi_nor_parse_bfpt() 513 spi_nor_set_read_settings_from_bfpt(read, half, rd->proto); in spi_nor_parse_bfpt() 527 half = bfpt.dwords[er->dword] >> er->shift; in spi_nor_parse_bfpt() 528 erasesize = half & 0xff; in spi_nor_parse_bfpt() 535 opcode = (half >> 8) & 0xff; in spi_nor_parse_bfpt()
|
/linux/arch/powerpc/kernel/ |
H A D | vecemu.c | 245 int exp, half; in rfin() local 257 half = 0x400000 >> exp; in rfin() 259 return (x + half) & ~(0x7fffff >> exp); in rfin()
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_sock_fields.c | 271 __u16 *half; in sk_dst_port__load_half() local 274 half = (__u16 *)&sk->dst_port; in sk_dst_port__load_half() 275 return half[0] == bpf_htons(0xcafe); in sk_dst_port__load_half()
|
/linux/tools/testing/selftests/rcutorture/doc/ |
H A D | TREE_RCU-kconfig.txt | 12 CONFIG_PREEMPT -- Do half. (First three and #8.) 20 CONFIG_RCU_TRACE -- Do half.
|
/linux/Documentation/networking/device_drivers/ethernet/dlink/ |
H A D | dl2k.rst | 215 10mbps_hd 10Mbps half duplex. 217 100mbps_hd 100Mbps half duplex. 220 1000mbps_hd 1000Mbps half duplex. 222 1 10Mbps half duplex. 224 3 100Mbps half duplex. 226 5 1000Mbps half duplex.
|
/linux/drivers/soc/fsl/qe/ |
H A D | tsa.c | 353 resource_size_t half; in tsa_cpm1_init_entries_area() local 356 half = tsa->si_ram_sz / 2; in tsa_cpm1_init_entries_area() 363 area->entries_next = area->entries_start + half; in tsa_cpm1_init_entries_area() 367 area->entries_start = tsa->si_ram + half; in tsa_cpm1_init_entries_area() 368 area->entries_next = area->entries_start + half; in tsa_cpm1_init_entries_area() 405 resource_size_t half; in tsa_qe_init_entries_area() local 408 half = tsa->si_ram_sz / 2; in tsa_qe_init_entries_area() 416 area->entries_start = tsa->si_ram + half + (eighth * tdm_id); in tsa_qe_init_entries_area()
|
/linux/Documentation/driver-api/serial/ |
H A D | serial-rs485.rst | 19 half-duplex mode capable of automatically controlling line direction by 21 half-duplex hardware like an RS485 transceiver or any RS232-connected 22 half-duplex devices like some modems.
|
/linux/Documentation/driver-api/media/ |
H A D | dtv-demux.rst | 41 Note that functions called from a bottom half context must not sleep. 45 bottom half context. Thus, if a demux kABI function is called from network 65 bottom half mechanism or start a tasklet instead of making the callback
|
/linux/arch/xtensa/lib/ |
H A D | memset.S | 106 bbci.l a5, 0, .L20 # branch if dst alignment half-aligned 115 # dst half-aligned
|
/linux/arch/riscv/kernel/tests/module_test/ |
H A D | test_sub16.S | 20 .half 0
|
/linux/lib/fonts/ |
H A D | Kconfig | 52 Small console font with Macintosh-style high-half glyphs. Some Mac 68 Small console font with PC-style control-character and high-half 76 Small console font with PC-style control characters and high-half
|
/linux/Documentation/userspace-api/media/dvb/ |
H A D | legacy_dvb_osd.rst | 457 - 1 Bit bitmap half resolution 463 - 2 Bit bitmap half resolution 469 - 4 Bit bitmap half resolution 475 - 8 Bit bitmap half resolution 493 - 4:4:4 YCRCB graphic half resolution
|
/linux/Documentation/filesystems/ |
H A D | qnx6.rst | 179 Each superblock got its own half of the system area. So superblock #1 180 always uses blocks from the lower half while superblock #2 just writes to 181 blocks represented by the upper half bitmap system area bits. 189 other half of the system area.
|
/linux/Documentation/devicetree/bindings/rtc/ |
H A D | microchip,pic32-rtc.txt | 3 The RTCC keeps time in hours, minutes, and seconds, and one half second. It
|