| /kernel/linux/linux-4.19/arch/powerpc/boot/ |
| D | addnote.c | 68 #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1])) argument 69 #define GET_32BE(off) ((GET_16BE(off) << 16U) + GET_16BE((off)+2U)) argument 70 #define GET_64BE(off) ((((unsigned long long)GET_32BE(off)) << 32ULL) + \ argument 72 #define PUT_16BE(off, v)(buf[off] = ((v) >> 8) & 0xff, \ argument 74 #define PUT_32BE(off, v)(PUT_16BE((off), (v) >> 16L), PUT_16BE((off) + 2, (v))) argument 75 #define PUT_64BE(off, v)((PUT_32BE((off), (v) >> 32L), \ argument 78 #define GET_16LE(off) ((buf[off]) + (buf[(off)+1] << 8)) argument 79 #define GET_32LE(off) (GET_16LE(off) + (GET_16LE((off)+2U) << 16U)) argument 80 #define GET_64LE(off) ((unsigned long long)GET_32LE(off) + \ argument 82 #define PUT_16LE(off, v) (buf[off] = (v) & 0xff, \ argument [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/boot/ |
| 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 68 #define PUT_16BE(off, v)(buf[off] = ((v) >> 8) & 0xff, \ argument 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 74 #define GET_16LE(off) ((buf[off]) + (buf[(off)+1] << 8)) argument 75 #define GET_32LE(off) (GET_16LE(off) + (GET_16LE((off)+2U) << 16U)) argument 76 #define GET_64LE(off) ((unsigned long long)GET_32LE(off) + \ argument 78 #define PUT_16LE(off, v) (buf[off] = (v) & 0xff, \ argument [all …]
|
| /kernel/linux/linux-5.10/drivers/mtd/ |
| D | mtdpstore.c | 27 static int mtdpstore_block_isbad(struct mtdpstore_context *cxt, loff_t off) in mtdpstore_block_isbad() 50 loff_t off) in mtdpstore_panic_block_isbad() 61 loff_t off) in mtdpstore_mark_used() 71 loff_t off) in mtdpstore_mark_unused() 81 loff_t off) in mtdpstore_block_mark_unused() 97 static inline int mtdpstore_is_used(struct mtdpstore_context *cxt, loff_t off) in mtdpstore_is_used() 108 loff_t off) in mtdpstore_block_is_used() 140 static void mtdpstore_mark_removed(struct mtdpstore_context *cxt, loff_t off) in mtdpstore_mark_removed() 150 loff_t off) in mtdpstore_block_clear_removed() 166 loff_t off) in mtdpstore_block_is_removed() [all …]
|
| /kernel/liteos_m/testsuites/unittest/posix/src/fs/ |
| D | posix_fs_func_test.c | 445 long off = 0; variable 466 long off = 0; variable 490 long off = 0; variable 514 long off = 0; variable 538 long off = 0; variable 562 long off = 0; variable 586 long off = 0; variable 610 long off = 0; variable 634 long off = 0; variable 658 long off = 0; variable [all …]
|
| /kernel/linux/linux-4.19/arch/mips/include/asm/ |
| D | mips-gic.h | 34 #define GIC_ACCESSOR_RO(sz, off, name) \ argument 38 #define GIC_ACCESSOR_RW(sz, off, name) \ argument 42 #define GIC_VX_ACCESSOR_RO(sz, off, name) \ argument 47 #define GIC_VX_ACCESSOR_RW(sz, off, name) \ argument 52 #define GIC_ACCESSOR_RO_INTR_REG(sz, off, stride, name) \ argument 65 #define GIC_ACCESSOR_RW_INTR_REG(sz, off, stride, name) \ argument 76 #define GIC_VX_ACCESSOR_RO_INTR_REG(sz, off, stride, name) \ argument 83 #define GIC_VX_ACCESSOR_RW_INTR_REG(sz, off, stride, name) \ argument 90 #define GIC_ACCESSOR_RO_INTR_BIT(off, name) \ argument 113 #define GIC_ACCESSOR_RW_INTR_BIT(off, name) \ argument [all …]
|
| /kernel/linux/linux-5.10/arch/mips/include/asm/ |
| D | mips-gic.h | 30 #define GIC_ACCESSOR_RO(sz, off, name) \ argument 34 #define GIC_ACCESSOR_RW(sz, off, name) \ argument 38 #define GIC_VX_ACCESSOR_RO(sz, off, name) \ argument 43 #define GIC_VX_ACCESSOR_RW(sz, off, name) \ argument 48 #define GIC_ACCESSOR_RO_INTR_REG(sz, off, stride, name) \ argument 61 #define GIC_ACCESSOR_RW_INTR_REG(sz, off, stride, name) \ argument 72 #define GIC_VX_ACCESSOR_RO_INTR_REG(sz, off, stride, name) \ argument 79 #define GIC_VX_ACCESSOR_RW_INTR_REG(sz, off, stride, name) \ argument 86 #define GIC_ACCESSOR_RO_INTR_BIT(off, name) \ argument 109 #define GIC_ACCESSOR_RW_INTR_BIT(off, name) \ argument [all …]
|
| /kernel/linux/linux-5.10/arch/arc/lib/ |
| D | memset-archs.S | 20 .macro PREALLOC_INSTR reg, off 24 .macro PREFETCHW_INSTR reg, off 30 .macro PREALLOC_INSTR reg, off 33 .macro PREFETCHW_INSTR reg, off
|
| /kernel/linux/linux-4.19/drivers/scsi/ |
| D | scsi_logging.c | 39 size_t off = 0; in sdev_format_header() local 59 size_t off = 0, logbuf_len; in sdev_prefix_printk() local 86 size_t off = 0, logbuf_len; in scmd_printk() local 111 size_t off; in scsi_format_opcode_name() local 159 size_t off; in __scsi_format_command() local 182 size_t off, logbuf_len; in scsi_print_command() local 248 size_t off = 0; in scsi_format_extd_sense() local 278 size_t off; in scsi_format_sense_hdr() local 310 size_t off; in scsi_log_dump_sense() local 327 size_t off, logbuf_len; in scsi_log_print_sense_hdr() local [all …]
|
| /kernel/linux/linux-4.19/fs/hfs/ |
| D | bnode.c | 19 int off, int len) in hfs_bnode_read() 30 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) in hfs_bnode_read_u16() 38 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) in hfs_bnode_read_u8() 46 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) in hfs_bnode_read_key() 61 void hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_write() 73 void hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) in hfs_bnode_write_u16() 80 void hfs_bnode_write_u8(struct hfs_bnode *node, int off, u8 data) in hfs_bnode_write_u8() 86 void hfs_bnode_clear(struct hfs_bnode *node, int off, int len) in hfs_bnode_clear() 138 int i, off, key_off; in hfs_bnode_dump() local 242 loff_t off; in __hfs_bnode_create() local [all …]
|
| /kernel/linux/linux-5.10/drivers/scsi/ |
| D | scsi_logging.c | 38 size_t off = 0; in sdev_format_header() local 58 size_t off = 0, logbuf_len; in sdev_prefix_printk() local 85 size_t off = 0, logbuf_len; in scmd_printk() local 110 size_t off; in scsi_format_opcode_name() local 158 size_t off; in __scsi_format_command() local 181 size_t off, logbuf_len; in scsi_print_command() local 243 size_t off = 0; in scsi_format_extd_sense() local 273 size_t off; in scsi_format_sense_hdr() local 305 size_t off; in scsi_log_dump_sense() local 322 size_t off, logbuf_len; in scsi_log_print_sense_hdr() local [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/crypto/ |
| D | aes-spe-modes.S | 13 #define LOAD_DATA(reg, off) \ argument 15 #define SAVE_DATA(reg, off) \ argument 20 #define LOAD_IV(reg, off) \ argument 22 #define SAVE_IV(reg, off) \ argument 30 #define LOAD_DATA(reg, off) \ argument 33 #define SAVE_DATA(reg, off) \ argument 37 #define LOAD_IV(reg, off) \ argument 40 #define SAVE_IV(reg, off) \ argument
|
| D | aes-spe-core.S | 22 #define LWH(out, off) \ argument 25 #define LWL(out, off) \ argument 28 #define LBZ(out, tab, off) \ argument 31 #define LAH(out, in, bpos, off) \ argument 35 #define LAL(out, in, bpos, off) \ argument
|
| /kernel/linux/linux-4.19/arch/powerpc/crypto/ |
| D | aes-spe-modes.S | 18 #define LOAD_DATA(reg, off) \ argument 20 #define SAVE_DATA(reg, off) \ argument 25 #define LOAD_IV(reg, off) \ argument 27 #define SAVE_IV(reg, off) \ argument 35 #define LOAD_DATA(reg, off) \ argument 38 #define SAVE_DATA(reg, off) \ argument 42 #define LOAD_IV(reg, off) \ argument 45 #define SAVE_IV(reg, off) \ argument
|
| D | aes-spe-core.S | 27 #define LWH(out, off) \ argument 30 #define LWL(out, off) \ argument 33 #define LBZ(out, tab, off) \ argument 36 #define LAH(out, in, bpos, off) \ argument 40 #define LAL(out, in, bpos, off) \ argument
|
| /kernel/linux/linux-4.19/arch/arm/plat-samsung/include/plat/ |
| D | gpio-cfg-helpers.h | 24 unsigned int off, unsigned int config) in samsung_gpio_do_setcfg() 30 unsigned int off) in samsung_gpio_do_getcfg() 36 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull() 42 unsigned int off) in samsung_gpio_do_getpull()
|
| /kernel/linux/linux-5.10/arch/arm/mach-s3c/ |
| D | gpio-cfg-helpers.h | 24 unsigned int off, unsigned int config) in samsung_gpio_do_setcfg() 30 unsigned int off) in samsung_gpio_do_getcfg() 36 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull() 42 unsigned int off) in samsung_gpio_do_getpull()
|
| /kernel/linux/linux-5.10/fs/hfs/ |
| D | bnode.c | 18 void hfs_bnode_read(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_read() 45 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) in hfs_bnode_read_u16() 53 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) in hfs_bnode_read_u8() 61 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) in hfs_bnode_read_key() 76 void hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_write() 88 void hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) in hfs_bnode_write_u16() 95 void hfs_bnode_write_u8(struct hfs_bnode *node, int off, u8 data) in hfs_bnode_write_u8() 101 void hfs_bnode_clear(struct hfs_bnode *node, int off, int len) in hfs_bnode_clear() 153 int i, off, key_off; in hfs_bnode_dump() local 257 loff_t off; in __hfs_bnode_create() local [all …]
|
| /kernel/linux/linux-5.10/arch/mips/mm/ |
| D | page.c | 104 pg_addiu(u32 **buf, unsigned int reg1, unsigned int reg2, unsigned int off) in pg_addiu() 232 static void build_clear_store(u32 **buf, int off) in build_clear_store() 241 static inline void build_clear_pref(u32 **buf, int off) in build_clear_pref() 277 int off; in build_clear_page() local 368 static void build_copy_load(u32 **buf, int reg, int off) in build_copy_load() 377 static void build_copy_store(u32 **buf, int reg, int off) in build_copy_store() 386 static inline void build_copy_load_pref(u32 **buf, int off) in build_copy_load_pref() 395 static inline void build_copy_store_pref(u32 **buf, int off) in build_copy_store_pref() 426 int off; in build_copy_page() local
|
| /kernel/linux/linux-4.19/drivers/w1/slaves/ |
| D | w1_ds2408.c | 70 struct bin_attribute *bin_attr, char *buf, loff_t off, in state_read() 83 loff_t off, size_t count) in output_read() 96 loff_t off, size_t count) in activity_read() 109 loff_t off, size_t count) in cond_search_mask_read() 123 char *buf, loff_t off, size_t count) in cond_search_polarity_read() 133 loff_t off, size_t count) in status_control_read() 143 loff_t off, size_t count) in output_write() 214 loff_t off, size_t count) in activity_write() 244 loff_t off, size_t count) in status_control_write()
|
| /kernel/linux/linux-4.19/arch/mips/mm/ |
| D | page.c | 105 pg_addiu(u32 **buf, unsigned int reg1, unsigned int reg2, unsigned int off) in pg_addiu() 233 static void build_clear_store(u32 **buf, int off) in build_clear_store() 242 static inline void build_clear_pref(u32 **buf, int off) in build_clear_pref() 276 int off; in build_clear_page() local 367 static void build_copy_load(u32 **buf, int reg, int off) in build_copy_load() 376 static void build_copy_store(u32 **buf, int reg, int off) in build_copy_store() 385 static inline void build_copy_load_pref(u32 **buf, int off) in build_copy_load_pref() 394 static inline void build_copy_store_pref(u32 **buf, int off) in build_copy_store_pref() 423 int off; in build_copy_page() local
|
| /kernel/linux/linux-5.10/drivers/w1/slaves/ |
| D | w1_ds2408.c | 68 struct bin_attribute *bin_attr, char *buf, loff_t off, in state_read() 81 loff_t off, size_t count) in output_read() 94 loff_t off, size_t count) in activity_read() 107 loff_t off, size_t count) in cond_search_mask_read() 121 char *buf, loff_t off, size_t count) in cond_search_polarity_read() 131 loff_t off, size_t count) in status_control_read() 164 loff_t off, size_t count) in output_write() 214 loff_t off, size_t count) in activity_write() 244 loff_t off, size_t count) in status_control_write()
|
| /kernel/linux/linux-4.19/fs/hfsplus/ |
| D | bnode.c | 22 void hfs_bnode_read(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_read() 43 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) in hfs_bnode_read_u16() 51 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) in hfs_bnode_read_u8() 59 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) in hfs_bnode_read_key() 75 void hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_write() 98 void hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) in hfs_bnode_write_u16() 105 void hfs_bnode_clear(struct hfs_bnode *node, int off, int len) in hfs_bnode_clear() 302 int i, off, key_off; in hfs_bnode_dump() local 406 loff_t off; in __hfs_bnode_create() local 482 int i, rec_off, off, next_off; in hfs_bnode_find() local
|
| /kernel/linux/linux-5.10/fs/hfsplus/ |
| D | bnode.c | 22 void hfs_bnode_read(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_read() 43 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) in hfs_bnode_read_u16() 51 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) in hfs_bnode_read_u8() 59 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) in hfs_bnode_read_key() 75 void hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) in hfs_bnode_write() 98 void hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) in hfs_bnode_write_u16() 105 void hfs_bnode_clear(struct hfs_bnode *node, int off, int len) in hfs_bnode_clear() 302 int i, off, key_off; in hfs_bnode_dump() local 406 loff_t off; in __hfs_bnode_create() local 482 int i, rec_off, off, next_off; in hfs_bnode_find() local
|
| /kernel/linux/linux-4.19/drivers/gpio/ |
| D | gpio-ucb1400.c | 15 static int ucb1400_gpio_dir_in(struct gpio_chip *gc, unsigned off) in ucb1400_gpio_dir_in() 23 static int ucb1400_gpio_dir_out(struct gpio_chip *gc, unsigned off, int val) in ucb1400_gpio_dir_out() 32 static int ucb1400_gpio_get(struct gpio_chip *gc, unsigned off) in ucb1400_gpio_get() 40 static void ucb1400_gpio_set(struct gpio_chip *gc, unsigned off, int val) in ucb1400_gpio_set()
|
| /kernel/linux/linux-5.10/drivers/gpio/ |
| D | gpio-ucb1400.c | 11 static int ucb1400_gpio_dir_in(struct gpio_chip *gc, unsigned off) in ucb1400_gpio_dir_in() 19 static int ucb1400_gpio_dir_out(struct gpio_chip *gc, unsigned off, int val) in ucb1400_gpio_dir_out() 28 static int ucb1400_gpio_get(struct gpio_chip *gc, unsigned off) in ucb1400_gpio_get() 36 static void ucb1400_gpio_set(struct gpio_chip *gc, unsigned off, int val) in ucb1400_gpio_set()
|