Searched refs:b2 (Results 1 - 25 of 46) sorted by relevance

12

/drivers/isdn/mISDN/
H A Ddsp_biquad.h34 int32_t b2; member in struct:biquad2_state
41 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2)
47 bq->b2 = b2;
59 y = z0 + bq->z1*bq->b1 + bq->z2*bq->b2;
40 biquad2_init(struct biquad2_state *bq, int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) argument
/drivers/atm/
H A Dfore200e.h70 #define BITFIELD2(b1, b2) b1; b2;
71 #define BITFIELD3(b1, b2, b3) b1; b2; b3;
72 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4;
73 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5;
74 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b
[all...]
/drivers/isdn/pcbit/
H A Dcapi.h75 else if (dev->b2->callref == callref)
76 return dev->b2;
H A Ddrv.c115 dev->b2 = kzalloc(sizeof(struct pcbit_chan), GFP_KERNEL);
116 if (!dev->b2) {
125 dev->b2->id = 1;
136 kfree(dev->b2);
158 kfree(dev->b2);
190 kfree(dev->b2);
225 if (dev->b2->fsm_timer.function)
226 del_timer(&dev->b2->fsm_timer);
228 kfree(dev->b2);
250 chan = (ctl->arg & 0x0F) ? dev->b2
[all...]
H A Dpcbit.h98 struct pcbit_chan *b2; member in struct:pcbit_dev
H A Dlayer2.h150 if (dev->b1 == chan || dev->b2 == chan)
/drivers/mtd/nand/
H A Dnand_ecc.c447 unsigned char b0, b1, b2, bit_addr; local
453 * b0 to b2 indicate which bit is faulty (if any)
464 b2 = read_ecc[2] ^ calc_ecc[2];
471 if ((b0 | b1 | b2) == 0)
476 ((eccsize_mult == 1 && ((b2 ^ (b2 >> 1)) & 0x54) == 0x54) ||
477 (eccsize_mult == 2 && ((b2 ^ (b2 >> 1)) & 0x55) == 0x55))) {
486 * One as we have now (for b0), one for b2
491 * The b2 shif
[all...]
/drivers/media/video/em28xx/
H A Dem28xx-i2c.c69 unsigned char b2[6]; local
71 b2[5] = 0x80 + len - 1;
72 b2[4] = addr;
73 b2[3] = buf[0];
75 b2[2] = buf[1];
77 b2[1] = buf[2];
79 b2[0] = buf[3];
81 ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len);
/drivers/media/dvb/frontends/
H A Dix2505v.c65 u8 b2[] = {0}; local
69 { .addr = addr, .flags = I2C_M_RD, .buf = b2, .len = 1 }
75 return (ret == 1) ? (int) b2[0] : -1;
H A Dtua6100.c177 u8 b2 [] = { 0x00 }; local
179 { .addr = addr, .flags = I2C_M_RD, .buf = b2, .len = 1 } };
H A Dlgs8gl5.c138 u8 b2[] = {reg, data}; local
155 .buf = b2,
/drivers/media/dvb/dvb-usb/
H A Ddibusb-mb.c71 u8 b[2] = { 0,0 }, b2[1]; local
75 { .flags = I2C_M_RD, .buf = b2, .len = 1 },
93 if (b2[0] == 0xfe) {
/drivers/staging/usbip/userspace/
H A DREADME101 - busid 4-1 (046d:08b2)
159 3-1: Logitech, Inc. : QuickCam Pro 4000 (046d:08b2)
/drivers/net/hamradio/
H A Dbaycom_ser_fdx.c382 unsigned char b1,b2,b3; local
389 b2 = inb(MSR(iobase));
393 outb(b2, MSR(iobase));
404 b2 = inb(SCR(iobase));
405 if ((b1 != 0x5a) || (b2 != 0xa5))
H A Dbaycom_ser_hdx.c441 unsigned char b1,b2,b3; local
448 b2 = inb(MSR(iobase));
452 outb(b2, MSR(iobase));
463 b2 = inb(SCR(iobase));
464 if ((b1 != 0x5a) || (b2 != 0xa5))
H A Dyam.c513 unsigned char b1, b2, b3; local
520 b2 = inb(MSR(iobase));
524 outb(b2, MSR(iobase));
535 b2 = inb(SCR(iobase));
536 if ((b1 != 0x5a) || (b2 != 0xa5))
/drivers/net/wireless/bcmdhd/include/
H A Dlinux_osl.h175 #define bcmp(b1, b2, len) memcmp((b1), (b2), (len))
214 #define bcmp(b1, b2, len) memcmp((b1), (b2), (len))
382 extern int bcmp(const void *b1, const void *b2, size_t len);
/drivers/video/
H A Depson1355fb.c126 u8 b2 = epson1355_read_reg(par, index + 2); local
128 return (b2 & 0x0f) << 16 | (b1 << 8) | b0;
135 u8 b2 = (data >> 16) & 0x0f; local
139 epson1355_write_reg(par, b2, index + 2);
/drivers/media/video/bt8xx/
H A Dbttv-i2c.c299 unsigned char b2, int both)
308 buffer[1] = b2;
298 bttv_I2CWrite(struct bttv *btv, unsigned char addr, unsigned char b1, unsigned char b2, int both) argument
/drivers/tty/vt/
H A Dcp437.uni45 0x1e U+25b2
256 0xe1 U+03b2 U+00df
284 0xfd U+00b2
/drivers/isdn/hardware/eicon/
H A Dkst_ifc.h170 diva_prot_statistics_t b2; member in struct:_diva_ifc_statistics
/drivers/video/omap2/dss/
H A Ddsi.c1107 int b0, b1, b2; local
1128 b2 = 26;
1132 b2 = 26;
1139 FLD_GET(l, b2, b2),
2836 DSSDBG("\t\tb1 %#02x b2 %#02x b3 %#02x b4 %#02x\n",
2997 int channel, u8 b1, u8 b2, u8 b3, u8 b4)
3001 val = b4 << 24 | b3 << 16 | b2 << 8 | b1 << 0;
3004 b1, b2, b3, b4, val); */
3017 u8 b1, b2, b local
2996 dsi_vc_write_long_payload(struct platform_device *dsidev, int channel, u8 b1, u8 b2, u8 b3, u8 b4) argument
[all...]
/drivers/md/
H A Draid0.c89 char b2[BDEVNAME_SIZE]; local
111 bdevname(rdev2->bdev,b2),
/drivers/scsi/lpfc/
H A Dlpfc_ct.c1831 uint32_t b1, b2, b3, b4, i, rev; local
1845 b2 = (rev & 0x00000f00) >> 8;
1885 b1, b2, b3, (char *)str);
1888 b2, b3);
1892 b1, b2, b3, c,
1896 b1, b2, b3, c, b4);
1902 b2 = (rev & 0x00f00000) >> 20;
1907 sprintf(fwrevision, "%d.%d%d%c%d", b1, b2, b3, c, b4);
/drivers/pci/
H A Dprobe.c1534 struct pci_bus *b, *b2; local
1552 b2 = pci_find_bus(pci_domain_nr(b), bus);
1553 if (b2) {
1555 dev_dbg(&b2->dev, "bus already known\n");

Completed in 1329 milliseconds

12