/linux-4.1.27/fs/coda/ |
H A D | upcall.c | 46 union inputArgs *inp; alloc_upcall() local 48 CODA_ALLOC(inp, union inputArgs *, size); alloc_upcall() 49 if (!inp) alloc_upcall() 52 inp->ih.opcode = opcode; alloc_upcall() 53 inp->ih.pid = task_pid_nr_ns(current, &init_pid_ns); alloc_upcall() 54 inp->ih.pgid = task_pgrp_nr_ns(current, &init_pid_ns); alloc_upcall() 55 inp->ih.uid = from_kuid(&init_user_ns, current_fsuid()); alloc_upcall() 57 return (void*)inp; alloc_upcall() 62 inp = (union inputArgs *)alloc_upcall(op, insize); \ 63 if (IS_ERR(inp)) { return PTR_ERR(inp); }\ 64 outp = (union outputArgs *)(inp); \ 76 union inputArgs *inp; venus_rootfid() local 83 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_rootfid() 87 CODA_FREE(inp, insize); venus_rootfid() 94 union inputArgs *inp; venus_getattr() local 100 inp->coda_getattr.VFid = *fid; venus_getattr() 102 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_getattr() 106 CODA_FREE(inp, insize); venus_getattr() 113 union inputArgs *inp; venus_setattr() local 120 inp->coda_setattr.VFid = *fid; venus_setattr() 121 inp->coda_setattr.attr = *vattr; venus_setattr() 123 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_setattr() 125 CODA_FREE(inp, insize); venus_setattr() 133 union inputArgs *inp; venus_lookup() local 142 inp->coda_lookup.VFid = *fid; venus_lookup() 143 inp->coda_lookup.name = offset; venus_lookup() 144 inp->coda_lookup.flags = CLU_CASE_SENSITIVE; venus_lookup() 146 memcpy((char *)(inp) + offset, name, length); venus_lookup() 147 *((char *)inp + offset + length) = '\0'; venus_lookup() 149 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_lookup() 155 CODA_FREE(inp, insize); venus_lookup() 162 union inputArgs *inp; venus_close() local 169 inp->ih.uid = from_kuid(&init_user_ns, uid); venus_close() 170 inp->coda_close.VFid = *fid; venus_close() 171 inp->coda_close.flags = flags; venus_close() 173 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_close() 175 CODA_FREE(inp, insize); venus_close() 182 union inputArgs *inp; venus_open() local 189 inp->coda_open_by_fd.VFid = *fid; venus_open() 190 inp->coda_open_by_fd.flags = flags; venus_open() 192 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_open() 196 CODA_FREE(inp, insize); venus_open() 204 union inputArgs *inp; venus_mkdir() local 213 inp->coda_mkdir.VFid = *dirfid; venus_mkdir() 214 inp->coda_mkdir.attr = *attrs; venus_mkdir() 215 inp->coda_mkdir.name = offset; venus_mkdir() 217 memcpy((char *)(inp) + offset, name, length); venus_mkdir() 218 *((char *)inp + offset + length) = '\0'; venus_mkdir() 220 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_mkdir() 226 CODA_FREE(inp, insize); venus_mkdir() 236 union inputArgs *inp; venus_rename() local 246 inp->coda_rename.sourceFid = *old_fid; venus_rename() 247 inp->coda_rename.destFid = *new_fid; venus_rename() 248 inp->coda_rename.srcname = offset; venus_rename() 252 memcpy((char *)(inp) + offset, old_name, old_length); venus_rename() 253 *((char *)inp + offset + old_length) = '\0'; venus_rename() 257 inp->coda_rename.destname = offset; venus_rename() 259 memcpy((char *)(inp) + offset, new_name, new_length); venus_rename() 260 *((char *)inp + offset + new_length) = '\0'; venus_rename() 262 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_rename() 264 CODA_FREE(inp, insize); venus_rename() 272 union inputArgs *inp; venus_create() local 281 inp->coda_create.VFid = *dirfid; venus_create() 282 inp->coda_create.attr.va_mode = mode; venus_create() 283 inp->coda_create.excl = excl; venus_create() 284 inp->coda_create.mode = mode; venus_create() 285 inp->coda_create.name = offset; venus_create() 288 memcpy((char *)(inp) + offset, name, length); venus_create() 289 *((char *)inp + offset + length) = '\0'; venus_create() 291 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_create() 297 CODA_FREE(inp, insize); venus_create() 304 union inputArgs *inp; venus_rmdir() local 313 inp->coda_rmdir.VFid = *dirfid; venus_rmdir() 314 inp->coda_rmdir.name = offset; venus_rmdir() 315 memcpy((char *)(inp) + offset, name, length); venus_rmdir() 316 *((char *)inp + offset + length) = '\0'; venus_rmdir() 318 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_rmdir() 320 CODA_FREE(inp, insize); venus_rmdir() 327 union inputArgs *inp; venus_remove() local 335 inp->coda_remove.VFid = *dirfid; venus_remove() 336 inp->coda_remove.name = offset; venus_remove() 337 memcpy((char *)(inp) + offset, name, length); venus_remove() 338 *((char *)inp + offset + length) = '\0'; venus_remove() 340 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_remove() 342 CODA_FREE(inp, insize); venus_remove() 349 union inputArgs *inp; venus_readlink() local 359 inp->coda_readlink.VFid = *fid; venus_readlink() 361 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_readlink() 372 CODA_FREE(inp, insize); venus_readlink() 381 union inputArgs *inp; venus_link() local 390 inp->coda_link.sourceFid = *fid; venus_link() 391 inp->coda_link.destFid = *dirfid; venus_link() 392 inp->coda_link.tname = offset; venus_link() 395 memcpy((char *)(inp) + offset, name, len); venus_link() 396 *((char *)inp + offset + len) = '\0'; venus_link() 398 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_link() 400 CODA_FREE(inp, insize); venus_link() 408 union inputArgs *inp; venus_symlink() local 417 /* inp->coda_symlink.attr = *tva; XXXXXX */ venus_symlink() 418 inp->coda_symlink.VFid = *fid; venus_symlink() 421 inp->coda_symlink.srcname = offset; venus_symlink() 423 memcpy((char *)(inp) + offset, symname, symlen); venus_symlink() 424 *((char *)inp + offset + symlen) = '\0'; venus_symlink() 428 inp->coda_symlink.tname = offset; venus_symlink() 430 memcpy((char *)(inp) + offset, name, len); venus_symlink() 431 *((char *)inp + offset + len) = '\0'; venus_symlink() 433 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_symlink() 435 CODA_FREE(inp, insize); venus_symlink() 441 union inputArgs *inp; venus_fsync() local 448 inp->coda_fsync.VFid = *fid; venus_fsync() 450 &outsize, inp); venus_fsync() 452 CODA_FREE(inp, insize); venus_fsync() 458 union inputArgs *inp; venus_access() local 465 inp->coda_access.VFid = *fid; venus_access() 466 inp->coda_access.flags = mask; venus_access() 468 error = coda_upcall(coda_vcp(sb), insize, &outsize, inp); venus_access() 470 CODA_FREE(inp, insize); venus_access() 478 union inputArgs *inp; venus_pioctl() local 497 inp->coda_ioctl.VFid = *fid; venus_pioctl() 502 inp->coda_ioctl.cmd = (cmd & ~(PIOCPARM_MASK << 16)); venus_pioctl() 504 inp->coda_ioctl.cmd |= (iocsize & PIOCPARM_MASK) << 16; venus_pioctl() 507 inp->coda_ioctl.len = data->vi.in_size; venus_pioctl() 508 inp->coda_ioctl.data = (char *)(INSIZE(ioctl)); venus_pioctl() 511 if (copy_from_user((char *)inp + (long)inp->coda_ioctl.data, venus_pioctl() 518 &outsize, inp); venus_pioctl() 546 CODA_FREE(inp, insize); venus_pioctl() 552 union inputArgs *inp; venus_statfs() local 559 error = coda_upcall(coda_vcp(dentry->d_sb), insize, &outsize, inp); venus_statfs() 568 CODA_FREE(inp, insize); venus_statfs()
|
/linux-4.1.27/lib/ |
H A D | decompress_unlz4.c | 43 u8 *inp; unlz4() local 70 inp = input; unlz4() 75 inp = large_malloc(lz4_compressbound(uncomp_chunksize)); unlz4() 76 if (!inp) { unlz4() 81 inp_start = inp; unlz4() 87 size = fill(inp, 4); unlz4() 94 chunksize = get_unaligned_le32(inp); unlz4() 97 inp += 4; unlz4() 111 size = fill(inp, 4); unlz4() 120 chunksize = get_unaligned_le32(inp); unlz4() 123 inp += 4; unlz4() 136 inp += 4; unlz4() 143 size = fill(inp, chunksize); unlz4() 155 ret = lz4_decompress(inp, &chunksize, outp, dest_len); unlz4() 158 ret = lz4_decompress_unknownoutputsize(inp, chunksize, outp, unlz4() 183 inp += chunksize; unlz4()
|
/linux-4.1.27/arch/arm/crypto/ |
H A D | sha256-armv4.pl | 44 $inp="r1"; $t4="r1"; 69 @ ldr $t1,[$inp],#4 @ $i 71 str $inp,[sp,#17*4] @ make room for $t4 80 @ ldrb $t1,[$inp,#3] @ $i 82 ldrb $t2,[$inp,#2] 83 ldrb $t0,[$inp,#1] 85 ldrb $t2,[$inp],#4 88 str $inp,[sp,#17*4] @ make room for $t4 112 ldr $t1,[$inp],#4 @ prefetch 114 ldrb $t1,[$inp,#3] 221 add $len,$inp,$len,lsl#6 @ len to point at the end of inp 222 stmdb sp!,{$ctx,$inp,$len,r4-r11,lr} 228 ldr $t1,[$inp],#4 230 ldrb $t1,[$inp,#3] 260 ldr $inp,[sp,#17*4] @ pull inp 261 ldr $t2,[sp,#18*4] @ pull inp+len 265 cmp $inp,$t2 470 add $len,$inp,$len,lsl#6 @ len to point at the end of inp 472 vld1.8 {@X[0]},[$inp]! 473 vld1.8 {@X[1]},[$inp]! 474 vld1.8 {@X[2]},[$inp]! 475 vld1.8 {@X[3]},[$inp]! 483 str $inp,[sp,#68] 518 ldr $inp,[sp,#68] 521 teq $inp,$t0 523 subeq $inp,$inp,#64 @ avoid SEGV 524 vld1.8 {@X[0]},[$inp]! @ load next input block 525 vld1.8 {@X[1]},[$inp]! 526 vld1.8 {@X[2]},[$inp]! 527 vld1.8 {@X[3]},[$inp]! 529 strne $inp,[sp,#68] 603 add $len,$inp,$len,lsl#6 @ len to point at the end of inp 606 vld1.8 {@MSG[0]-@MSG[1]},[$inp]! 607 vld1.8 {@MSG[2]-@MSG[3]},[$inp]! 615 teq $inp,$len
|
H A D | bsaes-armv7.pl | 53 my ($inp,$out,$len,$key)=("r0","r1","r2","r3"); 896 my ($out,$inp,$rounds,$const)=("r12","r4","r5","r6"); 927 vld1.8 {@XMM[7]}, [$inp]! @ load round 0 key 929 vld1.8 {@XMM[15]}, [$inp]! @ load round 1 key 962 vld1.8 {@XMM[15]}, [$inp]! @ load next round key 991 ldr r5,[$inp,#240] @ pass rounds 992 mov r4,$inp @ pass key 1009 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input 1010 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]! 1012 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]! 1014 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]! 1039 ldr r5,[$inp,#240] @ pass rounds 1040 mov r4,$inp @ pass key 1059 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input 1060 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]! 1062 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]! 1064 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]! 1084 my ($inp,$out,$len,$key, $ivp,$fp,$rounds)=map("r$_",(0..3,8..10)); 1160 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input 1161 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]! 1167 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]! 1169 vld1.8 {@XMM[6]-@XMM[7]}, [$inp] 1170 sub $inp, $inp, #0x60 1176 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1178 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]! 1181 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]! 1184 vld1.8 {@XMM[14]-@XMM[15]}, [$inp]! 1202 vld1.8 {@XMM[0]}, [$inp]! @ load input 1205 vld1.8 {@XMM[1]}, [$inp]! 1214 vld1.8 {@XMM[2]}, [$inp]! 1217 vld1.8 {@XMM[3]}, [$inp]! 1219 vld1.8 {@XMM[4]}, [$inp]! 1222 vld1.8 {@XMM[5]}, [$inp]! 1224 vld1.8 {@XMM[6]}, [$inp]! 1225 sub $inp, $inp, #0x70 1230 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1232 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]! 1235 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]! 1238 vld1.8 {@XMM[15]}, [$inp]! 1250 sub $inp, $inp, #0x60 1253 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1255 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]! 1258 vld1.8 {@XMM[12]}, [$inp]! 1261 vld1.8 {@XMM[15]}, [$inp]! 1271 sub $inp, $inp, #0x50 1274 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1276 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]! 1279 vld1.8 {@XMM[15]}, [$inp]! 1289 sub $inp, $inp, #0x40 1292 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1294 vld1.8 {@XMM[10]}, [$inp]! 1297 vld1.8 {@XMM[15]}, [$inp]! 1305 sub $inp, $inp, #0x30 1308 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input 1310 vld1.8 {@XMM[15]}, [$inp]! 1318 sub $inp, $inp, #0x20 1321 vld1.8 {@XMM[8]}, [$inp]! @ reload input 1323 vld1.8 {@XMM[15]}, [$inp]! @ reload input 1329 sub $inp, $inp, #0x10 1360 my ($inp,$out,$len,$key, $ctr,$fp,$rounds)=(map("r$_",(0..3,8..10))); 1459 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ load input 1460 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]! 1463 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]! 1466 vld1.8 {@XMM[14]-@XMM[15]}, [$inp]! 1490 vld1.8 {@XMM[8]}, [$inp]! @ load input 1495 vld1.8 {@XMM[9]}, [$inp]! 1499 vld1.8 {@XMM[10]}, [$inp]! 1504 vld1.8 {@XMM[11]}, [$inp]! 1508 vld1.8 {@XMM[12]}, [$inp]! 1513 vld1.8 {@XMM[13]}, [$inp]! 1517 vld1.8 {@XMM[14]}, [$inp] 1543 mov r4, $inp @ copy arguments 1587 # void bsaes_xts_[en|de]crypt(const char *inp,char *out,size_t len, 1591 my ($inp,$out,$len,$key,$rounds,$magic,$fp)=(map("r$_",(7..10,1..3))); 1606 mov $inp, r0 1685 vld1.8 {@XMM[$i-10]}, [$inp]! 1698 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]! 1755 vld1.8 {@XMM[$i-10]}, [$inp]! 1767 vld1.8 {@XMM[6]}, [$inp]! 1966 ldrb r0, [$inp], #1 2020 mov $inp, r0 2110 vld1.8 {@XMM[$i-10]}, [$inp]! 2123 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]! 2180 vld1.8 {@XMM[$i-10]}, [$inp]! 2192 vld1.8 {@XMM[6]}, [$inp]! 2394 vld1.8 {@XMM[0]}, [$inp]! 2411 ldrb r0, [$inp], #1
|
H A D | aes-armv4.S | 154 mov r12,r0 @ inp 404 mov r12,r0 @ inp 849 mov r12,r0 @ inp
|
/linux-4.1.27/drivers/crypto/vmx/ |
H A D | aesp8-ppc.pl | 61 my ($inp,$bits,$out,$ptr,$cnt,$rounds)=map("r$_",(3..8)); 93 ${UCMP}i $inp,0 94 beq- Lenc_key_abort # if ($inp==0) return -1; 112 neg r9,$inp 113 lvx $in0,0,$inp 114 addi $inp,$inp,15 # 15 is not typo 118 lvx $in1,0,$inp 135 addi $inp,$inp,8 137 addi $inp,$inp,8 199 addi $inp,$out,15 # 15 is not typo 207 lvx $tmp,0,$inp 272 addi $inp,$out,15 # 15 is not typo 282 lvx $tmp,0,$inp 314 addi $inp,$out,15 # 15 is not typo 333 lvx $in1,0,$inp # redundant in aligned case 335 stvx $in1,0,$inp 359 subi $inp,$out,240 # first round key 361 add $out,$inp,$cnt # last round key 365 lwz r0, 0($inp) 366 lwz r6, 4($inp) 367 lwz r7, 8($inp) 368 lwz r8, 12($inp) 369 addi $inp,$inp,16 379 stw r9, -16($inp) 380 stw r10,-12($inp) 381 stw r11,-8($inp) 382 stw r12,-4($inp) 400 my ($inp,$out,$key,$rounds,$idx)=map("r$_",(3..7)); 410 lvx v0,0,$inp 412 lvx v1,$idx,$inp 413 lvsl v2,0,$inp # inpperm 475 my ($inp,$out,$len,$key,$ivp,$enc,$rounds,$idx)=map("r$_",(3..10)); 499 neg r11,$inp 504 lvx $inptail,0,$inp 505 addi $inp,$inp,15 # 15 is not typo 521 lvx $inptail,0,$inp 522 addi $inp,$inp,16 569 lvx $inptail,0,$inp 570 addi $inp,$inp,16 737 #lvx $inptail,0,$inp # "caller" already did this 738 #addi $inp,$inp,15 # 15 is not typo 739 subi $inp,$inp,15 # undo "caller" 742 lvx_u $in0,$x00,$inp # load first 8 "words" 745 lvx_u $in1,$x10,$inp 747 lvx_u $in2,$x20,$inp 749 lvx_u $in3,$x30,$inp 751 lvx_u $in4,$x40,$inp 754 lvx_u $in5,$x50,$inp 757 lvx_u $in6,$x60,$inp 760 lvx_u $in7,$x70,$inp 761 addi $inp,$inp,0x80 827 add $inp,$inp,r0 # $inp is adjusted in such 880 lvx_u $in0,$x00,$inp # load next input block 882 lvx_u $in1,$x10,$inp 885 lvx_u $in2,$x20,$inp 888 lvx_u $in3,$x30,$inp 891 lvx_u $in4,$x40,$inp 894 lvx_u $in5,$x50,$inp 897 lvx_u $in6,$x60,$inp 900 lvx_u $in7,$x70,$inp 901 addi $inp,$inp,0x80 1230 my ($inp,$out,$len,$key,$ivp,$x10,$rounds,$idx)=map("r$_",(3..10)); 1257 neg r11,$inp 1262 lvx $inptail,0,$inp 1263 addi $inp,$inp,15 # 15 is not typo 1303 lvx $inptail,0,$inp 1304 addi $inp,$inp,16 1441 subi $inp,$inp,15 # undo "caller" 1537 lvx_u $in0,$x00,$inp # load input 1539 lvx_u $in1,$x10,$inp 1541 lvx_u $in2,$x20,$inp 1543 lvx_u $in3,$x30,$inp 1545 lvx_u $in4,$x40,$inp 1547 lvx_u $in5,$x50,$inp 1549 lvx_u $in6,$x60,$inp 1551 lvx_u $in7,$x70,$inp 1552 addi $inp,$inp,0x80 1571 add $inp,$inp,r0 # $inp is adjusted in such
|
H A D | ghashp8-ppc.pl | 45 my ($Xip,$Htbl,$inp,$len)=map("r$_",(3..6)); # argument block 171 lvx_u $IN,0,$inp 172 addi $inp,$inp,16 186 add $inp,$inp,r0 197 lvx_u $IN,0,$inp 198 addi $inp,$inp,16
|
/linux-4.1.27/drivers/media/pci/cx18/ |
H A D | cx18-video.c | 28 int inp = cx->active_input; cx18_video_set_io() local 31 cx->card->video_inputs[inp].video_input, 0, 0); cx18_video_set_io()
|
H A D | cx18-ioctl.c | 508 int cx18_s_input(struct file *file, void *fh, unsigned int inp) cx18_s_input() argument 514 cx->card->video_inputs + inp; cx18_s_input() 516 if (inp >= cx->nof_inputs) cx18_s_input() 519 if (inp == cx->active_input) { cx18_s_input() 525 cx->active_input, inp); cx18_s_input() 527 cx->active_input = inp; cx18_s_input() 529 cx->audio_input = cx->card->video_inputs[inp].audio_index; cx18_s_input()
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
H A D | types.h | 32 #define inp(p) ioread8(p) macro
|
H A D | supern_2.h | 957 #define PL_PARITY_ERR 0x0001 /* p. error h.b.detected on TX9-0 inp*/
|
H A D | skfbi.h | 963 #define READ_PROM(a) ((u_char)inp(a))
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
H A D | ivtv-routing.c | 64 int inp = itv->active_input; ivtv_video_set_io() local 69 itv->card->video_inputs[inp].video_input, 0, 0); ivtv_video_set_io() 71 type = itv->card->video_inputs[inp].video_type; ivtv_video_set_io()
|
H A D | ivtv-ioctl.h | 33 int ivtv_s_input(struct file *file, void *fh, unsigned int inp);
|
H A D | ivtv-ioctl.c | 993 int ivtv_s_input(struct file *file, void *fh, unsigned int inp) ivtv_s_input() argument 999 if (inp >= itv->nof_inputs) ivtv_s_input() 1002 if (inp == itv->active_input) { ivtv_s_input() 1012 itv->active_input, inp); ivtv_s_input() 1014 itv->active_input = inp; ivtv_s_input() 1017 itv->audio_input = itv->card->video_inputs[inp].audio_index; ivtv_s_input() 1019 if (itv->card->video_inputs[inp].video_type == IVTV_CARD_INPUT_VID_TUNER) ivtv_s_input()
|
/linux-4.1.27/drivers/media/platform/vivid/ |
H A D | vivid-vid-cap.c | 1251 struct v4l2_input *inp) vidioc_enum_input() 1255 if (inp->index >= dev->num_inputs) vidioc_enum_input() 1258 inp->type = V4L2_INPUT_TYPE_CAMERA; vidioc_enum_input() 1259 switch (dev->input_type[inp->index]) { vidioc_enum_input() 1261 snprintf(inp->name, sizeof(inp->name), "Webcam %u", vidioc_enum_input() 1262 dev->input_name_counter[inp->index]); vidioc_enum_input() 1263 inp->capabilities = 0; vidioc_enum_input() 1266 snprintf(inp->name, sizeof(inp->name), "TV %u", vidioc_enum_input() 1267 dev->input_name_counter[inp->index]); vidioc_enum_input() 1268 inp->type = V4L2_INPUT_TYPE_TUNER; vidioc_enum_input() 1269 inp->std = V4L2_STD_ALL; vidioc_enum_input() 1271 inp->audioset = (1 << ARRAY_SIZE(vivid_audio_inputs)) - 1; vidioc_enum_input() 1272 inp->capabilities = V4L2_IN_CAP_STD; vidioc_enum_input() 1275 snprintf(inp->name, sizeof(inp->name), "S-Video %u", vidioc_enum_input() 1276 dev->input_name_counter[inp->index]); vidioc_enum_input() 1277 inp->std = V4L2_STD_ALL; vidioc_enum_input() 1279 inp->audioset = (1 << ARRAY_SIZE(vivid_audio_inputs)) - 1; vidioc_enum_input() 1280 inp->capabilities = V4L2_IN_CAP_STD; vidioc_enum_input() 1283 snprintf(inp->name, sizeof(inp->name), "HDMI %u", vidioc_enum_input() 1284 dev->input_name_counter[inp->index]); vidioc_enum_input() 1285 inp->capabilities = V4L2_IN_CAP_DV_TIMINGS; vidioc_enum_input() 1288 inp->status |= V4L2_IN_ST_NO_SIGNAL; vidioc_enum_input() 1291 inp->status |= V4L2_IN_ST_NO_H_LOCK; vidioc_enum_input() 1295 inp->status |= V4L2_IN_ST_HFLIP; vidioc_enum_input() 1297 inp->status |= V4L2_IN_ST_VFLIP; vidioc_enum_input() 1298 if (dev->input == inp->index && vivid_is_sdtv_cap(dev)) { vidioc_enum_input() 1300 inp->status |= V4L2_IN_ST_NO_SIGNAL; vidioc_enum_input() 1302 inp->status |= V4L2_IN_ST_NO_H_LOCK; vidioc_enum_input() 1306 inp->status |= V4L2_IN_ST_COLOR_KILL; vidioc_enum_input() 1309 inp->status |= V4L2_IN_ST_NO_H_LOCK; vidioc_enum_input() 1250 vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vidioc_enum_input() argument
|
H A D | vivid-vid-cap.h | 51 int vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp);
|
/linux-4.1.27/drivers/s390/crypto/ |
H A D | zcrypt_msgtype50.c | 189 unsigned char *mod, *exp, *inp; ICAMEX_msg_to_type50MEX_msg() local 203 inp = meb1->message + sizeof(meb1->message) - mod_len; ICAMEX_msg_to_type50MEX_msg() 213 inp = meb2->message + sizeof(meb2->message) - mod_len; ICAMEX_msg_to_type50MEX_msg() 224 inp = meb3->message + sizeof(meb3->message) - mod_len; ICAMEX_msg_to_type50MEX_msg() 229 copy_from_user(inp, mex->inputdata, mod_len)) ICAMEX_msg_to_type50MEX_msg() 248 unsigned char *p, *q, *dp, *dq, *u, *inp; ICACRT_msg_to_type50CRT_msg() local 271 inp = crb1->message + sizeof(crb1->message) - mod_len; ICACRT_msg_to_type50CRT_msg() 284 inp = crb2->message + sizeof(crb2->message) - mod_len; ICACRT_msg_to_type50CRT_msg() 298 inp = crb3->message + sizeof(crb3->message) - mod_len; ICACRT_msg_to_type50CRT_msg() 311 copy_from_user(inp, crt->inputdata, mod_len)) ICACRT_msg_to_type50CRT_msg()
|
H A D | zcrypt_pcica.c | 137 unsigned char *p, *q, *dp, *dq, *u, *inp; ICACRT_msg_to_type4CRT_msg() local 157 inp = scr->message + sizeof(scr->message) - mod_len; ICACRT_msg_to_type4CRT_msg() 171 inp = lcr->message + sizeof(lcr->message) - mod_len; ICACRT_msg_to_type4CRT_msg() 179 copy_from_user(inp, crt->inputdata, mod_len)) ICACRT_msg_to_type4CRT_msg()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | syscalls.c | 86 ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp) ppc_select() argument 93 || __get_user(inp, ((fd_set __user * __user *)(buffer+1))) ppc_select() 99 return sys_select(n, inp, outp, exp, tvp); ppc_select()
|
H A D | sys_ppc32.c | 56 asmlinkage long ppc32_select(u32 n, compat_ulong_t __user *inp, ppc32_select() argument 61 return compat_sys_select((int)n, inp, outp, exp, compat_ptr(tvp_x)); ppc32_select()
|
/linux-4.1.27/drivers/net/fddi/skfp/ |
H A D | drvfbi.c | 109 i = (int) inp(ADDR(B0_CTRL)) ; /* do dummy read */ card_start() 134 rev_id = inp(PCI_C(PCI_REV_ID)) ; card_start() 293 bitrev8(inp(ADDR(B2_MAC_0+i))); read_address() 297 ConnectorType = inp(ADDR(B2_CONN_TYP)) ; read_address() 298 PmdType = inp(ADDR(B2_PMD_TYP)) ; read_address() 328 if (!(inp(ADDR(B0_DAS)) & DAS_AVAIL)) init_board() 333 if (!(inp(ADDR(B0_DAS)) & DAS_BYP_ST)) init_board() 369 return (inp(ADDR(B0_DAS)) & DAS_BYP_ST) ? TRUE : FALSE; sm_pm_bypass_present()
|
H A D | fplustm.c | 57 #define DUMMY_READ() smc->hw.mc_dummy = (u_short) inp(ADDR(B0_RAP))
|
H A D | pcmplc.c | 1852 if (cmd & PL_PARITY_ERR) { /* p. error dedected on TX9-0 inp */ plc_irq()
|
/linux-4.1.27/drivers/media/common/siano/ |
H A D | smscoreapi.h | 52 #define SMS_FW_ATSC_DENVER "atsc_denver.inp" 53 #define SMS_FW_CMMB_MING_APP "cmmb_ming_app.inp" 54 #define SMS_FW_CMMB_VEGA_12MHZ "cmmb_vega_12mhz.inp" 55 #define SMS_FW_CMMB_VENICE_12MHZ "cmmb_venice_12mhz.inp" 56 #define SMS_FW_DVBH_RIO "dvbh_rio.inp" 57 #define SMS_FW_DVB_NOVA_12MHZ_B0 "dvb_nova_12mhz_b0.inp" 58 #define SMS_FW_DVB_NOVA_12MHZ "dvb_nova_12mhz.inp" 59 #define SMS_FW_DVB_RIO "dvb_rio.inp" 60 #define SMS_FW_FM_RADIO "fm_radio.inp" 61 #define SMS_FW_FM_RADIO_RIO "fm_radio_rio.inp" 64 #define SMS_FW_ISDBT_NOVA_12MHZ_B0 "isdbt_nova_12mhz_b0.inp" 65 #define SMS_FW_ISDBT_NOVA_12MHZ "isdbt_nova_12mhz.inp" 66 #define SMS_FW_ISDBT_PELE "isdbt_pele.inp" 67 #define SMS_FW_ISDBT_RIO "isdbt_rio.inp" 71 #define SMS_FW_TDMB_DENVER "tdmb_denver.inp" 72 #define SMS_FW_TDMB_NOVA_12MHZ_B0 "tdmb_nova_12mhz_b0.inp" 73 #define SMS_FW_TDMB_NOVA_12MHZ "tdmb_nova_12mhz.inp"
|
/linux-4.1.27/fs/ |
H A D | select.c | 429 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp; do_select() local 432 inp = fds->in; outp = fds->out; exp = fds->ex; do_select() 439 in = *inp++; out = *outp++; ex = *exp++; do_select() 547 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, core_sys_select() argument 591 if ((ret = get_fd_set(n, inp, fds.in)) || core_sys_select() 610 if (set_fd_set(n, inp, fds.res_in) || core_sys_select() 622 SYSCALL_DEFINE5(select, int, n, fd_set __user *, inp, fd_set __user *, outp, SYSCALL_DEFINE5() 640 ret = core_sys_select(n, inp, outp, exp, to); SYSCALL_DEFINE5() 646 static long do_pselect(int n, fd_set __user *inp, fd_set __user *outp, do_pselect() argument 674 ret = core_sys_select(n, inp, outp, exp, to); do_pselect() 700 SYSCALL_DEFINE6(pselect6, int, n, fd_set __user *, inp, fd_set __user *, outp, SYSCALL_DEFINE6() 715 return do_pselect(n, inp, outp, exp, tsp, up, sigsetsize); SYSCALL_DEFINE6() 721 fd_set __user *inp, *outp, *exp; member in struct:sel_arg_struct 731 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp); SYSCALL_DEFINE1()
|
H A D | compat.c | 1234 int compat_core_sys_select(int n, compat_ulong_t __user *inp, compat_core_sys_select() argument 1275 if ((ret = compat_get_fd_set(n, inp, fds.in)) || compat_core_sys_select() 1294 if (compat_set_fd_set(n, inp, fds.res_in) || compat_core_sys_select() 1305 COMPAT_SYSCALL_DEFINE5(select, int, n, compat_ulong_t __user *, inp, COMPAT_SYSCALL_DEFINE5() 1324 ret = compat_core_sys_select(n, inp, outp, exp, to); COMPAT_SYSCALL_DEFINE5() 1332 compat_uptr_t inp; member in struct:compat_sel_arg_struct 1344 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp), COMPAT_SYSCALL_DEFINE1() 1348 static long do_compat_pselect(int n, compat_ulong_t __user *inp, do_compat_pselect() argument 1379 ret = compat_core_sys_select(n, inp, outp, exp, to); do_compat_pselect() 1399 COMPAT_SYSCALL_DEFINE6(pselect6, int, n, compat_ulong_t __user *, inp, COMPAT_SYSCALL_DEFINE6() 1414 return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up), COMPAT_SYSCALL_DEFINE6()
|
/linux-4.1.27/drivers/media/usb/go7007/ |
H A D | go7007-v4l2.c | 627 struct v4l2_input *inp) vidioc_enum_input() 631 if (inp->index >= go->board_info->num_inputs) vidioc_enum_input() 634 strncpy(inp->name, go->board_info->inputs[inp->index].name, vidioc_enum_input() 635 sizeof(inp->name)); vidioc_enum_input() 639 inp->index == 0) vidioc_enum_input() 640 inp->type = V4L2_INPUT_TYPE_TUNER; vidioc_enum_input() 642 inp->type = V4L2_INPUT_TYPE_CAMERA; vidioc_enum_input() 645 inp->audioset = (1 << go->board_info->num_aud_inputs) - 1; vidioc_enum_input() 647 inp->audioset = 0; vidioc_enum_input() 648 inp->tuner = 0; vidioc_enum_input() 650 inp->std = video_devdata(file)->tvnorms; vidioc_enum_input() 652 inp->std = 0; vidioc_enum_input() 626 vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vidioc_enum_input() argument
|
/linux-4.1.27/drivers/media/platform/ |
H A D | timblogiw.c | 361 struct v4l2_input *inp) timblogiw_enuminput() 368 if (inp->index != 0) timblogiw_enuminput() 371 inp->index = 0; timblogiw_enuminput() 373 strncpy(inp->name, "Timb input 1", sizeof(inp->name) - 1); timblogiw_enuminput() 374 inp->type = V4L2_INPUT_TYPE_CAMERA; timblogiw_enuminput() 376 inp->std = 0; timblogiw_enuminput() 378 inp->std |= timblogiw_tvnorms[i].std; timblogiw_enuminput() 360 timblogiw_enuminput(struct file *file, void *priv, struct v4l2_input *inp) timblogiw_enuminput() argument
|
H A D | arv.c | 425 static int ar_g_input(struct file *file, void *fh, unsigned int *inp) ar_g_input() argument 427 *inp = 0; ar_g_input() 431 static int ar_s_input(struct file *file, void *fh, unsigned int inp) ar_s_input() argument 433 return inp ? -EINVAL : 0; ar_s_input()
|
H A D | fsl-viu.c | 982 struct v4l2_input *inp) vidioc_enum_input() 986 if (inp->index != 0) vidioc_enum_input() 989 inp->type = V4L2_INPUT_TYPE_CAMERA; vidioc_enum_input() 990 inp->std = fh->dev->vdev->tvnorms; vidioc_enum_input() 991 strcpy(inp->name, "Camera"); vidioc_enum_input() 981 vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vidioc_enum_input() argument
|
/linux-4.1.27/drivers/media/usb/siano/ |
H A D | smsusb.c | 222 "dvbt_stellar_usb.inp", 223 "dvbh_stellar_usb.inp", 224 "tdmb_stellar_usb.inp", 226 "dvbt_bda_stellar_usb.inp",
|
/linux-4.1.27/include/linux/ |
H A D | poll.h | 159 extern int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp,
|
H A D | compat.h | 364 asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp, 540 asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
|
H A D | syscalls.h | 624 asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp,
|
/linux-4.1.27/drivers/scsi/lpfc/ |
H A D | lpfc_ct.c | 291 struct lpfc_dmabuf *inp, struct lpfc_dmabuf *outp, lpfc_gen_req() 321 geniocb->context1 = (uint8_t *) inp; lpfc_gen_req() 737 struct lpfc_dmabuf *inp = (struct lpfc_dmabuf *) cmdiocb->context1; lpfc_cmpl_ct_cmd_gff_id() local 744 did = ((struct lpfc_sli_ct_request *) inp->virt)->un.gff.PortId; lpfc_cmpl_ct_cmd_gff_id() 859 struct lpfc_dmabuf *inp; lpfc_cmpl_ct() local 874 inp = (struct lpfc_dmabuf *) cmdiocb->context1; lpfc_cmpl_ct() 878 cmdcode = be16_to_cpu(((struct lpfc_sli_ct_request *) inp->virt)-> lpfc_cmpl_ct() 1327 struct lpfc_dmabuf *inp = cmdiocb->context1; lpfc_cmpl_ct_cmd_fdmi() local 1330 struct lpfc_sli_ct_request *CTcmd = inp->virt; lpfc_cmpl_ct_cmd_fdmi() 1372 struct lpfc_dmabuf *inp = cmdiocb->context1; lpfc_cmpl_ct_disc_fdmi() local 1373 struct lpfc_sli_ct_request *CTcmd = inp->virt; lpfc_cmpl_ct_disc_fdmi() 290 lpfc_gen_req(struct lpfc_vport *vport, struct lpfc_dmabuf *bmp, struct lpfc_dmabuf *inp, struct lpfc_dmabuf *outp, void (*cmpl) (struct lpfc_hba *, struct lpfc_iocbq *, struct lpfc_iocbq *), struct lpfc_nodelist *ndlp, uint32_t usr_flg, uint32_t num_entry, uint32_t tmo, uint8_t retry) lpfc_gen_req() argument
|
/linux-4.1.27/drivers/media/pci/sta2x11/ |
H A D | sta2x11_vip.c | 507 struct v4l2_input *inp) vidioc_enum_input() 509 if (inp->index > 1) vidioc_enum_input() 512 inp->type = V4L2_INPUT_TYPE_CAMERA; vidioc_enum_input() 513 inp->std = V4L2_STD_ALL; vidioc_enum_input() 514 sprintf(inp->name, "Camera %u", inp->index); vidioc_enum_input() 506 vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vidioc_enum_input() argument
|
/linux-4.1.27/drivers/media/usb/s2255/ |
H A D | s2255drv.c | 1183 struct v4l2_input *inp) vidioc_enum_input() 1189 if (inp->index != 0) vidioc_enum_input() 1191 inp->type = V4L2_INPUT_TYPE_CAMERA; vidioc_enum_input() 1192 inp->std = S2255_NORMS; vidioc_enum_input() 1193 inp->status = 0; vidioc_enum_input() 1200 inp->status = (status & 0x01) ? 0 vidioc_enum_input() 1206 strlcpy(inp->name, "Composite", sizeof(inp->name)); vidioc_enum_input() 1209 strlcpy(inp->name, (vc->idx < 2) ? "Composite" : "S-Video", vidioc_enum_input() 1210 sizeof(inp->name)); vidioc_enum_input() 1182 vidioc_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vidioc_enum_input() argument
|
/linux-4.1.27/drivers/s390/block/ |
H A D | dasd_eer.c | 532 static int dasd_eer_open(struct inode *inp, struct file *filp) dasd_eer_open() argument 567 return nonseekable_open(inp,filp); dasd_eer_open() 570 static int dasd_eer_close(struct inode *inp, struct file *filp) dasd_eer_close() argument
|
/linux-4.1.27/drivers/net/can/sja1000/ |
H A D | plx_pci.c | 2 * Copyright (C) 2008-2010 Pavel Cheblakov <P.B.Cheblakov@inp.nsk.su> 36 MODULE_AUTHOR("Pavel Cheblakov <P.B.Cheblakov@inp.nsk.su>");
|
/linux-4.1.27/drivers/media/pci/zoran/ |
H A D | zoran_driver.c | 2434 struct v4l2_input *inp) zoran_enum_input() 2439 if (inp->index >= zr->card.inputs) zoran_enum_input() 2442 strncpy(inp->name, zr->card.input[inp->index].name, zoran_enum_input() 2443 sizeof(inp->name) - 1); zoran_enum_input() 2444 inp->type = V4L2_INPUT_TYPE_CAMERA; zoran_enum_input() 2445 inp->std = V4L2_STD_ALL; zoran_enum_input() 2449 decoder_call(zr, video, g_input_status, &inp->status); zoran_enum_input() 2433 zoran_enum_input(struct file *file, void *__fh, struct v4l2_input *inp) zoran_enum_input() argument
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
H A D | vpfe_video.c | 774 struct v4l2_input *inp) vpfe_enum_input() 782 if (inp->index < sdinfo->num_inputs) { vpfe_enum_input() 783 memcpy(inp, &sdinfo->inputs[inp->index], vpfe_enum_input() 773 vpfe_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vpfe_enum_input() argument
|
/linux-4.1.27/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-v4l2.c | 270 static int pvr2_s_input(struct file *file, void *priv, unsigned int inp) pvr2_s_input() argument 275 if (inp >= fh->input_cnt) pvr2_s_input() 279 fh->input_map[inp]); pvr2_s_input()
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
H A D | soc_camera.c | 310 struct v4l2_input *inp) soc_camera_enum_input() 312 if (inp->index != 0) soc_camera_enum_input() 316 inp->type = V4L2_INPUT_TYPE_CAMERA; soc_camera_enum_input() 317 strcpy(inp->name, "Camera"); soc_camera_enum_input() 309 soc_camera_enum_input(struct file *file, void *priv, struct v4l2_input *inp) soc_camera_enum_input() argument
|
/linux-4.1.27/include/media/ |
H A D | v4l2-ioctl.h | 142 struct v4l2_input *inp);
|
/linux-4.1.27/arch/hexagon/lib/ |
H A D | memcpy.S | 189 #define over R20 /* nr of bytes > last inp buf dword boundary */
|
/linux-4.1.27/fs/fscache/ |
H A D | operation.c | 161 kdebug("ops=%u inp=%u exc=%u", fscache_report_unexpected_submission()
|
/linux-4.1.27/arch/alpha/kernel/ |
H A D | osf_sys.c | 1091 SYSCALL_DEFINE5(osf_select, int, n, fd_set __user *, inp, fd_set __user *, outp, SYSCALL_DEFINE5() 1115 return core_sys_select(n, inp, outp, exp, to); SYSCALL_DEFINE5()
|
/linux-4.1.27/drivers/media/platform/davinci/ |
H A D | vpfe_capture.c | 1076 struct v4l2_input *inp) vpfe_enum_input() 1087 inp->index) < 0) { vpfe_enum_input() 1093 memcpy(inp, &sdinfo->inputs[index], sizeof(struct v4l2_input)); vpfe_enum_input() 1075 vpfe_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vpfe_enum_input() argument
|
/linux-4.1.27/drivers/isdn/hisax/ |
H A D | elsa_ser.c | 64 debugl1(cs, "inp %s %02x", ModemIn[offset], val); serial_inp()
|
/linux-4.1.27/drivers/scsi/ |
H A D | advansys.c | 124 #define inp(port) inb(port) macro 878 #define AscGetChipSignatureByte(port) (uchar)inp((port)+IOP_SIG_BYTE) 880 #define AscGetChipVerNo(port) (uchar)inp((port)+IOP_VERSION) 885 #define AscGetChipEEPCmd(port) (uchar)inp((port)+IOP_EEP_CMD) 893 #define AscGetChipIFC(port) (uchar)inp((port)+IOP_REG_IFC) 897 #define AscGetChipControl(port) (uchar)inp((port)+IOP_CTRL) 899 #define AscGetChipSyn(port) (uchar)inp((port)+IOP_SYN_OFFSET) 905 #define AscGetExtraControl(port) (uchar)inp((port)+IOP_EXTRA_CONTROL) 909 #define AscReadChipIX(port) (uchar)inp((port)+IOP_REG_IX) 913 #define AscReadChipQP(port) (uchar)inp((port)+IOP_REG_QP) 919 #define AscReadChipDmaSpeed(port) (uchar)inp((port)+IOP_DMA_SPEED) 929 #define AscReadChipDvcID(port) (uchar)inp((port)+IOP_REG_ID) 9075 sc = inp(iop_base + IOP_REG_SC); AscGetChipScsiCtrl() 9088 revision = inp(eisa_iop); AscGetChipVersion() 11422 (ushort)inp(iop + 1), (ushort)inpw(iop)); advansys_board_found()
|
/linux-4.1.27/drivers/media/platform/am437x/ |
H A D | am437x-vpfe.c | 1735 struct v4l2_input *inp) vpfe_enum_input() 1744 inp->index) < 0) { vpfe_enum_input() 1750 *inp = sdinfo->inputs[index]; vpfe_enum_input() 1734 vpfe_enum_input(struct file *file, void *priv, struct v4l2_input *inp) vpfe_enum_input() argument
|
/linux-4.1.27/drivers/ata/ |
H A D | sata_mv.c | 3186 ZERO(0x014); /* rq inp */ mv5_reset_hc_port() 3190 ZERO(0x020); /* respq inp */ mv5_reset_hc_port() 3468 ZERO(0x014); /* rq inp */ mv_soc_reset_hc_port() 3472 ZERO(0x020); /* respq inp */ mv_soc_reset_hc_port()
|
/linux-4.1.27/fs/cachefiles/ |
H A D | namei.c | 43 pr_err("%sops=%u inp=%u exc=%u\n", __cachefiles_printk_object()
|
/linux-4.1.27/drivers/mmc/host/ |
H A D | vub300.c | 309 u8 data_inp_ep; /* EndPoint for inp data */
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
H A D | qib_iba7322.c | 8349 int len, u8 *inp, u8 *outp) qib_r_shift() 8365 if (inp) { qib_r_shift() 8366 int tdi = inp[pos >> 3] >> (pos & 7); qib_r_shift() 8348 qib_r_shift(struct qib_devdata *dd, int bisten, int len, u8 *inp, u8 *outp) qib_r_shift() argument
|