Searched refs:byte (Results 1 - 13 of 13) sorted by relevance

/openwrt/target/linux/ar71xx/files/drivers/spi/
H A Dspi-rb4xx.c96 static void do_spi_byte(void __iomem *base, unsigned char byte) argument
98 do_spi_clk(base, byte >> 7);
99 do_spi_clk(base, byte >> 6);
100 do_spi_clk(base, byte >> 5);
101 do_spi_clk(base, byte >> 4);
102 do_spi_clk(base, byte >> 3);
103 do_spi_clk(base, byte >> 2);
104 do_spi_clk(base, byte >> 1);
105 do_spi_clk(base, byte);
108 (unsigned)byte,
124 do_spi_byte_fast(void __iomem *base, unsigned char byte) argument
[all...]
/openwrt/target/linux/generic/image/lzma-loader/src/
H A Duart16550.h45 void Uart16550Put(uint8 byte);
H A Duart16550.c81 void Uart16550Put(uint8 byte) argument
84 UART16550_WRITE(OFS_SEND_BUFFER, byte);
/openwrt/target/linux/generic/files/fs/yaffs2/
H A Dyaffs_ecc.c19 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two
20 * such ECC blocks are used on a 512-byte NAND page.
30 * for each byte of data. These are instead provided in a table in bits7..2.
71 /* Calculate the ECC for a 256-byte block of data */
85 if (b & 0x01) { /* odd number of bits in the byte */
133 /* Correct the ECC on a 256 byte block of data */
152 unsigned byte; local
155 bit = byte = 0;
158 byte |= 0x80;
160 byte |
[all...]
/openwrt/package/boot/uboot-ar71xx/files/cpu/mips/
H A Dar71xx_serial.c159 void serial_putc(const char byte) argument
161 if (byte == '\n') serial_putc ('\r');
164 UART16550_WRITE(OFS_SEND_BUFFER, byte);
/openwrt/package/utils/fbtest/src/
H A Dfbtest.c160 char byte[4]; member in struct:pixel
166 pix->byte[0]=(col->r&0xf8)|(col->g&0xfc)>>5;
167 pix->byte[1]=(col->g&0xfc)<<3|(col->b&0xf8)>>3;
170 pix->byte[0]=(col->a&0x80)|(col->r&0xf8)>>1|(col->g&0xf8)>>6;
171 pix->byte[1]=(col->g&0xf8)<<2|(col->b&0xf8)>>3;
174 pix->byte[0]=col->a;
175 pix->byte[1]=col->r;
176 pix->byte[2]=col->g;
177 pix->byte[3]=col->b;
235 pix.byte[
[all...]
/openwrt/package/utils/px5g-standalone/src/library/
H A Dx509write.c61 int i, byte; local
63 for (byte = 4, i = 24; i >= 0; i -= 8, --byte)
65 return byte;
78 int byte = asn1_eval_octet(size); local
81 *(node->p) = (0x80 | byte) & 0xFF;
84 for (i = byte; i > 0; --i) {
153 unsigned int byte, u_val = 0, tmp_val = 0; local
163 byte = asn1_eval_octet(u_val);
165 if (byte
[all...]
/openwrt/target/linux/generic/files/drivers/net/phy/
H A Dadm6996.c177 u8 byte; local
180 for (mask = 0x80, byte = 0; mask && bits > 0; mask >>= 1, bits --) {
190 byte |= mask;
197 *buf++ = byte;
H A Dar8216.c1349 ar8xxx_byte_to_str(char *buf, int len, u64 byte) argument
1354 if (byte >= 0x40000000) { /* 1 GiB */
1355 b = byte * 10 / 0x40000000;
1357 } else if (byte >= 0x100000) { /* 1 MiB */
1358 b = byte * 10 / 0x100000;
1360 } else if (byte >= 0x400) { /* 1 KiB */
1361 b = byte * 10 / 0x400;
1364 b = byte;
/openwrt/target/linux/ar71xx/image/
H A Dgeneric.mk335 # Should the file have an odd number of bytes then the byte len-0x800 is
/openwrt/package/network/services/ead/src/tinysrp/
H A Dconfigure1518 echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6
1519 echo "configure:1520: checking whether byte ordering is bigendian" >&5
/openwrt/target/linux/gemini/files/drivers/net/ethernet/gemini/
H A Dsl351x_hw.h478 unsigned char byte; member in union:__anon142
/openwrt/target/linux/imx6/files-4.4/drivers/net/phy/
H A Dgw16083.c891 d.byte = (port == 5) ? 1 : 2;

Completed in 72 milliseconds