| /OK3568_Linux_fs/kernel/drivers/scsi/ |
| H A D | scsi_logging.c | 38 size_t off = 0; in sdev_format_header() local 41 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_format_header() 44 if (WARN_ON(off >= logbuf_len)) in sdev_format_header() 45 return off; in sdev_format_header() 48 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_format_header() 50 return off; in sdev_format_header() 58 size_t off = 0, logbuf_len; in sdev_prefix_printk() local 68 off += scnprintf(logbuf + off, logbuf_len - off, in sdev_prefix_printk() 70 if (!WARN_ON(off >= logbuf_len)) { in sdev_prefix_printk() 72 off += vscnprintf(logbuf + off, logbuf_len - off, fmt, args); in sdev_prefix_printk() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/mm/ |
| H A D | page.c | 104 pg_addiu(u32 **buf, unsigned int reg1, unsigned int reg2, unsigned int off) in pg_addiu() argument 107 if (off > 0x7fff) { in pg_addiu() 108 uasm_i_lui(buf, T9, uasm_rel_hi(off)); in pg_addiu() 109 uasm_i_addiu(buf, T9, T9, uasm_rel_lo(off)); in pg_addiu() 111 uasm_i_addiu(buf, T9, ZERO, off); in pg_addiu() 114 if (off > 0x7fff) { in pg_addiu() 115 uasm_i_lui(buf, T9, uasm_rel_hi(off)); in pg_addiu() 116 uasm_i_addiu(buf, T9, T9, uasm_rel_lo(off)); in pg_addiu() 119 UASM_i_ADDIU(buf, reg1, reg2, off); in pg_addiu() 232 static void build_clear_store(u32 **buf, int off) in build_clear_store() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/ntb/hw/intel/ |
| H A D | ntb_hw_gen3.c | 262 ssize_t ret, off; in ndev_ntb3_debugfs_read() local 274 off = 0; in ndev_ntb3_debugfs_read() 276 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 279 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 283 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 285 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 289 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 292 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 294 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() 297 off += scnprintf(buf + off, buf_size - off, in ndev_ntb3_debugfs_read() [all …]
|
| H A D | ntb_hw_gen4.c | 224 ssize_t ret, off; in ndev_ntb4_debugfs_read() local 236 off = 0; in ndev_ntb4_debugfs_read() 238 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 241 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 245 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 247 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 251 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 254 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 256 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() 259 off += scnprintf(buf + off, buf_size - off, in ndev_ntb4_debugfs_read() [all …]
|
| H A D | ntb_hw_gen1.c | 499 ssize_t ret, off; in ndev_ntb_debugfs_read() local 512 off = 0; in ndev_ntb_debugfs_read() 514 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 517 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 522 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 524 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 528 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 532 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 534 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() 538 off += scnprintf(buf + off, buf_size - off, in ndev_ntb_debugfs_read() [all …]
|
| /OK3568_Linux_fs/kernel/arch/ia64/kernel/ |
| H A D | entry.h | 28 #define PT_REGS_SAVES(off) \ argument 30 .fframe IA64_PT_REGS_SIZE+16+(off); \ 31 .spillsp rp, PT(CR_IIP)+16+(off); \ 32 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \ 33 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \ 34 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \ 35 .spillsp pr, PT(PR)+16+(off); 37 #define PT_REGS_UNWIND_INFO(off) \ argument 39 PT_REGS_SAVES(off); \ 42 #define SWITCH_STACK_SAVES(off) \ argument [all …]
|
| /OK3568_Linux_fs/u-boot/arch/powerpc/cpu/mpc85xx/ |
| H A D | fdt.c | 37 int off; in ft_fixup_cpu() local 48 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); in ft_fixup_cpu() 49 while (off != -FDT_ERR_NOTFOUND) { in ft_fixup_cpu() 50 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); in ft_fixup_cpu() 57 fdt_setprop_string(blob, off, "status", in ft_fixup_cpu() 60 fdt_setprop_string(blob, off, "status", in ft_fixup_cpu() 76 fdt_setprop(blob, off, "cpu-release-addr", in ft_fixup_cpu() 80 fdt_setprop_string(blob, off, "enable-method", in ft_fixup_cpu() 85 off = fdt_node_offset_by_prop_value(blob, off, in ft_fixup_cpu() 101 off = fdt_add_mem_rsv(blob, T1040_TDM_QUIRK_CCSR_BASE, in ft_fixup_cpu() [all …]
|
| H A D | liodn.c | 238 int off, portid = tbl[i].portid; in fdt_fixup_srio_liodn() local 240 off = fdt_node_offset_by_prop_value(blob, srio_off, in fdt_fixup_srio_liodn() 242 if (off >= 0) { in fdt_fixup_srio_liodn() 243 off = fdt_setprop(blob, off, "fsl,liodn", in fdt_fixup_srio_liodn() 246 if (off > 0) in fdt_fixup_srio_liodn() 249 portid, fdt_strerror(off)); in fdt_fixup_srio_liodn() 252 fdt_strerror(off)); in fdt_fixup_srio_liodn() 263 int off, pci_idx = 0, pci_cnt = 0, i, rc; in fdt_fixup_pci_liodn_offsets() local 271 off = fdt_node_offset_by_compatible(fdt, -1, compat); in fdt_fixup_pci_liodn_offsets() 272 while (off != -FDT_ERR_NOTFOUND) { in fdt_fixup_pci_liodn_offsets() [all …]
|
| H A D | portals.c | 90 int off; in fdt_portal() local 92 off = fdt_node_offset_by_compatible(blob, -1, compat); in fdt_portal() 93 if (off < 0) in fdt_portal() 96 off = fdt_parent_offset(blob, off); in fdt_portal() 98 if (off > 0) { in fdt_portal() 105 range = fdt_getprop_w(blob, off, "ranges", &len); in fdt_portal() 120 fdt_setprop_inplace(blob, off, "ranges", range, len); in fdt_portal() 123 name = fdt_get_name(blob, off, &len); in fdt_portal() 139 fdt_set_name(blob, off, buf); in fdt_portal() 146 static int fdt_qportal(void *blob, int off, int id, char *name, in fdt_qportal() argument [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | addnote.c | 64 #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1])) argument 65 #define GET_32BE(off) ((GET_16BE(off) << 16U) + GET_16BE((off)+2U)) argument 66 #define GET_64BE(off) ((((unsigned long long)GET_32BE(off)) << 32ULL) + \ argument 67 ((unsigned long long)GET_32BE((off)+4ULL))) 68 #define PUT_16BE(off, v)(buf[off] = ((v) >> 8) & 0xff, \ argument 69 buf[(off) + 1] = (v) & 0xff) 70 #define PUT_32BE(off, v)(PUT_16BE((off), (v) >> 16L), PUT_16BE((off) + 2, (v))) argument 71 #define PUT_64BE(off, v)((PUT_32BE((off), (v) >> 32L), \ argument 72 PUT_32BE((off) + 4, (v)))) 74 #define GET_16LE(off) ((buf[off]) + (buf[(off)+1] << 8)) argument [all …]
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.fsl-ddr | 118 Memory controller ECC on/off 121 ECC can be turned on/off by hwconfig. 124 hwconfig=fsl_ddr:ecc=off 127 Memory address parity on/off 129 address parity can be turned on/off by hwconfig. 171 | | | Slot 1 | off | 75 | 120 | off | off | off | off | off | 30 | 30 | 173 | | | Slot 2 | off | 75 | off | off | 30 | 30 | 120 | off | off | off | 175 | | | Slot 1 | off | 75 | 120 | off | off | off | 20 | 20 | | | 177 | | | Slot 2 | off | 75 | off | off | 20 | 20 | 120 *| off | | | 179 | | | Slot 1 | off | 75 | 120 *| off | | | off | off | 20 | 20 | [all …]
|
| /OK3568_Linux_fs/u-boot/arch/powerpc/cpu/mpc8xxx/ |
| H A D | fdt.c | 25 int off, ret = -FDT_ERR_NOTFOUND; in ft_del_cpuhandle() local 30 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle", in ft_del_cpuhandle() 32 while (off != -FDT_ERR_NOTFOUND) { in ft_del_cpuhandle() 33 fdt_delprop(blob, off, "cpu-handle"); in ft_del_cpuhandle() 35 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle", in ft_del_cpuhandle() 43 int off, num_cores, del_cores; in ft_fixup_num_cores() local 48 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); in ft_fixup_num_cores() 49 while (off != -FDT_ERR_NOTFOUND) { in ft_fixup_num_cores() 50 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); in ft_fixup_num_cores() 54 int ph = fdt_get_phandle(blob, off); in ft_fixup_num_cores() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/ |
| H A D | mtdpstore.c | 27 static int mtdpstore_block_isbad(struct mtdpstore_context *cxt, loff_t off) in mtdpstore_block_isbad() argument 33 off = ALIGN_DOWN(off, mtd->erasesize); in mtdpstore_block_isbad() 34 blknum = div_u64(off, mtd->erasesize); in mtdpstore_block_isbad() 38 ret = mtd_block_isbad(mtd, off); in mtdpstore_block_isbad() 50 loff_t off) in mtdpstore_panic_block_isbad() argument 55 off = ALIGN_DOWN(off, mtd->erasesize); in mtdpstore_panic_block_isbad() 56 blknum = div_u64(off, mtd->erasesize); in mtdpstore_panic_block_isbad() 61 loff_t off) in mtdpstore_mark_used() argument 64 u64 zonenum = div_u64(off, cxt->info.kmsg_size); in mtdpstore_mark_used() 71 loff_t off) in mtdpstore_mark_unused() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/rapidio/ |
| H A D | rio-sysfs.c | 118 char *buf, loff_t off, size_t count) in rio_read_config() argument 122 loff_t init_off = off; in rio_read_config() 129 if (off >= size) in rio_read_config() 131 if (off + count > size) { in rio_read_config() 132 size -= off; in rio_read_config() 138 if ((off & 1) && size) { in rio_read_config() 140 rio_read_config_8(dev, off, &val); in rio_read_config() 141 data[off - init_off] = val; in rio_read_config() 142 off++; in rio_read_config() 146 if ((off & 3) && size > 2) { in rio_read_config() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/mptcp/ |
| H A D | pm_nl_ctl.c | 41 int off = 0; in init_genl_req() local 46 off += NLMSG_ALIGN(sizeof(*nh)); in init_genl_req() 48 gh = (void *)(data + off); in init_genl_req() 51 off += NLMSG_ALIGN(sizeof(*gh)); in init_genl_req() 52 return off; in init_genl_req() 59 uint32_t off; in nl_error() local 74 memcpy(&off, RTA_DATA(attrs), 4); in nl_error() 76 (int)off); in nl_error() 155 int off = 0; in resolve_mptcp_pm_netlink() local 159 off = init_genl_req(data, GENL_ID_CTRL, CTRL_CMD_GETFAMILY, 0); in resolve_mptcp_pm_netlink() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/isdn/ |
| H A D | capiutil.h | 19 #define CAPIMSG_U8(m, off) (m[off]) argument 20 #define CAPIMSG_U16(m, off) (m[off]|(m[(off)+1]<<8)) argument 21 #define CAPIMSG_U32(m, off) (m[off]|(m[(off)+1]<<8)|(m[(off)+2]<<16)|(m[(off)+3]<<24)) argument 33 static inline void capimsg_setu8(void *m, int off, __u8 val) in capimsg_setu8() argument 35 ((__u8 *)m)[off] = val; in capimsg_setu8() 38 static inline void capimsg_setu16(void *m, int off, __u16 val) in capimsg_setu16() argument 40 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu16() 41 ((__u8 *)m)[off+1] = (val >> 8) & 0xff; in capimsg_setu16() 44 static inline void capimsg_setu32(void *m, int off, __u32 val) in capimsg_setu32() argument 46 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu32() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/acpi/ |
| H A D | ec_sys.c | 31 size_t count, loff_t *off) in acpi_ec_read_io() argument 37 loff_t init_off = *off; in acpi_ec_read_io() 40 if (*off >= size) in acpi_ec_read_io() 42 if (*off + count >= size) { in acpi_ec_read_io() 43 size -= *off; in acpi_ec_read_io() 50 err = ec_read(*off, &byte_read); in acpi_ec_read_io() 53 if (put_user(byte_read, buf + *off - init_off)) { in acpi_ec_read_io() 54 if (*off - init_off) in acpi_ec_read_io() 55 return *off - init_off; /* partial read */ in acpi_ec_read_io() 58 *off += 1; in acpi_ec_read_io() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/ |
| H A D | mips-gic.h | 30 #define GIC_ACCESSOR_RO(sz, off, name) \ argument 31 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_SHARED_OFS + off, name) 34 #define GIC_ACCESSOR_RW(sz, off, name) \ argument 35 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_SHARED_OFS + off, name) 38 #define GIC_VX_ACCESSOR_RO(sz, off, name) \ argument 39 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_LOCAL_OFS + off, vl_##name) \ 40 CPS_ACCESSOR_RO(gic, sz, MIPS_GIC_REDIR_OFS + off, vo_##name) 43 #define GIC_VX_ACCESSOR_RW(sz, off, name) \ argument 44 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_LOCAL_OFS + off, vl_##name) \ 45 CPS_ACCESSOR_RW(gic, sz, MIPS_GIC_REDIR_OFS + off, vo_##name) [all …]
|
| /OK3568_Linux_fs/kernel/drivers/isdn/hardware/mISDN/ |
| H A D | iohelper.h | 26 static u8 Read##name##_IO(void *p, u8 off) { \ 28 return inb(hw->ap.port + off); \ 30 static void Write##name##_IO(void *p, u8 off, u8 val) { \ 32 outb(val, hw->ap.port + off); \ 34 static void ReadFiFo##name##_IO(void *p, u8 off, u8 *dp, int size) { \ 36 insb(hw->ap.port + off, dp, size); \ 38 static void WriteFiFo##name##_IO(void *p, u8 off, u8 *dp, int size) { \ 40 outsb(hw->ap.port + off, dp, size); \ 44 static u8 Read##name##_IND(void *p, u8 off) { \ 46 outb(off, hw->ap.ale); \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-s3c/ |
| H A D | gpio-cfg-helpers.h | 24 unsigned int off, unsigned int config) in samsung_gpio_do_setcfg() argument 26 return (chip->config->set_config)(chip, off, config); in samsung_gpio_do_setcfg() 30 unsigned int off) in samsung_gpio_do_getcfg() argument 32 return (chip->config->get_config)(chip, off); in samsung_gpio_do_getcfg() 36 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull() argument 38 return (chip->config->set_pull)(chip, off, pull); in samsung_gpio_do_setpull() 42 unsigned int off) in samsung_gpio_do_getpull() argument 44 return chip->config->get_pull(chip, off); in samsung_gpio_do_getpull() 65 unsigned int off, samsung_gpio_pull_t pull); 77 unsigned int off, samsung_gpio_pull_t pull); [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/ |
| H A D | seek.hpp | 43 seek( T& t, stream_offset off, BOOST_IOS::seekdir way, in seek() argument 47 return seek_device_impl<T>::seek(detail::unwrap(t), off, way, which); in seek() 52 seek( T& t, Device& dev, stream_offset off, BOOST_IOS::seekdir way, in seek() argument 56 return seek_filter_impl<T>::seek(detail::unwrap(t), dev, off, way, which); in seek() 80 static std::streampos seek( T& t, stream_offset off, in seek() 85 ( off < integer_traits<std::streamoff>::const_min || in seek() 86 off > integer_traits<std::streamoff>::const_max ) ) in seek() 88 return t.rdbuf()->pubseekpos(offset_to_position(off)); in seek() 90 return t.rdbuf()->pubseekoff(off, way, which); in seek() 107 static std::streampos seek( T& t, stream_offset off, in seek() [all …]
|
| /OK3568_Linux_fs/kernel/tools/include/linux/ |
| H A D | filter.h | 39 .off = 0, \ 47 .off = 0, \ 57 .off = 0, \ 65 .off = 0, \ 75 .off = 0, \ 85 .off = 0, \ 93 .off = 0, \ 103 .off = 0, \ 111 .off = 0, \ 121 .off = 0, \ [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/gpio/ |
| H A D | kona_gpio.c | 48 unsigned int value, off; in gpio_request() local 51 off = GPIO_PWD_STATUS(GPIO_BANK(gpio)); in gpio_request() 52 value = readl(GPIO_BASE + off) & ~GPIO_BITMASK(gpio); in gpio_request() 53 writel(value, GPIO_BASE + off); in gpio_request() 60 unsigned int value, off; in gpio_free() local 63 off = GPIO_PWD_STATUS(GPIO_BANK(gpio)); in gpio_free() 64 value = readl(GPIO_BASE + off) | GPIO_BITMASK(gpio); in gpio_free() 65 writel(value, GPIO_BASE + off); in gpio_free() 86 u32 val, off; in gpio_direction_output() local 92 off = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id); in gpio_direction_output() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/target/ |
| H A D | target_core_spc.c | 177 u32 unit_serial_len, off = 0; in spc_emulate_evpd_83() local 180 off = 4; in spc_emulate_evpd_83() 194 buf[off++] = 0x1; in spc_emulate_evpd_83() 197 buf[off] = 0x00; in spc_emulate_evpd_83() 200 buf[off++] |= 0x3; in spc_emulate_evpd_83() 201 off++; in spc_emulate_evpd_83() 204 buf[off++] = 0x10; in spc_emulate_evpd_83() 209 buf[off++] = (0x6 << 4); in spc_emulate_evpd_83() 214 buf[off++] = 0x01; in spc_emulate_evpd_83() 215 buf[off++] = 0x40; in spc_emulate_evpd_83() [all …]
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | nand.c | 41 static int nand_dump(struct mtd_info *mtd, ulong off, int only_oob, in nand_dump() argument 50 off = last + mtd->writesize; in nand_dump() 52 last = off; in nand_dump() 66 off &= ~(mtd->writesize - 1); in nand_dump() 67 loff_t addr = (loff_t) off; in nand_dump() 77 printf("Error (%d) reading page %08lx\n", i, off); in nand_dump() 81 printf("Page %08lx dump:\n", off); in nand_dump() 158 ulong off; in do_nand_status() local 168 for (off = 0; off < mtd->size; off += mtd->erasesize) { in do_nand_status() 169 int s = nand_get_lock_status(mtd, off); in do_nand_status() [all …]
|