/linux-4.4.14/fs/ext4/ |
D | extents_status.c | 184 struct extent_status *es; in ext4_es_print_tree() local 185 es = rb_entry(node, struct extent_status, rb_node); in ext4_es_print_tree() 187 es->es_lblk, es->es_len, in ext4_es_print_tree() 188 ext4_es_pblock(es), ext4_es_status(es)); in ext4_es_print_tree() 197 static inline ext4_lblk_t ext4_es_end(struct extent_status *es) in ext4_es_end() argument 199 BUG_ON(es->es_lblk + es->es_len < es->es_lblk); in ext4_es_end() 200 return es->es_lblk + es->es_len - 1; in ext4_es_end() 211 struct extent_status *es = NULL; in __es_tree_search() local 214 es = rb_entry(node, struct extent_status, rb_node); in __es_tree_search() 215 if (lblk < es->es_lblk) in __es_tree_search() [all …]
|
D | extents_status.h | 94 struct extent_status *es); 96 struct extent_status *es); 98 static inline unsigned int ext4_es_status(struct extent_status *es) in ext4_es_status() argument 100 return es->es_pblk >> ES_SHIFT; in ext4_es_status() 103 static inline unsigned int ext4_es_type(struct extent_status *es) in ext4_es_type() argument 105 return (es->es_pblk & ES_TYPE_MASK) >> ES_SHIFT; in ext4_es_type() 108 static inline int ext4_es_is_written(struct extent_status *es) in ext4_es_is_written() argument 110 return (ext4_es_type(es) & EXTENT_STATUS_WRITTEN) != 0; in ext4_es_is_written() 113 static inline int ext4_es_is_unwritten(struct extent_status *es) in ext4_es_is_unwritten() argument 115 return (ext4_es_type(es) & EXTENT_STATUS_UNWRITTEN) != 0; in ext4_es_is_unwritten() [all …]
|
D | super.c | 66 struct ext4_super_block *es); 68 struct ext4_super_block *es); 111 struct ext4_super_block *es) in ext4_verify_csum_type() argument 116 return es->s_checksum_type == EXT4_CRC32C_CHKSUM; in ext4_verify_csum_type() 120 struct ext4_super_block *es) in ext4_superblock_csum() argument 126 csum = ext4_chksum(sbi, ~0, (char *)es, offset); in ext4_superblock_csum() 132 struct ext4_super_block *es) in ext4_superblock_csum_verify() argument 137 return es->s_checksum == ext4_superblock_csum(sb, es); in ext4_superblock_csum_verify() 142 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_superblock_csum_set() local 147 es->s_checksum = ext4_superblock_csum(sb, es); in ext4_superblock_csum_set() [all …]
|
D | resize.c | 89 struct ext4_super_block *es = sbi->s_es; in verify_group_input() local 90 ext4_fsblk_t start = ext4_blocks_count(es); in verify_group_input() 480 struct ext4_super_block *es = sbi->s_es; in setup_new_flex_group_blocks() local 492 reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks); in setup_new_flex_group_blocks() 756 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in add_new_gdb() local 860 le16_add_cpu(&es->s_reserved_gdt_blocks, -1); in add_new_gdb() 1155 struct ext4_super_block *es = sbi->s_es; in ext4_add_new_descs() local 1163 le16_to_cpu(es->s_reserved_gdt_blocks) : 0; in ext4_add_new_descs() 1313 struct ext4_super_block *es = sbi->s_es; in ext4_update_super() local 1332 reserved_blocks = ext4_r_blocks_count(es) * 100; in ext4_update_super() [all …]
|
D | mmp.c | 135 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in kmmpd() local 140 int mmp_update_interval = le16_to_cpu(es->s_mmp_update_interval); in kmmpd() 146 mmp_block = le64_to_cpu(es->s_mmp_block); in kmmpd() 180 if (!(le32_to_cpu(es->s_feature_incompat) & in kmmpd() 278 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_multi_mount_protect() local 283 unsigned int mmp_check_interval = le16_to_cpu(es->s_mmp_update_interval); in ext4_multi_mount_protect() 287 if (mmp_block < le32_to_cpu(es->s_first_data_block) || in ext4_multi_mount_protect() 288 mmp_block >= ext4_blocks_count(es)) { in ext4_multi_mount_protect()
|
D | file.c | 572 struct extent_status es; in ext4_seek_data() local 606 ext4_es_find_delayed_extent_range(inode, last, last, &es); in ext4_seek_data() 607 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { in ext4_seek_data() 645 struct extent_status es; in ext4_seek_hole() local 679 ext4_es_find_delayed_extent_range(inode, last, last, &es); in ext4_seek_hole() 680 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { in ext4_seek_hole() 681 last = es.es_lblk + es.es_len; in ext4_seek_hole()
|
D | balloc.c | 55 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_get_group_no_and_offset() local 58 blocknr = blocknr - le32_to_cpu(es->s_first_data_block); in ext4_get_group_no_and_offset() 670 struct ext4_super_block *es; in ext4_count_free_clusters() local 675 es = EXT4_SB(sb)->s_es; in ext4_count_free_clusters() 705 EXT4_NUM_B2C(EXT4_SB(sb), ext4_free_blocks_count(es)), in ext4_count_free_clusters() 748 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_bg_has_super() local 753 if (group == le32_to_cpu(es->s_backup_bgs[0]) || in ext4_bg_has_super() 754 group == le32_to_cpu(es->s_backup_bgs[1])) in ext4_bg_has_super()
|
D | extents.c | 407 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_valid_extent_entries() local 421 es->s_last_error_block = cpu_to_le64(pblock); in ext4_valid_extent_entries() 1271 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_ext_grow_indepth() local 1277 if (goal > le32_to_cpu(es->s_first_data_block)) { in ext4_ext_grow_indepth() 2152 struct extent_status es; in ext4_fill_fiemap_extents() local 2219 es.es_lblk = start; in ext4_fill_fiemap_extents() 2220 es.es_len = end - start; in ext4_fill_fiemap_extents() 2221 es.es_pblk = 0; in ext4_fill_fiemap_extents() 2223 es.es_lblk = le32_to_cpu(ex->ee_block); in ext4_fill_fiemap_extents() 2224 es.es_len = ext4_ext_get_actual_len(ex); in ext4_fill_fiemap_extents() [all …]
|
D | ext4_jbd2.c | 297 struct ext4_super_block *es; in __ext4_handle_dirty_metadata() local 299 es = EXT4_SB(inode->i_sb)->s_es; in __ext4_handle_dirty_metadata() 300 es->s_last_error_block = in __ext4_handle_dirty_metadata()
|
D | ext4.h | 2571 struct ext4_super_block *es, 2750 static inline ext4_fsblk_t ext4_blocks_count(struct ext4_super_block *es) in ext4_blocks_count() argument 2752 return ((ext4_fsblk_t)le32_to_cpu(es->s_blocks_count_hi) << 32) | in ext4_blocks_count() 2753 le32_to_cpu(es->s_blocks_count_lo); in ext4_blocks_count() 2756 static inline ext4_fsblk_t ext4_r_blocks_count(struct ext4_super_block *es) in ext4_r_blocks_count() argument 2758 return ((ext4_fsblk_t)le32_to_cpu(es->s_r_blocks_count_hi) << 32) | in ext4_r_blocks_count() 2759 le32_to_cpu(es->s_r_blocks_count_lo); in ext4_r_blocks_count() 2762 static inline ext4_fsblk_t ext4_free_blocks_count(struct ext4_super_block *es) in ext4_free_blocks_count() argument 2764 return ((ext4_fsblk_t)le32_to_cpu(es->s_free_blocks_count_hi) << 32) | in ext4_free_blocks_count() 2765 le32_to_cpu(es->s_free_blocks_count_lo); in ext4_free_blocks_count() [all …]
|
D | block_validity.c | 225 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_check_blockref() local 234 es->s_last_error_block = cpu_to_le64(blk); in ext4_check_blockref()
|
D | inode.c | 461 struct extent_status es; in ext4_map_blocks() local 486 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { in ext4_map_blocks() 487 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { in ext4_map_blocks() 488 map->m_pblk = ext4_es_pblock(&es) + in ext4_map_blocks() 489 map->m_lblk - es.es_lblk; in ext4_map_blocks() 490 map->m_flags |= ext4_es_is_written(&es) ? in ext4_map_blocks() 492 retval = es.es_len - (map->m_lblk - es.es_lblk); in ext4_map_blocks() 496 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { in ext4_map_blocks() 633 ext4_es_lookup_extent(inode, map->m_lblk, &es)) { in ext4_map_blocks() 634 if (ext4_es_is_written(&es)) in ext4_map_blocks() [all …]
|
D | ialloc.c | 263 struct ext4_super_block *es; in ext4_free_inode() local 304 es = EXT4_SB(sb)->s_es; in ext4_free_inode() 305 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext4_free_inode() 1220 struct ext4_super_block *es; in ext4_count_free_inodes() local 1224 es = EXT4_SB(sb)->s_es; in ext4_count_free_inodes() 1249 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes()
|
D | migrate.c | 618 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_ind_migrate() local 653 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS || in ext4_ind_migrate()
|
D | mballoc.c | 4175 struct ext4_super_block *es = sbi->s_es; in ext4_mb_initialize_context() local 4190 if (goal < le32_to_cpu(es->s_first_data_block) || in ext4_mb_initialize_context() 4191 goal >= ext4_blocks_count(es)) in ext4_mb_initialize_context() 4192 goal = le32_to_cpu(es->s_first_data_block); in ext4_mb_initialize_context()
|
/linux-4.4.14/sound/pci/ |
D | es1968.c | 873 struct esschan *es; in snd_es1968_bob_dec() local 874 list_for_each_entry(es, &chip->substream_list, list) { in snd_es1968_bob_dec() 875 if (max_freq < es->bob_freq) in snd_es1968_bob_dec() 876 max_freq = es->bob_freq; in snd_es1968_bob_dec() 887 snd_es1968_calc_bob_rate(struct es1968 *chip, struct esschan *es, in snd_es1968_calc_bob_rate() argument 892 if (es->fmt & ESS_FMT_STEREO) in snd_es1968_calc_bob_rate() 894 if (es->fmt & ESS_FMT_16BIT) in snd_es1968_calc_bob_rate() 896 freq /= es->frag_size; in snd_es1968_calc_bob_rate() 921 snd_es1968_get_dma_ptr(struct es1968 *chip, struct esschan *es) in snd_es1968_get_dma_ptr() argument 925 offset = apu_get_register(chip, es->apu[0], 5); in snd_es1968_get_dma_ptr() [all …]
|
/linux-4.4.14/drivers/md/ |
D | dm-cache-policy-smq.c | 63 static int space_init(struct entry_space *es, unsigned nr_entries) in space_init() argument 66 es->begin = es->end = NULL; in space_init() 70 es->begin = vzalloc(sizeof(struct entry) * nr_entries); in space_init() 71 if (!es->begin) in space_init() 74 es->end = es->begin + nr_entries; in space_init() 78 static void space_exit(struct entry_space *es) in space_exit() argument 80 vfree(es->begin); in space_exit() 83 static struct entry *__get_entry(struct entry_space *es, unsigned block) in __get_entry() argument 87 e = es->begin + block; in __get_entry() 88 BUG_ON(e >= es->end); in __get_entry() [all …]
|
/linux-4.4.14/drivers/parisc/ |
D | eisa_enumerator.c | 319 struct eeprom_eisa_slot_info *es, in parse_slot_config() argument 337 print_eisa_id(board, es->eisa_slot_id); in parse_slot_config() 339 slot, board, es->flags&HPEE_FLAG_BOARD_IS_ISA ? "ISA" : "EISA"); in parse_slot_config() 341 maxlen = es->config_data_length < HPEE_MAX_LENGTH ? in parse_slot_config() 342 es->config_data_length : HPEE_MAX_LENGTH; in parse_slot_config() 343 while ((pos < maxlen) && (num_func <= es->num_functions)) { in parse_slot_config() 414 if (pos != es->config_data_length) { in parse_slot_config() 416 pos, es->config_data_length); in parse_slot_config() 420 if (num_func != es->num_functions) { in parse_slot_config() 422 num_func, es->num_functions); in parse_slot_config() [all …]
|
/linux-4.4.14/fs/ext2/ |
D | super.c | 40 struct ext2_super_block *es, int wait); 53 struct ext2_super_block *es = sbi->s_es; in ext2_error() local 58 es->s_state |= cpu_to_le16(EXT2_ERROR_FS); in ext2_error() 60 ext2_sync_super(sb, es, 1); in ext2_error() 103 struct ext2_super_block *es = EXT2_SB(sb)->s_es; in ext2_update_dynamic_rev() local 105 if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV) in ext2_update_dynamic_rev() 113 es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO); in ext2_update_dynamic_rev() 114 es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE); in ext2_update_dynamic_rev() 115 es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV); in ext2_update_dynamic_rev() 136 struct ext2_super_block *es = sbi->s_es; in ext2_put_super() local [all …]
|
D | balloc.c | 488 struct ext2_super_block * es = sbi->s_es; in ext2_free_blocks() local 491 if (block < le32_to_cpu(es->s_first_data_block) || in ext2_free_blocks() 493 block + count > le32_to_cpu(es->s_blocks_count)) { in ext2_free_blocks() 504 block_group = (block - le32_to_cpu(es->s_first_data_block)) / in ext2_free_blocks() 506 bit = (block - le32_to_cpu(es->s_first_data_block)) % in ext2_free_blocks() 1225 struct ext2_super_block *es; in ext2_new_blocks() local 1247 es = EXT2_SB(sb)->s_es; in ext2_new_blocks() 1272 if (goal < le32_to_cpu(es->s_first_data_block) || in ext2_new_blocks() 1273 goal >= le32_to_cpu(es->s_blocks_count)) in ext2_new_blocks() 1274 goal = le32_to_cpu(es->s_first_data_block); in ext2_new_blocks() [all …]
|
D | ialloc.c | 111 struct ext2_super_block * es; in ext2_free_inode() local 124 es = EXT2_SB(sb)->s_es; in ext2_free_inode() 128 ino > le32_to_cpu(es->s_inodes_count)) { in ext2_free_inode() 262 struct ext2_super_block *es = sbi->s_es; in find_group_orlov() local 315 blocks_per_dir = (le32_to_cpu(es->s_blocks_count)-free_blocks) / ndirs; in find_group_orlov() 440 struct ext2_super_block *es; in ext2_new_inode() local 452 es = sbi->s_es; in ext2_new_inode() 519 if (ino < EXT2_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext2_new_inode() 625 struct ext2_super_block *es; in ext2_count_free_inodes() local 629 es = EXT2_SB(sb)->s_es; in ext2_count_free_inodes()
|
/linux-4.4.14/drivers/net/can/usb/ |
D | kvaser_usb.c | 821 const struct kvaser_usb_error_summary *es, in kvaser_usb_rx_error_update_can_state() argument 828 netdev_dbg(priv->netdev, "Error status: 0x%02x\n", es->status); in kvaser_usb_rx_error_update_can_state() 832 if (es->status & (M16C_STATE_BUS_OFF | M16C_STATE_BUS_RESET)) in kvaser_usb_rx_error_update_can_state() 834 else if (es->status & M16C_STATE_BUS_PASSIVE) in kvaser_usb_rx_error_update_can_state() 836 else if (es->status & M16C_STATE_BUS_ERROR) { in kvaser_usb_rx_error_update_can_state() 839 if ((es->txerr >= 128) || (es->rxerr >= 128)) in kvaser_usb_rx_error_update_can_state() 841 else if ((es->txerr >= 96) || (es->rxerr >= 96)) in kvaser_usb_rx_error_update_can_state() 848 if (!es->status) in kvaser_usb_rx_error_update_can_state() 852 tx_state = (es->txerr >= es->rxerr) ? new_state : 0; in kvaser_usb_rx_error_update_can_state() 853 rx_state = (es->txerr <= es->rxerr) ? new_state : 0; in kvaser_usb_rx_error_update_can_state() [all …]
|
/linux-4.4.14/scripts/coccinelle/misc/ |
D | warn.cocci | 44 expression list es; 50 es); 54 expression list ok1.es; 59 WARN(1,es); 93 expression list es; 99 es); 103 expression list ok2.es; 108 WARN_ONCE(1,es);
|
/linux-4.4.14/arch/x86/boot/ |
D | copy.S | 61 pushw %es 63 popw %es 65 popw %es 80 pushw %es 82 popw %es 84 popw %es
|
D | string.c | 60 const char *es = s; in strnlen() local 61 while (*es && maxlen) { in strnlen() 62 es++; in strnlen() 66 return (es - s); in strnlen()
|
D | bioscall.S | 44 popw %es 55 pushw %es 65 movw %ax, %es
|
D | video-vesa.c | 202 boot_params.screen_info.vesapm_seg = oreg.es; in vesa_store_pm_info() 253 ireg.es = 0; /* ES:DI must be 0 by spec */ in vesa_store_edid() 266 ireg.es = ds(); in vesa_store_edid()
|
D | regs.c | 27 reg->es = ds(); in initregs()
|
D | pmjump.S | 54 movl %ecx, %es
|
D | edd.c | 110 ireg.es = 0; in get_edd_info()
|
D | boot.h | 255 u16 es, ds; member
|
D | header.S | 57 movw %ax, %es
|
/linux-4.4.14/tools/perf/util/ |
D | db-export.c | 293 struct export_sample es = { in db_export__sample() local 323 es.comm_db_id = comm->db_id; in db_export__sample() 326 es.db_id = ++dbe->sample_last_db_id; in db_export__sample() 328 err = db_ids_from_al(dbe, al, &es.dso_db_id, &es.sym_db_id, &es.offset); in db_export__sample() 337 err = db_ids_from_al(dbe, &addr_al, &es.addr_dso_db_id, in db_export__sample() 338 &es.addr_sym_db_id, &es.addr_offset); in db_export__sample() 343 &addr_al, es.db_id, in db_export__sample() 351 err = dbe->export_sample(dbe, &es); in db_export__sample()
|
D | db-export.h | 62 int (*export_sample)(struct db_export *dbe, struct export_sample *es);
|
/linux-4.4.14/arch/x86/power/ |
D | cpu.c | 82 savesegment(es, ctxt->es); in __save_processor_state() 89 asm volatile ("movw %%es, %0" : "=m" (ctxt->es)); in __save_processor_state() 203 loadsegment(es, ctxt->es); in __restore_processor_state() 216 asm volatile ("movw %0, %%es" :: "r" (ctxt->es)); in __restore_processor_state()
|
/linux-4.4.14/arch/x86/kernel/ |
D | process_64.c | 63 unsigned int ds, cs, es; in __show_regs() local 82 asm("movl %%es,%0" : "=r" (es)); in __show_regs() 101 es, cr0); in __show_regs() 173 savesegment(es, p->thread.es); in copy_thread_tls() 236 loadsegment(es, _ds); in start_thread_common() 325 savesegment(es, prev->es); in __switch_to() 326 if (unlikely(next->es | prev->es)) in __switch_to() 327 loadsegment(es, next->es); in __switch_to()
|
D | head_32.S | 110 movl %eax,%es 307 movl %eax,%es 461 movl %eax,%es 569 push %es # 0(%esp) 572 movl %eax,%es 606 pop %es 625 pushl %es 629 movl %eax,%es 644 popl %es
|
D | process_32.c | 96 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss); in __show_regs() 149 childregs->es = __USER_DS; in copy_thread_tls() 203 regs->es = __USER_DS; in start_thread()
|
D | ptrace.c | 82 REG_OFFSET_NAME(es), 296 case offsetof(struct user_regs_struct, es): in get_segment_reg() 301 return task->thread.es; in get_segment_reg() 353 case offsetof(struct user_regs_struct,es): in set_segment_reg() 354 task->thread.es = value; in set_segment_reg() 356 loadsegment(es, task->thread.es); in set_segment_reg() 417 case offsetof(struct user_regs_struct, es): in putreg() 459 case offsetof(struct user_regs_struct, es): in getreg() 956 SEG32(es); in putreg32() 1025 SEG32(es); in getreg32()
|
D | signal.c | 79 COPY_SEG(es); in restore_sigcontext() 132 put_user_ex(regs->es, (unsigned int __user *)&sc->es); in setup_sigcontext() 333 regs->es = __USER_DS; in __setup_frame() 399 regs->es = __USER_DS; in __setup_rt_frame() 527 loadsegment(es, __USER_DS); in x32_setup_rt_frame()
|
D | doublefault.c | 62 .es = __USER_DS,
|
D | vm86_32.c | 135 put_user_ex(regs->es, &user->regs.es); in save_v86_state() 292 get_user_ex(vm86regs.es, &user_vm86->regs.es); in do_sys_vm86()
|
D | asm-offsets_32.c | 37 OFFSET(PT_ES, pt_regs, es); in foo()
|
D | perf_regs.c | 33 PT_REGS_OFFSET(PERF_REG_X86_ES, es),
|
D | head_64.S | 241 movl %eax,%es
|
D | kgdb.c | 69 { "es", 4, offsetof(struct pt_regs, es) },
|
/linux-4.4.14/drivers/dma/ |
D | mpc512x_dma.c | 325 static void mpc_dma_irq_process(struct mpc_dma *mdma, u32 is, u32 es, int off) in mpc_dma_irq_process() argument 329 u32 status = is | es; in mpc_dma_irq_process() 342 if (es & (1 << ch)) in mpc_dma_irq_process() 359 uint es; in mpc_dma_irq() local 362 es = in_be32(&mdma->regs->dmaes); in mpc_dma_irq() 364 if ((es & MPC_DMA_DMAES_VLD) && mdma->error_status == 0) in mpc_dma_irq() 365 mdma->error_status = es; in mpc_dma_irq() 429 uint es; in mpc_dma_tasklet() local 432 es = mdma->error_status; in mpc_dma_tasklet() 437 if (es) { in mpc_dma_tasklet() [all …]
|
D | omap-dma.c | 72 uint8_t es; /* CSDP_DATA_TYPE_xxx */ member 612 return size * es_bytes[d->es]; in omap_dma_desc_size() 618 size_t size, es_size = es_bytes[d->es]; in omap_dma_desc_size_pos() 771 unsigned i, j = 0, es, en, frame_bytes; in omap_dma_prep_slave_sg() local 790 es = CSDP_DATA_TYPE_8; in omap_dma_prep_slave_sg() 793 es = CSDP_DATA_TYPE_16; in omap_dma_prep_slave_sg() 796 es = CSDP_DATA_TYPE_32; in omap_dma_prep_slave_sg() 809 d->es = es; in omap_dma_prep_slave_sg() 818 d->csdp = es; in omap_dma_prep_slave_sg() 846 frame_bytes = es_bytes[es] * en; in omap_dma_prep_slave_sg() [all …]
|
D | moxart-dma.c | 129 uint8_t es; member 278 unsigned int es; in moxart_prep_slave_sg() local 297 es = MOXART_DMA_DATA_TYPE_S8; in moxart_prep_slave_sg() 300 es = MOXART_DMA_DATA_TYPE_S16; in moxart_prep_slave_sg() 303 es = MOXART_DMA_DATA_TYPE_S32; in moxart_prep_slave_sg() 317 d->es = es; in moxart_prep_slave_sg() 380 unsigned int sglen_div = es_bytes[d->es]; in moxart_set_transfer_params() 469 size -= completed_cycles << es_bytes[ch->desc->es]; in moxart_dma_desc_size_in_flight()
|
D | bcm2835-dma.c | 360 unsigned int es, sync_type; in bcm2835_dma_prep_dma_cyclic() local 383 es = BCM2835_DMA_DATA_TYPE_S32; in bcm2835_dma_prep_dma_cyclic()
|
/linux-4.4.14/fs/gfs2/ |
D | xattr.c | 869 struct gfs2_ea_header *ea, struct ea_set *es) in ea_set_simple_noalloc() argument 871 struct gfs2_ea_request *er = es->es_er; in ea_set_simple_noalloc() 881 if (es->ea_split) in ea_set_simple_noalloc() 886 if (es->es_el) in ea_set_simple_noalloc() 887 ea_set_remove_stuffed(ip, es->es_el); in ea_set_simple_noalloc() 904 struct ea_set *es = private; in ea_set_simple_alloc() local 905 struct gfs2_ea_header *ea = es->es_ea; in ea_set_simple_alloc() 908 gfs2_trans_add_meta(ip->i_gl, es->es_bh); in ea_set_simple_alloc() 910 if (es->ea_split) in ea_set_simple_alloc() 917 if (es->es_el) in ea_set_simple_alloc() [all …]
|
/linux-4.4.14/fs/nfsd/ |
D | blocklayout.c | 91 bex->es = PNFS_BLOCK_READ_DATA; in nfsd4_block_proc_layoutget() 93 bex->es = PNFS_BLOCK_READWRITE_DATA; in nfsd4_block_proc_layoutget() 106 bex->es = PNFS_BLOCK_INVALID_DATA; in nfsd4_block_proc_layoutget() 113 bex->es = PNFS_BLOCK_NONE_DATA; in nfsd4_block_proc_layoutget() 132 dprintk("GET: 0x%llx:0x%llx %d\n", bex->foff, bex->len, bex->es); in nfsd4_block_proc_layoutget()
|
D | blocklayoutxdr.c | 34 *p++ = cpu_to_be32(b->es); in nfsd4_block_encode_layoutget() 141 bex.es = be32_to_cpup(p++); in nfsd4_block_decode_layoutupdate() 142 if (bex.es != PNFS_BLOCK_READWRITE_DATA) { in nfsd4_block_decode_layoutupdate() 144 __func__, bex.es); in nfsd4_block_decode_layoutupdate()
|
D | blocklayoutxdr.h | 15 enum pnfs_block_extent_state es; member
|
/linux-4.4.14/tools/perf/util/scripting-engines/ |
D | trace-event-python.c | 673 struct export_sample *es) in python_export_sample() argument 680 tuple_set_u64(t, 0, es->db_id); in python_export_sample() 681 tuple_set_u64(t, 1, es->evsel->db_id); in python_export_sample() 682 tuple_set_u64(t, 2, es->al->machine->db_id); in python_export_sample() 683 tuple_set_u64(t, 3, es->al->thread->db_id); in python_export_sample() 684 tuple_set_u64(t, 4, es->comm_db_id); in python_export_sample() 685 tuple_set_u64(t, 5, es->dso_db_id); in python_export_sample() 686 tuple_set_u64(t, 6, es->sym_db_id); in python_export_sample() 687 tuple_set_u64(t, 7, es->offset); in python_export_sample() 688 tuple_set_u64(t, 8, es->sample->ip); in python_export_sample() [all …]
|
/linux-4.4.14/drivers/clk/bcm/ |
D | clk-cygnus.c | 33 #define ASIU_DIV_VAL(o, es, hs, hw, ls, lw) \ argument 34 { .offset = o, .en_shift = es, .high_shift = hs, \ 46 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument 49 #define ASIU_GATE_VAL(o, es) { .offset = o, .en_shift = es } argument
|
D | clk-nsp.c | 36 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
|
D | clk-ns2.c | 38 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
|
/linux-4.4.14/drivers/pci/hotplug/ |
D | ibmphp.h | 606 #define SLOT_ATTN(s,es) ((u8) ((es & HPC_SLOT_BLINK_ATTN) \ argument 623 #define SLOT_PCIX(es) ((u8) ((es & HPC_SLOT_PCIX) \ argument 626 #define SLOT_SPEED(es) ((u8) ((es & HPC_SLOT_SPEED2) \ argument 627 ? ((es & HPC_SLOT_SPEED1) ? HPC_SLOT_SPEED_133 \ 631 #define SLOT_BUS_MODE(es) ((u8) ((es & HPC_SLOT_BUS_MODE) \ argument
|
/linux-4.4.14/drivers/lguest/x86/ |
D | switcher_32.S | 112 pushl %es 183 popl %es 204 pushl %es; \ 259 popl %es
|
D | core.c | 213 case offsetof(struct pt_regs, es): in lguest_arch_regptr() 214 return &cpu->regs->es; in lguest_arch_regptr() 713 regs->ds = regs->es = regs->ss = __KERNEL_DS|GUEST_PL; in lguest_arch_setup_regs()
|
/linux-4.4.14/arch/s390/kernel/ |
D | time.c | 495 .es = 0, .sl = 0 }; in etr_reset() 551 etr_eacr.es = etr_eacr.sl = 0; in etr_switch_to_local() 566 if (!etr_eacr.es) in etr_sync_check() 570 etr_eacr.es = 0; in etr_sync_check() 617 return eacr.es && !eacr.sl; in etr_mode_is_pps() 625 return eacr.es && eacr.sl; in etr_mode_is_etr() 853 eacr.es = 0; in etr_handle_events() 855 eacr.es = eacr.sl = 0; in etr_handle_events() 944 if (!eacr.es || !check_sync_clock()) in etr_handle_update() 1023 eacr.dp = eacr.es = eacr.sl = 0; in etr_work_fn() [all …]
|
D | perf_cpum_sf.c | 894 "tear=%p dear=%p\n", cpuhw->lsctl.es, cpuhw->lsctl.cs, in cpumsf_pmu_enable() 931 if (si.es) { in cpumsf_pmu_disable() 1376 if (WARN_ON_ONCE(cpuhw->lsctl.es == 1 || cpuhw->lsctl.ed == 1)) { in cpumsf_pmu_add() 1380 cpuhw->lsctl.es = 1; in cpumsf_pmu_add() 1403 cpuhw->lsctl.es = 0; in cpumsf_pmu_del()
|
D | perf_event.c | 152 si.as, si.es, si.cs, si.bsdes, si.tear, si.dear); in print_debug_sf()
|
/linux-4.4.14/arch/mips/math-emu/ |
D | ieee754dp.c | 97 int es = DP_EMIN - xe; in ieee754dp_format() local 134 xm = XDPSRS(xm, es); in ieee754dp_format() 135 xe += es; in ieee754dp_format()
|
D | ieee754sp.c | 97 int es = SP_EMIN - xe; in ieee754sp_format() local 133 SPXSRSXn(es); in ieee754sp_format()
|
/linux-4.4.14/arch/x86/platform/efi/ |
D | efi_thunk_64.S | 72 movl %es, %eax 100 movl %ebx, %es 134 movl %eax, %es
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | lcd_dma.c | 137 int es; in set_b1_regs() local 146 es = 1; in set_b1_regs() 149 es = 2; in set_b1_regs() 152 es = 4; in set_b1_regs() 165 ((y) * vxres * yscale + (x) * xscale) * es) in set_b1_regs() 166 #define PIXSTEP(sx, sy, dx, dy) (PIXADDR(dx, dy) - PIXADDR(sx, sy) - es + 1) in set_b1_regs()
|
/linux-4.4.14/arch/x86/kvm/ |
D | tss.h | 23 u32 es; member 52 u16 es; member
|
D | svm.c | 1055 init_seg(&save->es); in init_vmcb() 1307 case VCPU_SREG_ES: return &save->es; in svm_seg() 2251 nested_vmcb->save.es = vmcb->save.es; in nested_svm_vmexit() 2315 svm->vmcb->save.es = hsave->save.es; in nested_svm_vmexit() 2440 hsave->save.es = vmcb->save.es; in nested_svm_vmrun() 2472 svm->vmcb->save.es = nested_vmcb->save.es; in nested_svm_vmrun() 3342 save->es.selector, save->es.attrib, in dump_vmcb() 3343 save->es.limit, save->es.base); in dump_vmcb()
|
D | emulate.c | 2888 tss->es = get_segment_selector(ctxt, VCPU_SREG_ES); in save_state_to_tss16() 2917 set_segment_selector(ctxt, tss->es, VCPU_SREG_ES); in load_state_from_tss16() 2932 ret = __load_segment_descriptor(ctxt, tss->es, VCPU_SREG_ES, cpl, in load_state_from_tss16() 3007 tss->es = get_segment_selector(ctxt, VCPU_SREG_ES); in save_state_to_tss32() 3042 set_segment_selector(ctxt, tss->es, VCPU_SREG_ES); in load_state_from_tss32() 3070 ret = __load_segment_descriptor(ctxt, tss->es, VCPU_SREG_ES, cpl, in load_state_from_tss32()
|
D | vmx.c | 1916 savesegment(es, vmx->host_state.es_sel); in vmx_save_host_state() 1964 loadsegment(es, vmx->host_state.es_sel); in __vmx_load_host_state() 8693 loadsegment(es, __USER_DS); in vmx_vcpu_run()
|
D | x86.c | 6926 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES); in kvm_arch_vcpu_ioctl_get_sregs() 7068 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES); in kvm_arch_vcpu_ioctl_set_sregs()
|
/linux-4.4.14/arch/x86/boot/compressed/ |
D | efi_thunk_64.S | 38 movl %es, %eax 80 movl %ebx, %es 117 movl %eax, %es
|
D | head_64.S | 56 movl %eax, %es 300 movl %eax, %es
|
D | head_32.S | 112 movl %eax, %es
|
/linux-4.4.14/arch/x86/ia32/ |
D | ia32_signal.c | 43 #define loadsegment_es(v) loadsegment(es, v) 90 RELOAD_SEG(es); in ia32_restore_sigcontext() 183 put_user_ex(get_user_seg(es), (unsigned int __user *)&sc->es); in ia32_setup_sigcontext() 320 loadsegment(es, __USER32_DS); in ia32_setup_frame() 399 loadsegment(es, __USER32_DS); in ia32_setup_rt_frame()
|
D | ia32_aout.c | 88 dump->regs.es = current->thread.es; in dump_thread32() 385 loadsegment(es, __USER32_DS); in load_aout_binary()
|
/linux-4.4.14/arch/s390/oprofile/ |
D | hwsampler.c | 88 cb->ssctl.es = 0; in smp_ctl_ssctl_stop() 102 if (cb->qsi.es || cb->qsi.cs) { in smp_ctl_ssctl_stop() 118 cb->ssctl.es = 1; in smp_ctl_ssctl_deactivate() 148 cb->ssctl.es = 1; in smp_ctl_ssctl_enable_activate() 390 if (!cb->qsi.es) { in start_sampling() 420 if (!rc && !cb->qsi.es) in stop_sampling() 637 if (cb->qsi.es) { in check_qsi_on_setup() 664 if (cb->qsi.es) in check_qsi_on_start() 728 if (cb->qsi.es) { in worker_on_finish()
|
D | hwsampler.h | 19 unsigned int es:1; /* 54: sampling enable control */ member
|
/linux-4.4.14/arch/x86/include/asm/ |
D | a.out-core.h | 50 dump->regs.es = (u16)regs->es; in aout_dump_thread()
|
D | suspend_32.h | 14 u16 es, fs, gs, ss; member
|
D | suspend_64.h | 22 u16 ds, es, fs, gs, ss; member
|
D | user_32.h | 86 unsigned long es; member
|
D | vm86.h | 24 unsigned short es, __esh; member
|
D | lguest.h | 36 unsigned long fs, ds, es; member
|
D | user_64.h | 93 unsigned long es; member
|
D | user32.h | 37 unsigned short ds, __ds, es, __es; member
|
D | elf.h | 130 pr_reg[8] = regs->es & 0xffff; \ 181 t->ds = t->es = ds; in elf_common_init()
|
D | kexec.h | 111 asm volatile("movl %%es, %%eax;" :"=a"(newregs->es)); in crash_setup_regs()
|
D | ptrace.h | 20 unsigned long es; member
|
D | processor.h | 251 unsigned short es, __esh; member 380 unsigned short es; member
|
D | svm.h | 139 struct vmcb_seg es; member
|
/linux-4.4.14/drivers/w1/slaves/ |
D | w1_ds2431.c | 152 u8 es = (addr + len - 1) % W1_F2D_SCRATCH_SIZE; in w1_f2d_write() local 176 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) { in w1_f2d_write() 193 wrbuf[3] = es; in w1_f2d_write()
|
D | w1_ds2433.c | 166 u8 es = (addr + len - 1) & 0x1f; in w1_f23_write() local 188 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) in w1_f23_write() 196 wrbuf[3] = es; in w1_f23_write()
|
D | w1_ds28e04.c | 171 u8 es = (addr + len - 1) & 0x1f; in w1_f1C_write() local 196 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) in w1_f1C_write() 204 wrbuf[3] = es; in w1_f1C_write()
|
/linux-4.4.14/arch/x86/entry/ |
D | entry_32.S | 160 pushl %es 171 movl %edx, %es 190 2: popl %es 460 movl %eax, %es 691 2: mov 8(%esp), %es 789 pushl %es 827 popl %es 917 pushl %es 938 movl %ecx, %es
|
D | entry_64.S | 936 movl %es, %ecx
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | wakeup_asm.S | 57 movw %cx, %es 71 movw %ax, %es
|
D | reboot.S | 60 movl %ecx, %es
|
D | trampoline_64.S | 47 mov %ax, %es
|
/linux-4.4.14/Documentation/filesystems/ |
D | coda.txt | 194 22.. SSeerrvviicciinngg CCooddaa ffiilleessyysstteemm ccaallllss 264 33.. TThhee mmeessssaaggee llaayyeerr 420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke… 569 DDeessccrriippttiioonn This call is made to Venus during the initialization of 604 DDeessccrriippttiioonn This call is made to determine the ViceFid and filetype of 649 DDeessccrriippttiioonn This call returns the attributes of the file identified by 687 DDeessccrriippttiioonn The structure attr is filled with attributes to be changed 699 44..77.. aacccceessss 718 DDeessccrriippttiioonn Verify if access to the object identified by VFid for 759 DDeessccrriippttiioonn This upcall is invoked to request creation of a file. [all …]
|
D | 9p.txt | 27 http://plan9.escet.urjc.es/iwp9/cready/PROSE_iwp9_2006.pdf
|
D | spufs.txt | 378 See http://www.bsc.es/projects/deepcomputing/linuxoncell/ for the rec- 495 See http://www.bsc.es/projects/deepcomputing/linuxoncell/ for the rec-
|
D | fuse.txt | 12 The process(es) providing the data and metadata of the filesystem.
|
/linux-4.4.14/drivers/rtc/ |
D | rtc-ds2404.c | 161 u8 ta01, ta02, es; in ds2404_write_memory() local 176 es = ds2404_read_byte(dev); in ds2404_write_memory() 189 ds2404_write_byte(dev, es); in ds2404_write_memory()
|
/linux-4.4.14/arch/s390/include/asm/ |
D | cpu_mf.h | 60 unsigned int es:1; /* 22: basic-sampling enable control */ member 82 unsigned int es:1; /* 54: basic-sampling enable control */ member
|
D | etr.h | 18 unsigned int es : 1; /* ETR sync check control */ member
|
/linux-4.4.14/fs/ntfs/ |
D | mft.c | 1109 static const char *es = " Leaving inconsistent metadata. Unmount and run " variable 1371 "allocated cluster.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock() 1503 "mft bitmap attribute.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock() 1533 ntfs_error(vol->sb, "Failed to free allocated cluster.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock() 1544 "array.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock() 1549 "record.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock() 1647 ntfs_error(vol->sb, "Failed to map mft record.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock() 1653 ntfs_error(vol->sb, "Failed to get search context.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock() 1660 "mft bitmap attribute.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock() 1809 "from the mft data attribute.%s", es); in ntfs_mft_data_extend_allocation_nolock() [all …]
|
D | super.c | 491 static const char *es = ". Cannot remount read-write."; in ntfs_remount() local 496 es); in ntfs_remount() 500 ntfs_error(sb, "Volume is dirty and read-only%s", es); in ntfs_remount() 505 "and is read-only%s", es); in ntfs_remount() 512 es); in ntfs_remount() 517 "information flags%s", es); in ntfs_remount() 527 "compatibility flag%s", es); in ntfs_remount() 535 es); in ntfs_remount() 541 es); in ntfs_remount() 547 "($UsnJrnl)%s", es); in ntfs_remount()
|
D | inode.c | 1877 static const char *es = " Not allowed. $MFT is corrupt. " in ntfs_read_inode_mount() local 1885 "compressed.%s", es); in ntfs_read_inode_mount() 1893 "sparse.%s", es); in ntfs_read_inode_mount() 2342 static const char *es = " Leaving inconsistent metadata. Unmount and run " variable 2729 IS_ERR(m) ? PTR_ERR(m) : err, es); in ntfs_truncate() 2740 (unsigned)le32_to_cpu(ni->type), mp_size, es); in ntfs_truncate() 2764 err, es); in ntfs_truncate()
|
D | attrib.c | 870 static const char *es = " Unmount and run chkdsk."; in ntfs_external_attr_find() local 986 base_ni->mft_no, es); in ntfs_external_attr_find() 1011 base_ni->mft_no, es); in ntfs_external_attr_find() 1087 es); in ntfs_external_attr_find()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | dove-cubox-es.dts | 5 compatible = "solidrun,cubox-es", "solidrun,cubox", "marvell,dove";
|
D | omap4-panda-es.dts | 15 compatible = "ti,omap4-panda-es", "ti,omap4-panda", "ti,omap4460", "ti,omap4430", "ti,omap4";
|
D | Makefile | 474 omap4-panda-es.dtb \ 768 dove-cubox-es.dtb \
|
/linux-4.4.14/sound/pci/ac97/ |
D | ac97_pcm.c | 330 u16 es; in get_pslots() local 331 es = ac97->regs[AC97_EXTENDED_ID] &= ~AC97_EI_DACS_SLOT_MASK; in get_pslots() 334 case 2: es |= (1<<AC97_EI_DACS_SLOT_SHIFT); break; in get_pslots() 335 case 3: es |= (2<<AC97_EI_DACS_SLOT_SHIFT); break; in get_pslots() 337 snd_ac97_write_cache(ac97, AC97_EXTENDED_ID, es); in get_pslots()
|
/linux-4.4.14/include/trace/events/ |
D | ext4.h | 2224 TP_PROTO(struct inode *inode, struct extent_status *es), 2226 TP_ARGS(inode, es), 2240 __entry->lblk = es->es_lblk; 2241 __entry->len = es->es_len; 2242 __entry->pblk = ext4_es_pblock(es); 2243 __entry->status = ext4_es_status(es); 2254 TP_PROTO(struct inode *inode, struct extent_status *es), 2256 TP_ARGS(inode, es) 2260 TP_PROTO(struct inode *inode, struct extent_status *es), 2262 TP_ARGS(inode, es) [all …]
|
/linux-4.4.14/arch/x86/purgatory/ |
D | setup-x86_64.S | 25 movl %eax, %es
|
D | entry64.S | 26 movl %eax, %es
|
/linux-4.4.14/drivers/spi/ |
D | spi-omap2-mcspi.c | 451 unsigned es) in omap2_mcspi_rx_dma() argument 466 dma_count -= es; in omap2_mcspi_rx_dma() 485 dma_count -= es; in omap2_mcspi_rx_dma() 570 unsigned es; in omap2_mcspi_txrx_dma() local 583 es = 1; in omap2_mcspi_txrx_dma() 586 es = 2; in omap2_mcspi_txrx_dma() 589 es = 4; in omap2_mcspi_txrx_dma() 597 burst = mcspi->fifo_depth / es; in omap2_mcspi_txrx_dma() 599 burst = count / es; in omap2_mcspi_txrx_dma() 617 count = omap2_mcspi_rx_dma(spi, xfer, cfg, es); in omap2_mcspi_txrx_dma()
|
/linux-4.4.14/include/uapi/video/ |
D | uvesafb.h | 19 __u16 es; member
|
/linux-4.4.14/arch/x86/include/uapi/asm/ |
D | sigcontext.h | 204 __u16 es, __esh; member 302 __u16 es, __esh; member
|
D | vm86.h | 86 unsigned short es, __esh; member
|
D | kvm.h | 147 struct kvm_segment cs, ds, es, fs, gs, ss; member
|
/linux-4.4.14/arch/x86/include/asm/xen/ |
D | interface_32.h | 65 uint16_t es, _pad2; member
|
D | interface_64.h | 123 uint16_t es, _pad3[3]; member
|
/linux-4.4.14/include/linux/ |
D | fsl_devices.h | 93 unsigned es:1; /* need USBMODE:ES */ member
|
/linux-4.4.14/arch/x86/kernel/acpi/ |
D | wakeup_32.S | 20 movw %ax, %es
|
D | wakeup_64.S | 24 movw %ax, %es
|
/linux-4.4.14/arch/x86/math-emu/ |
D | get_address.c | 47 offsetof(struct kernel_vm86_regs, es), 60 offsetof(struct pt_regs, es),
|
/linux-4.4.14/drivers/net/cris/ |
D | eth_v10.c | 1509 update_rx_stats(struct net_device_stats *es) in update_rx_stats() argument 1513 es->rx_fifo_errors += IO_EXTRACT(R_REC_COUNTERS, congestion, r); in update_rx_stats() 1514 es->rx_crc_errors += IO_EXTRACT(R_REC_COUNTERS, crc_error, r); in update_rx_stats() 1515 es->rx_frame_errors += IO_EXTRACT(R_REC_COUNTERS, alignment_error, r); in update_rx_stats() 1516 es->rx_length_errors += IO_EXTRACT(R_REC_COUNTERS, oversize, r); in update_rx_stats() 1520 update_tx_stats(struct net_device_stats *es) in update_tx_stats() argument 1524 es->collisions += in update_tx_stats()
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | marvell,orion-intc.txt | 7 - reg: base address(es) of interrupt registers starting with CAUSE register
|
/linux-4.4.14/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 41 movw %ax, %es
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | hisilicon-hns-dsaf.txt | 15 - reg: specifies base physical address(es) and size of the device registers.
|
/linux-4.4.14/drivers/mmc/core/ |
D | sd.c | 227 unsigned int au, es, et, eo; in mmc_read_ssr() local 260 es = UNSTUFF_BITS(ssr, 408 - 384, 16); in mmc_read_ssr() 262 if (es && et) { in mmc_read_ssr() 264 card->ssr.erase_timeout = (et * 1000) / es; in mmc_read_ssr()
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | rockchip.txt | 20 - reg : shall be the control register address(es) for the clock.
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | README.WINVIEW | 2 Support for the Leadtek WinView 601 TV/FM by Jon Tombs <jon@gte.esi.us.es>
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | entry_from_vm86.c | 181 v86.regs.es = load_addr / 16; in main()
|
/linux-4.4.14/scripts/kconfig/ |
D | menu.c | 333 struct symbol *es = prop_get_symbol(prop); in menu_finalize() local 334 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in menu_finalize()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_main.c | 609 struct i40e_eth_stats *es; /* device's eth stats */ in i40e_update_eth_stats() local 611 es = &vsi->eth_stats; in i40e_update_eth_stats() 617 &oes->tx_errors, &es->tx_errors); in i40e_update_eth_stats() 620 &oes->rx_discards, &es->rx_discards); in i40e_update_eth_stats() 623 &oes->rx_unknown_protocol, &es->rx_unknown_protocol); in i40e_update_eth_stats() 626 &oes->tx_errors, &es->tx_errors); in i40e_update_eth_stats() 631 &oes->rx_bytes, &es->rx_bytes); in i40e_update_eth_stats() 635 &oes->rx_unicast, &es->rx_unicast); in i40e_update_eth_stats() 639 &oes->rx_multicast, &es->rx_multicast); in i40e_update_eth_stats() 643 &oes->rx_broadcast, &es->rx_broadcast); in i40e_update_eth_stats() [all …]
|
/linux-4.4.14/arch/x86/xen/ |
D | smp.c | 319 loadsegment(es, __USER_DS); in xen_smp_prepare_boot_cpu() 411 ctxt->user_regs.es = __USER_DS; in cpu_initialize_context()
|
D | enlighten.c | 1442 loadsegment(es, 0); in xen_setup_gdt()
|
/linux-4.4.14/Documentation/usb/ |
D | CREDITS | 30 Inaky Perez Gonzalez <inaky@peloncho.fis.ucm.es> for starting the 145 - Fernando Herrera <fherrera@eurielec.etsit.upm.es> has taken
|
/linux-4.4.14/arch/x86/um/ |
D | signal.c | 171 GETREG(ES, es); in copy_sc_from_user() 260 PUTREG(ES, es); in copy_sc_to_user()
|
/linux-4.4.14/Documentation/fb/ |
D | uvesafb.txt | 41 ratio, which is what most BIOS-es are limited to. 43 Video BIOS. Note that many nVidia Video BIOS-es claim to be VBE 3.0
|
/linux-4.4.14/tools/power/cpupower/po/ |
D | pt.po | 368 msgstr "Uso: cpufreq-info [opções]\n" 374 msgstr "Opções:\n" 548 msgstr "Uso: cpufreq-set [opções]\n" 920 msgstr "Uso: cpufreq-info [opções]\n" 949 #~ " -c CPU, --cpu CPU número do CPU sobre o qual as inforções devem ser " 956 #~ " -c CPU, --cpu CPU número do CPU onde as configurações do cpufreq "
|
D | fr.po | 496 "Par d�faut, les informations de d�boguage seront affich�es si aucun\n"
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-floppy.1996-2002 | 20 * Thanks to <shanos@es.co.nz> for pointing this out.
|
/linux-4.4.14/Documentation/zh_CN/ |
D | oops-tracing.txt | 169 Aug 29 09:51:01 blizard kernel: ds: 0018 es: 0018 fs: 002b gs: 002b ss: 0018
|
/linux-4.4.14/drivers/usb/host/ |
D | fsl-mph-dr-of.c | 334 .es = 1,
|
D | ehci-fsl.c | 489 tmp = USBMODE_CM_HOST | (pdata->es ? USBMODE_ES : 0); in ehci_fsl_mpc512x_drv_resume()
|
/linux-4.4.14/arch/mips/pci/ |
D | pcie-octeon.c | 49 uint64_t es:2; /* Endian swap = 1 */ member 80 uint64_t es:2; /* Endian swap = 1 */ member 115 pcie_addr.io.es = 1; in cvmx_pcie_get_io_base_address() 246 pcie_addr.config.es = 1; in __cvmx_pcie_build_config_addr()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | host.fuc | 62 // HOST->PWR comms - dequeue message(s) for process(es) from FIFO
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfs-rdma.txt | 220 The IP address(es) is(are) the client's IPoIB address for an InfiniBand 221 HCA or the cleint's iWARP address(es) for an RNIC.
|
/linux-4.4.14/Documentation/ |
D | static-keys.txt | 121 Branch(es) can be set true via: 129 The branch(es) can then be switched via reference counts:
|
D | kmemcheck.txt | 506 ffffffff8104ede8: rep movsl %ds:(%rsi),%es:(%rdi) 509 ffffffff8104edee: movsw %ds:(%rsi),%es:(%rdi) 512 ffffffff8104edf4: movsb %ds:(%rsi),%es:(%rdi)
|
D | oops-tracing.txt | 205 Aug 29 09:51:01 blizard kernel: ds: 0018 es: 0018 fs: 002b gs: 002b ss: 0018
|
D | kernel-docs.txt | 6 Juan-Mariano de Goyeneche <jmseyas@dit.upm.es> 10 * http://www.dit.upm.es/~jmseyas/linux/kernel/hackers-docs.html
|
D | applying-patches.txt | 163 then you can say [y]es here to make patch revert it for you.
|
/linux-4.4.14/drivers/mtd/devices/ |
D | spear_smi.c | 105 #define FLASH_ID(n, es, id, psize, ssize, size) \ argument 108 .erase_cmd = es, \
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | mpc5125twr.dts | 6 * Reworked by Matteo Facchinetti (engineering@sirius-es.it)
|
/linux-4.4.14/drivers/video/fbdev/ |
D | uvesafb.c | 565 if ((task->t.regs.eax & 0xffff) != 0x4f || task->t.regs.es < 0xc000) { in uvesafb_vbe_getpmi() 568 par->pmi_base = (u16 *)phys_to_virt(((u32)task->t.regs.es << 4) in uvesafb_vbe_getpmi() 574 (u16)task->t.regs.es, (u16)task->t.regs.edi); in uvesafb_vbe_getpmi()
|
/linux-4.4.14/Documentation/driver-model/ |
D | devres.txt | 11 3. Devres Group : Group devres'es and release them together
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-sli-defs.h | 2662 uint64_t es:64; member 2664 uint64_t es:64; 3103 uint64_t es:64; member 3105 uint64_t es:64;
|
D | cvmx-npei-defs.h | 3576 uint64_t es:64; member 3578 uint64_t es:64; 3871 uint64_t es:64; member 3873 uint64_t es:64;
|
D | cvmx-pciercx-defs.h | 1038 uint32_t es:1; member 1052 uint32_t es:1;
|
/linux-4.4.14/drivers/usb/phy/ |
D | phy-fsl-usb.c | 918 temp = USB_MODE_STREAM_DISABLE | (pdata->es ? USB_MODE_ES : 0); in usb_otg_start()
|
/linux-4.4.14/Documentation/x86/ |
D | boot.txt | 426 Assume that %cs %ds %ss %es are all set to flat segments with 972 At entry, ds = es = ss should point to the start of the real-mode 977 es = ss.
|
/linux-4.4.14/Documentation/networking/ |
D | packet_mmap.txt | 17 Ulisses Alonso Camaró <uaca@i.hate.spam.alumni.uv.es> 261 see http://pusa.uv.es/~ulisses/packet_mmap/packet_mmap.pre-2.4.26_2.6.5.txt
|
/linux-4.4.14/ |
D | README | 342 ds: xxxx es: xxxx fs: xxxx gs: xxxx
|
D | CREDITS | 2739 W: http://miguelojeda.es 2740 W: http://jair.lab.fi.uva.es/~migojed/ 2970 E: quintela@fi.udc.es 3518 E: jon@gte.esi.us.es 3519 W: http://www.esi.us.es/~jon
|
D | MAINTAINERS | 2034 W: http://miguelojeda.es/auxdisplay.htm 2035 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 2713 W: http://miguelojeda.es/auxdisplay.htm 2714 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 2721 W: http://miguelojeda.es/auxdisplay.htm 2722 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 6204 W: http://miguelojeda.es/auxdisplay.htm 6205 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 457 ( Executable Linkable Format, Linux'es most common executable format ), 838 will trace for BAS'es ( opcode 4D ) in the range 0197BC.4000 1100 On the very latest VM Nucleus'es VM can now display ascii 2029 the processes'es registers from the kernel task_structure
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | fsl_udc_core.c | 306 if (udc->pdata->es) in dr_controller_setup()
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 3218 $19 = {gs = 0, __gsh = 0, fs = 0, __fsh = 0, es = 43, __esh = 0, ds = 43, 3571 $1 = {gs = 0, __gsh = 0, fs = 0, __fsh = 0, es = 43, __esh = 0, ds = 43,
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | api.txt | 346 struct kvm_segment cs, ds, es, fs, gs, ss;
|