Searched refs:SIZE (Results 1 - 95 of 95) sorted by relevance

/linux-4.4.14/drivers/hid/
H A Dhid-roccat-common.h50 #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 Dhid-logitech-dj.c153 0x75, 0x01, /* REPORT SIZE (1) */
160 0x75, 0x03, /* REPORT SIZE (3) */
/linux-4.4.14/tools/testing/selftests/powerpc/stringloops/
H A Dmemcmp.c6 #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 Dhugetlb_vs_thp_test.c8 #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 Dbpf_jit.S45 * 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 Dadf_transport_access_macros.h94 #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 Dfilter.h133 #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 Dmkcapflags.sh12 SIZE=$2
19 echo "const char * const $ARRAY[$SIZE] = {"
/linux-4.4.14/samples/bpf/
H A Dlibbpf.h117 #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 Dtracex2_user.c35 #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 Dflush-sh4.c11 * SIZE: Size of the region.
45 * SIZE: Size of the region.
H A Dcache-sh3.c32 * SIZE: Size of the region.
72 * SIZE: Size of the region.
/linux-4.4.14/arch/sparc/include/uapi/asm/
H A Dioctl.h5 * 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 Dbpf_jit_asm.S52 #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 Dfilter.h174 #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 Dkexec.h258 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 Dsstep.h72 #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 Dbpf_jit.S108 #define sk_negative_common(SIZE) \
113 mov $SIZE,%edx; /* size */ \
/linux-4.4.14/arch/powerpc/net/
H A Dbpf_jit_asm.S102 #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 Dfpga.h27 #define H2P2_DBG_FPGA_SIZE SZ_4K /* SIZE */
/linux-4.4.14/fs/coda/
H A Dupcall.c70 #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 Djfs_btree.h67 #define BT_GETPAGE(IP, BN, MP, TYPE, SIZE, P, RC, ROOT)\
77 MP = read_metapage((IP), BN, SIZE, 1);\
H A Djfs_dtree.c127 #define DT_GETPAGE(IP, BN, MP, SIZE, P, RC) \
129 BT_GETPAGE(IP, BN, MP, dtpage_t, SIZE, P, RC, i_dtroot); \
H A Djfs_xtree.c67 #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 Drc-anysee.c59 { 0x0822, KEY_ZOOM }, /* SIZE */
/linux-4.4.14/lib/mpi/
H A Dgeneric_mpih-add1.c40 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_add_n()
H A Dgeneric_mpih-mul2.c41 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_addmul_1()
H A Dgeneric_mpih-mul3.c41 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_submul_1()
H A Dgeneric_mpih-sub1.c39 /* The loop counter and index J goes from -SIZE to -1. This way mpihelp_sub_n()
H A Dmpih-mul.c51 * both with SIZE limbs, and store the result at PRODP. 2 * SIZE limbs are
/linux-4.4.14/include/uapi/linux/
H A Dcramfs_fs.h31 /* SIZE for device files is i_rdev */
/linux-4.4.14/drivers/input/tablet/
H A Dgtco.c386 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 Dadi_spi3.h32 #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 Dcs5536_pci.h64 /* BHLC : BIST HEADER-TYPE LATENCY-TIMER CACHE-LINE-SIZE */
/linux-4.4.14/fs/xfs/libxfs/
H A Dxfs_da_btree.h144 #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 Dmlock2-tests.c216 #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 Dcore.c565 #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 Dslabinfo-gnuplot.sh101 plot "$file" $range u 2$xtic title 'SIZE' with boxes,\
/linux-4.4.14/arch/mips/include/asm/mips-boards/
H A Dbonito64.h410 #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 Docd.h462 /* Constants for BWC3A:SIZE */
478 /* Constants for BWC3B:SIZE */
/linux-4.4.14/drivers/dma/
H A Dpch_dma.c347 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 Dsbus.c266 #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 Duaccess.h183 * 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 Dcobalt-omnitek.c61 #define SIZE(c) (BASE + 0x58 + ((c) * 0x40)) macro
/linux-4.4.14/drivers/media/usb/hdpvr/
H A Dhdpvr.h250 * QUERY FRAME SIZE AND RATE
/linux-4.4.14/drivers/net/fddi/skfp/h/
H A Dfddimib.h45 * bits for bit string PermittedPaths & RequestedPaths (SIZE(8))
H A Dskfbi.h155 #define PCI_ROMBASZ 0x0001c000L /* Bit 16..14: Treat as BASE or SIZE */
/linux-4.4.14/arch/powerpc/kernel/
H A Dfsl_booke_entry_mapping.S81 mfspr r6,SPRN_MAS1 /* extract MAS1[SIZE] */
H A Dmisc_32.S878 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 Dpage.h111 * __MEMORY_START and SIZE are the physical addresses and size of RAM.
/linux-4.4.14/arch/ia64/include/uapi/asm/
H A Dptrace.h71 * THIS STRUCTURE MUST BE A MULTIPLE 16-BYTE IN SIZE
/linux-4.4.14/drivers/input/touchscreen/
H A Dcyttsp4_core.h239 CY_TCH_W, /* SIZE */
H A Datmel_mxt_ts.c1325 * <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 Dlpfc_debugfs.c2039 "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 Dca0106.h187 /* 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 Dcassini.h57 * 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 Df_ncm.c600 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 Demxx_udc.h512 /* EPn RAM SIZE */
/linux-4.4.14/drivers/media/platform/s5p-jpeg/
H A Djpeg-regs.h252 /* JPEG IMAGE SIZE Register bit */
/linux-4.4.14/drivers/media/usb/pwc/
H A Dpwc.h74 #define PWC_DEBUG_SIZE(fmt, args...) PWC_DEBUG(SIZE, fmt, ##args)
/linux-4.4.14/drivers/net/wireless/cw1200/
H A Dbh.c266 /* Add SIZE of PIGGYBACK reg (CONTROL Reg) cw1200_bh_rx_helper()
/linux-4.4.14/drivers/net/wireless/
H A Dadm8211.h436 #define ADM8211_SRAM_SIZE ADM8211_SRAM(SIZE)
/linux-4.4.14/drivers/edac/
H A Di82975x_edac.c136 * defines the PAGE SIZE to be used
/linux-4.4.14/arch/x86/crypto/
H A Dcrc32c-pcl-intel-asm_64.S70 .error "SMALL_ SIZE must be < 256"
/linux-4.4.14/arch/cris/arch-v32/lib/
H A Dusercopy.c250 ;; the SIZE bytes at PAGE after the first fault. \n\ __copy_user_zeroing()
/linux-4.4.14/arch/alpha/kernel/
H A Dpci_iommu.c366 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 Dohci-dbg.c303 (cc >= 0x0e) ? "OFFSET" : "SIZE", ohci_dump_td()
/linux-4.4.14/drivers/staging/comedi/drivers/
H A Dplx9080.h332 /*** MAILBOX #2 - MEMORY SIZE ***/
/linux-4.4.14/drivers/uwb/
H A Dbeacon.c477 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 Dmt9m032.c822 /* SIZE */ mt9m032_probe()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
H A Dfw.c216 "normal Firmware SIZE %d\n", fwsize); rtl88e_download_fw()
/linux-4.4.14/drivers/net/wan/
H A Dwanxl.c53 /* MAILBOX #2 - DRAM SIZE */
/linux-4.4.14/arch/cris/arch-v10/lib/
H A Dusercopy.c296 ;; the SIZE bytes at PAGE after the first fault. \n\ __copy_user_zeroing()
/linux-4.4.14/fs/nfsd/
H A Dnfsproc.c353 /* we've used the SIZE information, so discard it */ nfsd_proc_create()
/linux-4.4.14/net/rxrpc/
H A Dar-output.c575 _debug("SIZE: %zu/%zu/%zu", chunk, space, size); rxrpc_send_data()
/linux-4.4.14/kernel/trace/
H A Dtrace_output.c210 trace_seq_printf(p, "BAD SIZE:%zu 0x%x", el_size, trace_print_array_seq()
/linux-4.4.14/sound/pci/ice1712/
H A Dice1724.c550 unsigned int size; /* SIZE register offset */
878 #else /* use SIZE register */ snd_vt1724_pcm_pointer()
/linux-4.4.14/drivers/target/
H A Dtarget_core_xcopy.c964 * MAXIMUM STREAM DEVICE TRANSFER SIZE target_rcr_operating_parameters()
/linux-4.4.14/drivers/media/pci/ivtv/
H A Divtvfb.c170 /* Current dimensions (NOT VISIBLE SIZE!) */
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
H A Dfw.c216 "normal Firmware SIZE %d\n" , fwsize); rtl92ee_download_fw()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
H A Dprph.h231 * Read/write, address range from LOWER_BOUND to (LOWER_BOUND + SIZE -1)
/linux-4.4.14/fs/ncpfs/
H A Dinode.c957 /* Do SIZE before attributes, otherwise mtime together with size does not work... ncp_notify_change()
/linux-4.4.14/fs/nfs/
H A Dnfs4trace.h185 { NFS_ATTR_FATTR_SIZE, "SIZE" }, \
/linux-4.4.14/scripts/
H A Dasn1_compiler.c277 _(SIZE),
/linux-4.4.14/kernel/
H A Dmodule.c84 * 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 Dpch_uart.c529 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 Dspi-topcliff-pch.c408 * pch_spi_set_bits_per_word() - Sets SIZE field in SPBRR
/linux-4.4.14/drivers/scsi/csiostor/
H A Dcsio_wr.c1328 /* 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 Dctxnv50.c1021 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 Dentry.S342 movi a3, SIZE??
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dfw.c249 "%s Firmware SIZE %d\n", rtl8821ae_download_fw()
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_83xx_hw.c132 0x3560, /* BOOT LOADER SIZE REG */
/linux-4.4.14/drivers/atm/
H A Dlanai.c673 /* -------------------- COMPUTE SIZE OF AN AAL5 PDU: */
/linux-4.4.14/tools/lib/traceevent/
H A Devent-parse.c4013 trace_seq_printf(s, "BAD SIZE:%d 0x%x", print_str_arg()
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_display.c15781 err_printf(m, " SIZE: %08x\n", error->plane[i].size); for_each_pipe()

Completed in 3811 milliseconds