Home
last modified time | relevance | path

Searched refs:xor (Results 1 – 22 of 22) sorted by relevance

/drivers/media/pci/ttpci/
Dttpci-eeprom.c66 u8 xor[20] = { 0x72, 0x23, 0x68, 0x19, 0x5c, 0xa8, 0x71, 0x2c, in getmac_tt() local
76 data[i] ^= xor[i]; in getmac_tt()
91 u8 xor[20] = { 0x72, 0x23, 0x68, 0x19, 0x5c, 0xa8, 0x71, 0x2c, in ttpci_eeprom_decode_mac() local
100 data[i] ^= xor[i]; in ttpci_eeprom_decode_mac()
Dav7110.c316 u8 xor, neq = 0; in DvbDmxFilterCallback() local
319 xor = filter->filter_value[i] ^ buffer1[i]; in DvbDmxFilterCallback()
320 neq |= dvbdmxfilter->maskandnotmode[i] & xor; in DvbDmxFilterCallback()
/drivers/dma/ioat/
Dprep.c173 struct ioat_xor_descriptor *xor; in __ioat_prep_xor_lock() local
210 xor = desc->xor; in __ioat_prep_xor_lock()
219 descs[0] = (struct ioat_raw_descriptor *) xor; in __ioat_prep_xor_lock()
223 xor->size = xfer_size; in __ioat_prep_xor_lock()
224 xor->dst_addr = dest + offset; in __ioat_prep_xor_lock()
225 xor->ctl = 0; in __ioat_prep_xor_lock()
226 xor->ctl_f.op = op; in __ioat_prep_xor_lock()
227 xor->ctl_f.src_cnt = src_cnt_to_hw(src_cnt); in __ioat_prep_xor_lock()
239 xor->ctl_f.fence = !!(flags & DMA_PREP_FENCE); in __ioat_prep_xor_lock()
Ddma.c490 struct ioat_xor_descriptor *xor = desc->xor; in desc_has_ext() local
492 if (src_cnt_to_sw(xor->ctl_f.src_cnt) > 5) in desc_has_ext()
Ddma.h188 struct ioat_xor_descriptor *xor; member
/drivers/input/keyboard/
Djornada680_kbd.c87 unsigned int xor = new ^ old; in jornada_parse_kbd() local
89 if (xor == 0) in jornada_parse_kbd()
94 if (xor & bit) { in jornada_parse_kbd()
/drivers/dma/
Dfsl_raid.c323 struct fsl_re_xor_cdb *xor; in fsl_re_prep_dma_genq() local
352 xor = desc->cdb_addr; in fsl_re_prep_dma_genq()
353 xor->cdb32 = cdb; in fsl_re_prep_dma_genq()
358 xor->gfm[i] = scf[i]; in fsl_re_prep_dma_genq()
360 xor->gfm[i++] = 1; in fsl_re_prep_dma_genq()
364 xor->gfm[i] = 1; in fsl_re_prep_dma_genq()
369 fill_cfd_frame(cf, 0, sizeof(*xor), desc->cdb_paddr, 0); in fsl_re_prep_dma_genq()
DKconfig122 has the capability to offload memcpy, xor and pq computation
226 the capability to offload memcpy, xor and pq computation
624 memcpy, memset, xor, and raid6 p+q operations. If your platform has
/drivers/misc/cb710/
Dcore.c22 int reg, uint32_t mask, uint32_t xor) in cb710_pci_update_config_reg() argument
27 rval = (rval & mask) ^ xor; in cb710_pci_update_config_reg()
/drivers/net/ethernet/chelsio/cxgb4/
Dclip_tbl.c31 u32 xor = key[0] ^ key[1] ^ key[2] ^ key[3]; in ipv6_clip_hash() local
34 (jhash_1word(xor, 0) % clipt_size_half); in ipv6_clip_hash()
Dl2t.c98 u32 xor = key[0] ^ key[1] ^ key[2] ^ key[3]; in ipv6_hash() local
101 (jhash_2words(xor, ifindex, 0) % l2t_size_half)); in ipv6_hash()
/drivers/input/joystick/
Dsidewinder.c574 unsigned char xor = 0; in sw_guess_mode() local
577 xor |= (buf[i - 1] ^ buf[i]) & 6; in sw_guess_mode()
579 return !!xor * 2 + 1; in sw_guess_mode()
/drivers/media/dvb-core/
Ddvb_demux.c140 u8 xor = f->filter.filter_value[i] ^ feed->feed.sec.secbuf[i]; in dvb_dmx_swfilter_sectionfilter() local
142 if (f->maskandmode[i] & xor) in dvb_dmx_swfilter_sectionfilter()
145 neq |= f->maskandnotmode[i] & xor; in dvb_dmx_swfilter_sectionfilter()
/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dhost.fuc109 xor $r1 #rfifo_qmaskb
Dkernel.fuc391 xor $r8 #proc_qmaskb
/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/
Dg98.fuc0s353 xor $r3 1
408 xor $r4 $r5
/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/
Dcom.fuc37 xor $r8 8
/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd.c764 __u32 xor; in ksocknal_select_ips() local
829 xor = ip ^ peerips[k]; in ksocknal_select_ips()
830 this_netmatch = !(xor & iface->ksni_netmask) ? 1 : 0; in ksocknal_select_ips()
/drivers/video/fbdev/
Damifb.c2587 static inline unsigned long xor(unsigned long a, unsigned long b, in xor() function
3105 *dst = xor(val, *dst, first); in bitxor32()
3110 *dst = xor(val, *dst, first); in bitxor32()
3129 *dst = xor(val, *dst, last); in bitxor32()
/drivers/video/fbdev/core/
Dfbmem.c285 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0; in fb_set_logo() local
319 d = *src ^ xor; in fb_set_logo()
/drivers/scsi/aic7xxx/
Daic79xx.seq244 xor QOUTFIFO_ENTRY_VALID_TAG, QOUTFIFO_ENTRY_VALID_TOGGLE ret;
1137 xor SCBPTR[1], 1;
1504 xor MODE_PTR, MK_MODE(M_DFF1, M_DFF1);
1517 xor MODE_PTR, MK_MODE(M_DFF1, M_DFF1);
1888 xor MODE_PTR, MK_MODE(M_DFF1, M_DFF1);
Daic7xxx.seq83 xor SBLKCTL,SELBUSB; /* Toggle to the other bus */
89 xor SBLKCTL,SELBUSB; /* Toggle to the other bus */
605 xor LASTPHASE, IOI, SCB_TARGET_DATA_DIR;