/linux-4.4.14/drivers/hid/ |
H A D | hid-roccat-common.h | 50 #define ROCCAT_COMMON2_SYSFS_W(thingy, COMMAND, SIZE) \ 56 SIZE, COMMAND); \ 59 #define ROCCAT_COMMON2_SYSFS_R(thingy, COMMAND, SIZE) \ 65 SIZE, COMMAND); \ 68 #define ROCCAT_COMMON2_SYSFS_RW(thingy, COMMAND, SIZE) \ 69 ROCCAT_COMMON2_SYSFS_W(thingy, COMMAND, SIZE) \ 70 ROCCAT_COMMON2_SYSFS_R(thingy, COMMAND, SIZE) 72 #define ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(thingy, COMMAND, SIZE) \ 73 ROCCAT_COMMON2_SYSFS_RW(thingy, COMMAND, SIZE); \ 76 .size = SIZE, \ 81 #define ROCCAT_COMMON2_BIN_ATTRIBUTE_R(thingy, COMMAND, SIZE) \ 82 ROCCAT_COMMON2_SYSFS_R(thingy, COMMAND, SIZE); \ 85 .size = SIZE, \ 89 #define ROCCAT_COMMON2_BIN_ATTRIBUTE_W(thingy, COMMAND, SIZE) \ 90 ROCCAT_COMMON2_SYSFS_W(thingy, COMMAND, SIZE); \ 93 .size = SIZE, \
|
H A D | hid-logitech-dj.c | 153 0x75, 0x01, /* REPORT SIZE (1) */ 160 0x75, 0x03, /* REPORT SIZE (3) */
|
/linux-4.4.14/tools/testing/selftests/powerpc/stringloops/ |
H A D | memcmp.c | 6 #define SIZE 256 macro 16 for (offset = 0; offset < SIZE; offset++) { test_one() 17 for (size = 0; size < (SIZE-offset); size++) { test_one() 47 s1 = memalign(128, SIZE); testcase() 53 s2 = memalign(128, SIZE); testcase() 65 for (j = 0; j < SIZE; j++) testcase() 68 memcpy(s2, s1, SIZE); testcase() 71 change = random() % SIZE; testcase() 83 for (j = 0; j < SIZE; j++) testcase() 86 memcpy(s2, s1, SIZE); testcase() 89 for (j = 0; j < SIZE / 8; j++) { testcase() 90 change = random() % SIZE; testcase()
|
/linux-4.4.14/tools/testing/selftests/powerpc/mm/ |
H A D | hugetlb_vs_thp_test.c | 8 #define SIZE (16 * 1024 * 1024) macro 17 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE, test_body() 27 if (munmap(addr, SIZE)) { test_body() 33 p = mmap(addr, SIZE, PROT_READ | PROT_WRITE, test_body() 48 * getcwd(p, SIZE); test_body() 56 munmap(addr, SIZE); test_body()
|
/linux-4.4.14/arch/s390/net/ |
H A D | bpf_jit.S | 45 * Load SIZE bytes from SKB 47 #define sk_load_common(NAME, SIZE, LOAD) \ 52 aghi %r3,SIZE; /* Offset + SIZE */ \ 53 clg %r3,STK_OFF_HLEN(%r15); /* Offset + SIZE > hlen? */ \ 55 LOAD %r14,-SIZE(%r3,%r12); /* Get data from skb */ \ 60 aghi %r3,-SIZE; /* Arg2 = offset */ \ 62 lghi %r5,SIZE; /* Arg4 = size */ \ 94 #define sk_negative_common(NAME, SIZE, LOAD) \ 100 lghi %r4,SIZE; /* Arg3 = size */ \
|
/linux-4.4.14/drivers/crypto/qat/qat_common/ |
H A D | adf_transport_access_macros.h | 94 #define ADF_MSG_SIZE_TO_BYTES(SIZE) (SIZE << 5) 95 #define ADF_BYTES_TO_MSG_SIZE(SIZE) (SIZE >> 5) 96 #define ADF_SIZE_TO_RING_SIZE_IN_BYTES(SIZE) ((1 << (SIZE - 1)) << 7) 97 #define ADF_RING_SIZE_IN_BYTES_TO_SIZE(SIZE) ((1 << (SIZE - 1)) >> 7) 100 #define ADF_RING_SIZE_BYTES_MIN(SIZE) \ 101 ((SIZE < ADF_SIZE_TO_RING_SIZE_IN_BYTES(ADF_RING_SIZE_4K)) ? \ 102 ADF_SIZE_TO_RING_SIZE_IN_BYTES(ADF_RING_SIZE_4K) : SIZE) 103 #define ADF_RING_SIZE_MODULO(SIZE) (SIZE + 0x6) 104 #define ADF_SIZE_TO_POW(SIZE) ((((SIZE & 0x4) >> 1) | ((SIZE & 0x4) >> 2) | \ 105 SIZE) & ~0x4)
|
/linux-4.4.14/tools/include/linux/ |
H A D | filter.h | 133 #define BPF_LD_ABS(SIZE, IMM) \ 135 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \ 143 #define BPF_LD_IND(SIZE, SRC, IMM) \ 145 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \ 153 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 155 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \ 163 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 165 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \ 173 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 175 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
H A D | mkcapflags.sh | 12 SIZE=$2 19 echo "const char * const $ARRAY[$SIZE] = {"
|
/linux-4.4.14/samples/bpf/ |
H A D | libbpf.h | 117 #define BPF_LD_ABS(SIZE, IMM) \ 119 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \ 127 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 129 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \ 137 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 139 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \ 147 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 149 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
|
H A D | tracex2_user.c | 35 #define SIZE sizeof(struct task) macro 48 if (memcmp(&next_key, task, SIZE)) { print_hist_for_pid() 83 if (memcmp(&tasks[i], &next_key, SIZE) == 0) print_hist() 86 memcpy(&tasks[task_cnt++], &next_key, SIZE); print_hist()
|
/linux-4.4.14/arch/sh/mm/ |
H A D | flush-sh4.c | 11 * SIZE: Size of the region. 45 * SIZE: Size of the region.
|
H A D | cache-sh3.c | 32 * SIZE: Size of the region. 72 * SIZE: Size of the region.
|
/linux-4.4.14/arch/sparc/include/uapi/asm/ |
H A D | ioctl.h | 5 * Our DIR and SIZE overlap in order to simulteneously provide 13 * 0x3FFF0000 SIZE (overlaps NONE bit)
|
/linux-4.4.14/arch/mips/net/ |
H A D | bpf_jit_asm.S | 52 #define is_offset_in_header(SIZE, TYPE) \ 54 addiu $r_s0, $r_skb_hl, -SIZE; \ 142 #define bpf_slow_path_common(SIZE) \ 144 LONG_ADDIU $r_s1, $r_skb_len, -SIZE; \ 148 LONG_ADDIU a3, zero, SIZE; \ 242 #define bpf_negative_common(SIZE) \ 247 li a2, SIZE; \
|
/linux-4.4.14/include/linux/ |
H A D | filter.h | 174 #define BPF_LD_ABS(SIZE, IMM) \ 176 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_ABS, \ 184 #define BPF_LD_IND(SIZE, SRC, IMM) \ 186 .code = BPF_LD | BPF_SIZE(SIZE) | BPF_IND, \ 194 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ 196 .code = BPF_LDX | BPF_SIZE(SIZE) | BPF_MEM, \ 204 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ 206 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_MEM, \ 214 #define BPF_STX_XADD(SIZE, DST, SRC, OFF) \ 216 .code = BPF_STX | BPF_SIZE(SIZE) | BPF_XADD, \ 224 #define BPF_ST_MEM(SIZE, DST, OFF, IMM) \ 226 .code = BPF_ST | BPF_SIZE(SIZE) | BPF_MEM, \
|
H A D | kexec.h | 258 vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \ 261 vmcoreinfo_append_str("SIZE(%s)=%lu\n", #name, \
|
/linux-4.4.14/arch/powerpc/include/asm/ |
H A D | sstep.h | 72 #define SIZE(n) ((n) << 8) macro 75 #define MKOP(t, f, s) ((t) | (f) | SIZE(s))
|
/linux-4.4.14/arch/x86/net/ |
H A D | bpf_jit.S | 108 #define sk_negative_common(SIZE) \ 113 mov $SIZE,%edx; /* size */ \
|
/linux-4.4.14/arch/powerpc/net/ |
H A D | bpf_jit_asm.S | 102 #define bpf_slow_path_common(SIZE) \ 113 li r6, SIZE; \ 155 #define sk_negative_common(SIZE) \ 165 li r5, SIZE; \
|
/linux-4.4.14/arch/arm/mach-omap1/ |
H A D | fpga.h | 27 #define H2P2_DBG_FPGA_SIZE SZ_4K /* SIZE */
|
/linux-4.4.14/fs/coda/ |
H A D | upcall.c | 70 #define SIZE(tag) max_t(unsigned int, INSIZE(tag), OUTSIZE(tag)) macro 80 insize = SIZE(root); venus_rootfid() 98 insize = SIZE(getattr); venus_getattr() 117 insize = SIZE(setattr); venus_setattr() 166 insize = SIZE(release); venus_close() 186 insize = SIZE(open_by_fd); venus_open() 445 insize=SIZE(fsync); venus_fsync() 462 insize = SIZE(access); venus_access() 517 error = coda_upcall(coda_vcp(sb), SIZE(ioctl) + data->vi.in_size, venus_pioctl()
|
/linux-4.4.14/fs/jfs/ |
H A D | jfs_btree.h | 67 #define BT_GETPAGE(IP, BN, MP, TYPE, SIZE, P, RC, ROOT)\ 77 MP = read_metapage((IP), BN, SIZE, 1);\
|
H A D | jfs_dtree.c | 127 #define DT_GETPAGE(IP, BN, MP, SIZE, P, RC) \ 129 BT_GETPAGE(IP, BN, MP, dtpage_t, SIZE, P, RC, i_dtroot); \
|
H A D | jfs_xtree.c | 67 #define XT_GETPAGE(IP, BN, MP, SIZE, P, RC) \ 69 BT_GETPAGE(IP, BN, MP, xtpage_t, SIZE, P, RC, i_xtroot); \
|
/linux-4.4.14/drivers/media/rc/keymaps/ |
H A D | rc-anysee.c | 59 { 0x0822, KEY_ZOOM }, /* SIZE */
|
/linux-4.4.14/lib/mpi/ |
H A D | generic_mpih-add1.c | 40 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_add_n()
|
H A D | generic_mpih-mul2.c | 41 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_addmul_1()
|
H A D | generic_mpih-mul3.c | 41 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_submul_1()
|
H A D | generic_mpih-sub1.c | 39 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_sub_n()
|
H A D | mpih-mul.c | 51 * both with SIZE limbs, and store the result at PRODP. 2 * SIZE limbs are
|
/linux-4.4.14/include/uapi/linux/ |
H A D | cramfs_fs.h | 31 /* SIZE for device files is i_rdev */
|
/linux-4.4.14/drivers/input/tablet/ |
H A D | gtco.c | 386 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n", parse_hid_report_descriptor() 391 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n", parse_hid_report_descriptor() 396 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n", parse_hid_report_descriptor() 467 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor() 473 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor() 479 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor() 485 dev_dbg(ddev, "%sGLOBALTAG: ILLEGAL TAG:%d SIZE: %d\n", parse_hid_report_descriptor() 513 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor() 518 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor() 523 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n", parse_hid_report_descriptor()
|
/linux-4.4.14/include/linux/spi/ |
H A D | adi_spi3.h | 32 #define SPI_CTL_SIZE08 0x00000000 /* SIZE: 8 bits */ 33 #define SPI_CTL_SIZE16 0x00000200 /* SIZE: 16 bits */ 34 #define SPI_CTL_SIZE32 0x00000400 /* SIZE: 32 bits */
|
/linux-4.4.14/arch/mips/include/asm/mach-loongson64/cs5536/ |
H A D | cs5536_pci.h | 64 /* BHLC : BIST HEADER-TYPE LATENCY-TIMER CACHE-LINE-SIZE */
|
/linux-4.4.14/fs/xfs/libxfs/ |
H A D | xfs_da_btree.h | 144 #define XFS_DA_LOGRANGE(BASE, ADDR, SIZE) \ 146 (uint)(XFS_DA_LOGOFF(BASE, ADDR)+(SIZE)-1)
|
/linux-4.4.14/tools/testing/selftests/vm/ |
H A D | mlock2-tests.c | 216 #define SIZE "Size:" macro 241 if (!strstr(line, SIZE)) { is_vma_lock_on_fault() 248 value = line + strlen(SIZE); is_vma_lock_on_fault()
|
/linux-4.4.14/kernel/bpf/ |
H A D | core.c | 565 #define LDST(SIZEOP, SIZE) \ __bpf_prog_run() 567 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ __bpf_prog_run() 570 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \ __bpf_prog_run() 573 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ __bpf_prog_run()
|
/linux-4.4.14/tools/vm/ |
H A D | slabinfo-gnuplot.sh | 101 plot "$file" $range u 2$xtic title 'SIZE' with boxes,\
|
/linux-4.4.14/arch/mips/include/asm/mips-boards/ |
H A D | bonito64.h | 410 #define BONITO_PCIMEMBASECFGSIZE(WIN, SIZE) (((~((SIZE)-1))>>(BONITO_PCIMEMBASECFG_ASHIFT-BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK_SHIFT)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MASK)
|
/linux-4.4.14/arch/avr32/include/asm/ |
H A D | ocd.h | 462 /* Constants for BWC3A:SIZE */ 478 /* Constants for BWC3B:SIZE */
|
/linux-4.4.14/drivers/dma/ |
H A D | pch_dma.c | 347 channel_writel(pd_chan, SIZE, desc->regs.size); pdc_dostart() 767 pd->ch_regs[i].size = channel_readl(pd_chan, SIZE); pch_dma_save_regs() 790 channel_writel(pd_chan, SIZE, pd->ch_regs[i].size); pch_dma_restore_regs()
|
/linux-4.4.14/arch/sparc/kernel/ |
H A D | sbus.c | 266 #define SYSIO_UEAFSR_SIZE 0x00001c0000000000UL /* Bad transfer size 2^SIZE */ 302 printk("SYSIO[%x]: DOFF[%lx] SIZE[%lx] MID[%lx]\n", sysio_ue_handler() 340 #define SYSIO_CEAFSR_SIZE 0x00001c0000000000UL /* Bad transfer size 2^SIZE */
|
/linux-4.4.14/arch/ia64/include/asm/ |
H A D | uaccess.h | 183 * Evaluating arguments X, PTR, SIZE, and SEGMENT may involve subroutine-calls, which 211 * Evaluating arguments X, PTR, SIZE, and SEGMENT may involve subroutine-calls, which
|
/linux-4.4.14/drivers/media/pci/cobalt/ |
H A D | cobalt-omnitek.c | 61 #define SIZE(c) (BASE + 0x58 + ((c) * 0x40)) macro
|
/linux-4.4.14/drivers/media/usb/hdpvr/ |
H A D | hdpvr.h | 250 * QUERY FRAME SIZE AND RATE
|
/linux-4.4.14/drivers/net/fddi/skfp/h/ |
H A D | fddimib.h | 45 * bits for bit string PermittedPaths & RequestedPaths (SIZE(8))
|
H A D | skfbi.h | 155 #define PCI_ROMBASZ 0x0001c000L /* Bit 16..14: Treat as BASE or SIZE */
|
/linux-4.4.14/arch/powerpc/kernel/ |
H A D | fsl_booke_entry_mapping.S | 81 mfspr r6,SPRN_MAS1 /* extract MAS1[SIZE] */
|
H A D | misc_32.S | 878 ori r3, r3, (PPC44x_TLB_VALID | PPC44x_TLB_256M) /* SIZE = 256M, Valid */ 881 tlbwe r3, r6, PPC44x_TLB_PAGEID /* PageID field : EPN, V, SIZE */
|
/linux-4.4.14/arch/sh/include/asm/ |
H A D | page.h | 111 * __MEMORY_START and SIZE are the physical addresses and size of RAM.
|
/linux-4.4.14/arch/ia64/include/uapi/asm/ |
H A D | ptrace.h | 71 * THIS STRUCTURE MUST BE A MULTIPLE 16-BYTE IN SIZE
|
/linux-4.4.14/drivers/input/touchscreen/ |
H A D | cyttsp4_core.h | 239 CY_TCH_W, /* SIZE */
|
H A D | atmel_mxt_ts.c | 1325 * <TYPE> <INSTANCE> <SIZE> <CONTENTS> 1329 * <SIZE> - 2-byte object size as hex 1330 * <CONTENTS> - array of <SIZE> 1-byte hex values
|
/linux-4.4.14/drivers/scsi/lpfc/ |
H A D | lpfc_debugfs.c | 2039 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2072 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2102 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2138 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2163 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2193 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2225 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2256 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2269 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2300 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2336 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read() 2366 "QE-CNT[%04d], QE-SIZE[%04d], " lpfc_idiag_queinfo_read()
|
/linux-4.4.14/sound/pci/ca0106/ |
H A D | ca0106.h | 187 /* SIZE[21:16], Default: 0x8 */ 194 /* SIZE[31:16], Default: 0x0 */ 205 /* SIZE[31:16], Default: 0x0 */
|
/linux-4.4.14/drivers/net/ethernet/sun/ |
H A D | cassini.h | 57 * DEFAULT: 0x0, SIZE: 5 bits 69 * DEFAULT: 0x0, SIZE: 1 bit 77 * DEFAULT: 0x00000000, SIZE: 29 bits 151 * DEFAULT: 0xFFFFFFFF, SIZE: 16 bits 157 * DEFAULT: 0x00000000, SIZE: 12 bits 163 * DEFAULT: 0x00000000, SIZE: 29 bits 168 /* DEFAULT: 0x0, SIZE: 3 bits */ 185 * DEFAULT: 0x7, SIZE: 3 bits 190 * DEFAULT: 0bxx000, SIZE: 5 bits 209 /* DEFAULT: 0x00000000, SIZE: 32 bits */
|
/linux-4.4.14/drivers/usb/gadget/function/ |
H A D | f_ncm.c | 600 DBG(cdev, "Got wrong INPUT SIZE (%d) from host\n", in_size); ncm_ep0out_complete() 605 VDBG(cdev, "Set NTB INPUT SIZE %d\n", in_size); ncm_ep0out_complete() 673 VDBG(cdev, "Host asked INPUT SIZE, sending %d\n", ncm_setup()
|
/linux-4.4.14/drivers/staging/emxx_udc/ |
H A D | emxx_udc.h | 512 /* EPn RAM SIZE */
|
/linux-4.4.14/drivers/media/platform/s5p-jpeg/ |
H A D | jpeg-regs.h | 252 /* JPEG IMAGE SIZE Register bit */
|
/linux-4.4.14/drivers/media/usb/pwc/ |
H A D | pwc.h | 74 #define PWC_DEBUG_SIZE(fmt, args...) PWC_DEBUG(SIZE, fmt, ##args)
|
/linux-4.4.14/drivers/net/wireless/cw1200/ |
H A D | bh.c | 266 /* Add SIZE of PIGGYBACK reg (CONTROL Reg) cw1200_bh_rx_helper()
|
/linux-4.4.14/drivers/net/wireless/ |
H A D | adm8211.h | 436 #define ADM8211_SRAM_SIZE ADM8211_SRAM(SIZE)
|
/linux-4.4.14/drivers/edac/ |
H A D | i82975x_edac.c | 136 * defines the PAGE SIZE to be used
|
/linux-4.4.14/arch/x86/crypto/ |
H A D | crc32c-pcl-intel-asm_64.S | 70 .error "SMALL_ SIZE must be < 256"
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
H A D | usercopy.c | 250 ;; the SIZE bytes at PAGE after the first fault. \n\ __copy_user_zeroing()
|
/linux-4.4.14/arch/alpha/kernel/ |
H A D | pci_iommu.c | 366 SIZE must match what was provided for in a previous pci_map_single 475 be values that were returned from pci_alloc_consistent. SIZE must
|
/linux-4.4.14/drivers/usb/host/ |
H A D | ohci-dbg.c | 303 (cc >= 0x0e) ? "OFFSET" : "SIZE", ohci_dump_td()
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
H A D | plx9080.h | 332 /*** MAILBOX #2 - MEMORY SIZE ***/
|
/linux-4.4.14/drivers/uwb/ |
H A D | beacon.c | 477 dev_err(dev, "BEACON SIZE notification: Not enough data to " uwbd_evt_handle_rc_beacon_size()
|
/linux-4.4.14/drivers/media/i2c/ |
H A D | mt9m032.c | 822 /* SIZE */ mt9m032_probe()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
H A D | fw.c | 216 "normal Firmware SIZE %d\n", fwsize); rtl88e_download_fw()
|
/linux-4.4.14/drivers/net/wan/ |
H A D | wanxl.c | 53 /* MAILBOX #2 - DRAM SIZE */
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
H A D | usercopy.c | 296 ;; the SIZE bytes at PAGE after the first fault. \n\ __copy_user_zeroing()
|
/linux-4.4.14/fs/nfsd/ |
H A D | nfsproc.c | 353 /* we've used the SIZE information, so discard it */ nfsd_proc_create()
|
/linux-4.4.14/net/rxrpc/ |
H A D | ar-output.c | 575 _debug("SIZE: %zu/%zu/%zu", chunk, space, size); rxrpc_send_data()
|
/linux-4.4.14/kernel/trace/ |
H A D | trace_output.c | 210 trace_seq_printf(p, "BAD SIZE:%zu 0x%x", el_size, trace_print_array_seq()
|
/linux-4.4.14/sound/pci/ice1712/ |
H A D | ice1724.c | 550 unsigned int size; /* SIZE register offset */ 878 #else /* use SIZE register */ snd_vt1724_pcm_pointer()
|
/linux-4.4.14/drivers/target/ |
H A D | target_core_xcopy.c | 964 * MAXIMUM STREAM DEVICE TRANSFER SIZE target_rcr_operating_parameters()
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
H A D | ivtvfb.c | 170 /* Current dimensions (NOT VISIBLE SIZE!) */
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
H A D | fw.c | 216 "normal Firmware SIZE %d\n" , fwsize); rtl92ee_download_fw()
|
/linux-4.4.14/drivers/net/wireless/iwlegacy/ |
H A D | prph.h | 231 * Read/write, address range from LOWER_BOUND to (LOWER_BOUND + SIZE -1)
|
/linux-4.4.14/fs/ncpfs/ |
H A D | inode.c | 957 /* Do SIZE before attributes, otherwise mtime together with size does not work... ncp_notify_change()
|
/linux-4.4.14/fs/nfs/ |
H A D | nfs4trace.h | 185 { NFS_ATTR_FATTR_SIZE, "SIZE" }, \
|
/linux-4.4.14/scripts/ |
H A D | asn1_compiler.c | 277 _(SIZE),
|
/linux-4.4.14/kernel/ |
H A D | module.c | 84 * Given BASE and SIZE this macro calculates the number of pages the 87 #define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \ 88 (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \
|
/linux-4.4.14/drivers/tty/serial/ |
H A D | pch_uart.c | 529 dev_err(priv->port.dev, "%s:Invalid FIFO SIZE(0x%x)\n", pch_uart_hal_set_fifo()
|
/linux-4.4.14/drivers/spi/ |
H A D | spi-topcliff-pch.c | 408 * pch_spi_set_bits_per_word() - Sets SIZE field in SPBRR
|
/linux-4.4.14/drivers/scsi/csiostor/ |
H A D | csio_wr.c | 1328 /* FL BUFFER SIZE#0 is Page size i,e already aligned to cache line */ csio_wr_fixup_host_params()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
H A D | ctxnv50.c | 1021 dd_emit(ctx, 1, 1); /* 00000007 VTX_ATTR_DEFINE.SIZE */ nv50_gr_construct_mmio_ddata() 1034 dd_emit(ctx, 1, 0); /* 00000003 VTX_ATTR_DEFINE.SIZE - 1 */ nv50_gr_construct_mmio_ddata() 1081 dd_emit(ctx, 1, 9); /* 0000003f UNK114C.COMP,SIZE */ nv50_gr_construct_mmio_ddata()
|
/linux-4.4.14/arch/xtensa/kernel/ |
H A D | entry.S | 342 movi a3, SIZE??
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
H A D | fw.c | 249 "%s Firmware SIZE %d\n", rtl8821ae_download_fw()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
H A D | qlcnic_83xx_hw.c | 132 0x3560, /* BOOT LOADER SIZE REG */
|
/linux-4.4.14/drivers/atm/ |
H A D | lanai.c | 673 /* -------------------- COMPUTE SIZE OF AN AAL5 PDU: */
|
/linux-4.4.14/tools/lib/traceevent/ |
H A D | event-parse.c | 4013 trace_seq_printf(s, "BAD SIZE:%d 0x%x", print_str_arg()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
H A D | intel_display.c | 15781 err_printf(m, " SIZE: %08x\n", error->plane[i].size); for_each_pipe()
|