/linux-4.1.27/drivers/staging/skein/ |
D | threefish_block.c | 7 b2 = input[2], b3 = input[3]; in threefish_encrypt_256() local 18 b3 += k3; in threefish_encrypt_256() 19 b2 += b3 + k2 + t1; in threefish_encrypt_256() 20 b3 = ((b3 << 16) | (b3 >> (64 - 16))) ^ b2; in threefish_encrypt_256() 22 b0 += b3; in threefish_encrypt_256() 23 b3 = ((b3 << 52) | (b3 >> (64 - 52))) ^ b0; in threefish_encrypt_256() 31 b2 += b3; in threefish_encrypt_256() 32 b3 = ((b3 << 40) | (b3 >> (64 - 40))) ^ b2; in threefish_encrypt_256() 34 b0 += b3; in threefish_encrypt_256() 35 b3 = ((b3 << 5) | (b3 >> (64 - 5))) ^ b0; in threefish_encrypt_256() [all …]
|
/linux-4.1.27/arch/x86/net/ |
D | bpf_jit_comp.c | 44 #define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3) argument 45 #define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4) argument 50 #define EMIT3_off32(b1, b2, b3, off) \ argument 51 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0) 52 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument 53 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0) 269 u8 b1 = 0, b2 = 0, b3 = 0; in do_jit() local 339 case BPF_ADD: b3 = 0xC0; break; in do_jit() 340 case BPF_SUB: b3 = 0xE8; break; in do_jit() 341 case BPF_AND: b3 = 0xE0; break; in do_jit() [all …]
|
/linux-4.1.27/drivers/atm/ |
D | fore200e.h | 71 #define BITFIELD3(b1, b2, b3) b1; b2; b3; argument 72 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4; argument 73 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5; argument 74 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6; argument 77 #define BITFIELD3(b1, b2, b3) b3; b2; b1; argument 78 #define BITFIELD4(b1, b2, b3, b4) b4; b3; b2; b1; argument 79 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1; argument 80 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1; argument
|
/linux-4.1.27/tools/vm/ |
D | slabinfo.c | 748 char b1[20], b2[20], b3[20], b4[20]; in totals() local 925 store_size(b3, total_waste * 100 / total_used); in totals() 926 printf("Memory used: %6s # Loss : %6s MRatio:%6s%%\n", b1, b2, b3); in totals() 929 store_size(b3, total_partobj * 100 / total_objects); in totals() 930 printf("# Objects : %6s # PartObj: %6s ORatio:%6s%%\n", b1, b2, b3); in totals() 937 store_size(b3, max_objects);store_size(b4, total_objects); in totals() 939 b1, b2, b3, b4); in totals() 942 store_size(b3, max_slabs);store_size(b4, total_slabs); in totals() 944 b1, b2, b3, b4); in totals() 947 store_size(b3, max_partial);store_size(b4, total_partial); in totals() [all …]
|
/linux-4.1.27/arch/arm/include/asm/ |
D | xor.h | 35 : "=r" (src), "=r" (b1), "=r" (b2), "=r" (b3), "=r" (b4) \ 37 __XOR(a1, b1); __XOR(a2, b2); __XOR(a3, b3); __XOR(a4, b4) 59 register unsigned int b3 __asm__("ip"); in xor_arm4regs_2() 80 register unsigned int b3 __asm__("ip"); in xor_arm4regs_3()
|
/linux-4.1.27/arch/blackfin/include/asm/ |
D | context.S | 45 [--sp] = b3; 117 [--sp] = b3; 176 [--sp] = b3; 251 b3 = [sp++]; define 321 b3 = [sp++]; define
|
D | dpmc.h | 94 [--sp] = b3; 148 b3 = [sp++];
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
D | mdfld_dsi_pkg_sender.c | 249 u8 b1, b2, b3, b4; in send_long_pkg() local 269 b3 = *p++; in send_long_pkg() 272 REG_WRITE(data_reg, b4 << 24 | b3 << 16 | b2 << 8 | b1); in send_long_pkg() 277 b1 = 0; b2 = 0; b3 = 0; in send_long_pkg() 283 b3 = *p++; in send_long_pkg() 294 REG_WRITE(data_reg, b3 << 16 | b2 << 8 | b1); in send_long_pkg()
|
/linux-4.1.27/arch/s390/net/ |
D | bpf_jit_comp.c | 151 #define EMIT4_RRF(op, b1, b2, b3) \ argument 153 _EMIT4(op | reg_high(b3) << 8 | reg(b1, b2)); \ 156 REG_SET_SEEN(b3); \ 201 #define EMIT6_DISP(op1, op2, b1, b2, b3, disp) \ argument 204 reg_high(b3) << 8, op2, disp); \ 207 REG_SET_SEEN(b3); \ 217 #define EMIT6_DISP_LH(op1, op2, b1, b2, b3, disp) \ argument 220 reg_high(b3) << 8, op2, disp); \ 223 REG_SET_SEEN(b3); \
|
/linux-4.1.27/drivers/video/console/ |
D | newport_con.c | 184 npregs->set.dcbdata0.bybytes.b3 &= ~XM9_PUPMODE; in newport_reset() 187 npregs->set.dcbdata0.bybytes.b3 &= ~XM9_PUPMODE; in newport_reset() 256 tmp = npregs->set.dcbdata0.bybytes.b3; in newport_get_revisions() 263 tmp = npregs->set.dcbdata0.bybytes.b3; in newport_get_revisions() 271 xmap9_rev = npregs->set.dcbdata0.bybytes.b3 & 7; in newport_get_revisions() 275 npregs->set.dcbdata0.bybytes.b3 = BT445_REVISION_REG; in newport_get_revisions() 278 bt445_rev = (npregs->set.dcbdata0.bybytes.b3 >> 4) - 0x0a; in newport_get_revisions()
|
/linux-4.1.27/drivers/misc/ |
D | bmp085.c | 234 s32 x1, x2, x3, b3; in bmp085_get_pressure() local 260 b3 = (((((s32)cali->AC1) * 4 + x3) << data->oversampling_setting) + 2); in bmp085_get_pressure() 261 b3 >>= 2; in bmp085_get_pressure() 268 b7 = ((u32)data->raw_pressure - b3) * in bmp085_get_pressure()
|
/linux-4.1.27/arch/c6x/kernel/ |
D | signal.c | 47 COPY(b0); COPY(b1); COPY(b2); COPY(b3); COPY(b5); COPY(b7); COPY(b9); in restore_sigcontext() 112 COPY(b0); COPY(b1); COPY(b2); COPY(b3); COPY(b5); COPY(b7); COPY(b9); in setup_sigcontext() 194 regs->b3 = (unsigned long) retcode; in setup_rt_frame()
|
D | asm-offsets.c | 69 OFFSET(REGS_B3, pt_regs, b3); in foo()
|
D | traps.c | 40 pr_err("A3: %08lx B3: %08lx\n", regs->a3, regs->b3); in show_regs()
|
/linux-4.1.27/include/linux/ |
D | signal.h | 108 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; \ 113 b3 = b->sig[3]; b2 = b->sig[2]; \ 114 r->sig[3] = op(a3, b3); \
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 50 .long R(41, ad, ad, ec), R(b3, d4, d4, 67) 75 .long R(b7, d6, d6, 61), R(7d, b3, b3, ce) 151 .long R(2b, 98, 98, b3), R(22, 11, 11, 33) 245 .long R(2b, b3, 16, 6c), R(a9, 70, b9, 99) 258 .long R(6f, d5, 2d, a9), R(cf, 25, 12, b3) 279 .long R(b3, 67, 1d, 5a), R(92, db, d2, 52) 293 .long R(39, a8, 01, 71), R(08, 0c, b3, de)
|
/linux-4.1.27/include/video/ |
D | newport.h | 27 struct { volatile unsigned char b0, b1, b2, b3; } bybytes; member 399 regs->set.dcbdata0.bybytes.b3 = vc2ireg; in newport_vc2_get() 556 while ((rex->set.dcbdata0.bybytes.b3 & 3) != XM9_FIFO_EMPTY) in xmap9FIFOWait()
|
/linux-4.1.27/arch/blackfin/include/uapi/asm/ |
D | ptrace.h | 53 long b3; member
|
/linux-4.1.27/arch/ia64/include/uapi/asm/ |
D | ptrace.h | 194 unsigned long b3; member
|
/linux-4.1.27/arch/c6x/lib/ |
D | strasgi_64plus.S | 37 ret .s2 b3
|
D | strasgi.S | 76 || ret .s2 b3
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | signal.c | 68 RESTORE(b0); RESTORE(b1); RESTORE(b2); RESTORE(b3); in rt_restore_sigcontext() 129 SETUP(b0); SETUP(b1); SETUP(b2); SETUP(b3); in rt_setup_sigcontext()
|
D | kgdb.c | 43 gdb_regs[BFIN_B3] = regs->b3; in pt_regs_to_gdb_regs() 119 regs->b3 = gdb_regs[BFIN_B3]; in gdb_regs_to_pt_regs()
|
D | asm-offsets.c | 88 DEFINE(PT_B3, offsetof(struct pt_regs, b3)); in main()
|
D | trace.c | 978 fp->b3, fp->l3, fp->m3, fp->i3); in show_regs()
|
/linux-4.1.27/drivers/net/hamradio/ |
D | baycom_ser_fdx.c | 382 unsigned char b1,b2,b3; in ser12_check_uart() local 391 b3 = inb(MSR(iobase)) & 0xf0; in ser12_check_uart() 394 if (b3 != 0x90) in ser12_check_uart()
|
D | baycom_ser_hdx.c | 441 unsigned char b1,b2,b3; in ser12_check_uart() local 450 b3 = inb(MSR(iobase)) & 0xf0; in ser12_check_uart() 453 if (b3 != 0x90) in ser12_check_uart()
|
D | yam.c | 511 unsigned char b1, b2, b3; in yam_check_uart() local 520 b3 = inb(MSR(iobase)) & 0xf0; in yam_check_uart() 523 if (b3 != 0x90) in yam_check_uart()
|
/linux-4.1.27/arch/arm/vdso/ |
D | Makefile | 67 last=`echo $$buildid | cut -b3-`; \
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 73 # r1 = {b7 b6 b5 b4 b3 b2 b1 b0} 85 # r3 = {h3 g3 f3 e3 d3 c3 b3 a3} 95 vshufps $0xEE, \r1, \r0, \r0 # r0 = {b7 b6 a7 a6 b3 b2 a3 a2} 100 vshufps $0xDD, \r2, \r0, \r0 # r0 = {d7 c7 b7 a7 d3 c3 b3 a3}
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | marvell,kirkwood.txt | 30 "excito,b3"
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | hdmi5_core.h | 291 u16 b1, b2, b3, b4; member
|
D | hdmi5_core.c | 492 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_B3_MSB, csc_coeff.b3 >> 8, 6, 0); in hdmi_core_csc_config() 493 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_B3_LSB, csc_coeff.b3, 7, 0); in hdmi_core_csc_config()
|
D | dsi.c | 2689 int channel, u8 b1, u8 b2, u8 b3, u8 b4) in dsi_vc_write_long_payload() argument 2693 val = b4 << 24 | b3 << 16 | b2 << 8 | b1 << 0; in dsi_vc_write_long_payload() 2709 u8 b1, b2, b3, b4; in dsi_vc_send_long() local 2731 b3 = *p++; in dsi_vc_send_long() 2734 dsi_vc_write_long_payload(dsidev, channel, b1, b2, b3, b4); in dsi_vc_send_long() 2739 b1 = 0; b2 = 0; b3 = 0; in dsi_vc_send_long() 2748 b3 = *p++; in dsi_vc_send_long() 2759 dsi_vc_write_long_payload(dsidev, channel, b1, b2, b3, 0); in dsi_vc_send_long()
|
/linux-4.1.27/Documentation/blockdev/ |
D | cpqarray.txt | 67 b7 b6 b5 b4 b3 b2 b1 b0
|
D | cciss.txt | 63 b7 b6 b5 b4 b3 b2 b1 b0
|
/linux-4.1.27/arch/c6x/include/uapi/asm/ |
D | ptrace.h | 134 REG_PAIR(b3, b2);
|
/linux-4.1.27/arch/ia64/kernel/ |
D | entry.h | 57 .spillsp b2,SW(B2)+16+(off); .spillsp b3,SW(B3)+16+(off); \
|
D | relocate_kernel.S | 225 mov r5=b3
|
D | asm-offsets.c | 164 DEFINE(IA64_SWITCH_STACK_B3_OFFSET, offsetof (struct switch_stack, b3)); in foo()
|
D | mca_asm.S | 605 mov temp4=b3 768 mov b3=temp4
|
D | head.S | 111 SAVE_FROM_REG(b3,_reg1,_reg2);; \ 1109 SET_REG(b3); 1151 RESTORE_REG(b3, r25, r17);;
|
D | entry.S | 91 mov r6=0; mov f4=f0; mov b3=r0 302 mov r24=b3 428 mov b3=r24
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_ct.c | 2199 uint32_t b1, b2, b3, b4, i, rev; in lpfc_decode_firmware_rev() local 2214 b3 = (rev & 0x000000c0) >> 6; in lpfc_decode_firmware_rev() 2253 b1, b2, b3, (char *)str); in lpfc_decode_firmware_rev() 2256 b2, b3); in lpfc_decode_firmware_rev() 2260 b1, b2, b3, c, in lpfc_decode_firmware_rev() 2264 b1, b2, b3, c, b4); in lpfc_decode_firmware_rev() 2271 b3 = (rev & 0x000f0000) >> 16; in lpfc_decode_firmware_rev() 2275 sprintf(fwrevision, "%d.%d%d%c%d", b1, b2, b3, c, b4); in lpfc_decode_firmware_rev()
|
/linux-4.1.27/arch/x86/kernel/ |
D | uprobes.c | 58 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ argument 59 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
|
/linux-4.1.27/arch/blackfin/mach-common/ |
D | interrupt.S | 59 [--sp] = b3;
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | kirkwood-b3.dts | 25 compatible = "excito,b3", "marvell,kirkwood-88f6281", "marvell,kirkwood";
|
D | Makefile | 138 kirkwood-b3.dtb \
|
/linux-4.1.27/arch/x86/crypto/ |
D | camellia-aesni-avx-asm_64.S | 432 b3, c3, d3, st0, st1) \ argument 436 transpose_4x4(b0, b1, b2, b3, d2, d3); \ 452 vpshufb a0, b3, b3; \ 475 transpose_4x4(a3, b3, c3, d3, b0, b1); \
|
D | camellia-aesni-avx2-asm_64.S | 471 a3, b3, c3, d3, st0, st1) \ argument 475 transpose_4x4(b0, b1, b2, b3, d2, d3); \ 491 vpshufb a0, b3, b3; \ 514 transpose_4x4(a3, b3, c3, d3, b0, b1); \
|
/linux-4.1.27/arch/x86/kernel/kprobes/ |
D | core.c | 70 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ argument 71 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Audiophile-Usb.txt | 275 | b7| b6| b5| b4| b3| b2| b1| b0| 289 * b3 is the bit depth selection flag 292 - Note that b2 implies b3 as the 96kHz mode is only supported for 24 bits 307 b2 implies b3. But _there_will_be_no_warning_ in /var/log/messages
|
/linux-4.1.27/arch/x86/vdso/ |
D | Makefile | 192 last=`echo $$buildid | cut -b3-`; \
|
/linux-4.1.27/Documentation/vm/ |
D | page_owner.txt | 43 1427 24 8 1459 5b3 mm/page_ext.o
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_hid.txt | 237 {.opt = "--b3", .val = 0x04}, 282 {.opt = "--b3", .val = 0x40},
|
/linux-4.1.27/drivers/media/usb/ttusb-budget/ |
D | dvb-ttusb-budget.c | 406 u8 b3[] = in ttusb_init_controller() local 430 if ((err = ttusb_cmd(ttusb, b3, sizeof(b3), 1))) in ttusb_init_controller()
|
/linux-4.1.27/arch/blackfin/mach-bf548/include/mach/ |
D | defBF54x_base.h | 2223 #define MUX(b15,b14,b13,b12,b11,b10,b9,b8,b7,b6,b5,b4,b3,b2,b1,b0) \ argument 2236 (((b3) &3) << 6) | \
|
/linux-4.1.27/Documentation/input/ |
D | alps.txt | 296 packet-fmt b7 b6 b5 b4 b3 b2 b1 b0
|
/linux-4.1.27/arch/x86/lib/ |
D | x86-opcode-map.txt | 228 b3: MOV BL/R11L,Ib 521 b3: BTR Ev,Gv
|
/linux-4.1.27/Documentation/video4linux/ |
D | gspca.txt | 364 sn9c20x 0c45:62b3 PC Camera (SN9C202 + OV9655)
|
/linux-4.1.27/Documentation/s390/ |
D | Debugging390.txt | 1272 grep -i 0001b3 System.map
|