Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 73 of 73) sorted by relevance

/linux-4.1.27/fs/
Dmbcache.c98 #define MB_CACHE_ENTRY_LOCK_INDEX(ce) \ argument
99 (hash_long((unsigned long)ce, MB_CACHE_ENTRY_LOCK_BITS))
133 __spin_lock_mb_cache_entry(struct mb_cache_entry *ce) in __spin_lock_mb_cache_entry() argument
136 MB_CACHE_ENTRY_LOCK_INDEX(ce))); in __spin_lock_mb_cache_entry()
140 __spin_unlock_mb_cache_entry(struct mb_cache_entry *ce) in __spin_unlock_mb_cache_entry() argument
143 MB_CACHE_ENTRY_LOCK_INDEX(ce))); in __spin_unlock_mb_cache_entry()
147 __mb_cache_entry_is_block_hashed(struct mb_cache_entry *ce) in __mb_cache_entry_is_block_hashed() argument
149 return !hlist_bl_unhashed(&ce->e_block_list); in __mb_cache_entry_is_block_hashed()
154 __mb_cache_entry_unhash_block(struct mb_cache_entry *ce) in __mb_cache_entry_unhash_block() argument
156 if (__mb_cache_entry_is_block_hashed(ce)) in __mb_cache_entry_unhash_block()
[all …]
/linux-4.1.27/drivers/clocksource/
Drockchip_timer.c32 struct clock_event_device ce; member
39 static inline struct bc_timer *rk_timer(struct clock_event_device *ce) in rk_timer() argument
41 return container_of(ce, struct bc_timer, ce); in rk_timer()
44 static inline void __iomem *rk_base(struct clock_event_device *ce) in rk_base() argument
46 return rk_timer(ce)->base; in rk_base()
49 static inline void rk_timer_disable(struct clock_event_device *ce) in rk_timer_disable() argument
51 writel_relaxed(TIMER_DISABLE, rk_base(ce) + TIMER_CONTROL_REG); in rk_timer_disable()
55 static inline void rk_timer_enable(struct clock_event_device *ce, u32 flags) in rk_timer_enable() argument
58 rk_base(ce) + TIMER_CONTROL_REG); in rk_timer_enable()
63 struct clock_event_device *ce) in rk_timer_update_counter() argument
[all …]
Dtimer-sun5i.c72 static void sun5i_clkevt_sync(struct sun5i_timer_clkevt *ce) in sun5i_clkevt_sync() argument
74 u32 old = readl(ce->timer.base + TIMER_CNTVAL_LO_REG(1)); in sun5i_clkevt_sync()
76 while ((old - readl(ce->timer.base + TIMER_CNTVAL_LO_REG(1))) < TIMER_SYNC_TICKS) in sun5i_clkevt_sync()
80 static void sun5i_clkevt_time_stop(struct sun5i_timer_clkevt *ce, u8 timer) in sun5i_clkevt_time_stop() argument
82 u32 val = readl(ce->timer.base + TIMER_CTL_REG(timer)); in sun5i_clkevt_time_stop()
83 writel(val & ~TIMER_CTL_ENABLE, ce->timer.base + TIMER_CTL_REG(timer)); in sun5i_clkevt_time_stop()
85 sun5i_clkevt_sync(ce); in sun5i_clkevt_time_stop()
88 static void sun5i_clkevt_time_setup(struct sun5i_timer_clkevt *ce, u8 timer, u32 delay) in sun5i_clkevt_time_setup() argument
90 writel(delay, ce->timer.base + TIMER_INTVAL_LO_REG(timer)); in sun5i_clkevt_time_setup()
93 static void sun5i_clkevt_time_start(struct sun5i_timer_clkevt *ce, u8 timer, bool periodic) in sun5i_clkevt_time_start() argument
[all …]
Dtimer-digicolor.c60 struct clock_event_device ce; member
66 struct digicolor_timer *dc_timer(struct clock_event_device *ce) in dc_timer() argument
68 return container_of(ce, struct digicolor_timer, ce); in dc_timer()
71 static inline void dc_timer_disable(struct clock_event_device *ce) in dc_timer_disable() argument
73 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_disable()
77 static inline void dc_timer_enable(struct clock_event_device *ce, u32 mode) in dc_timer_enable() argument
79 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_enable()
83 static inline void dc_timer_set_count(struct clock_event_device *ce, in dc_timer_set_count() argument
86 struct digicolor_timer *dt = dc_timer(ce); in dc_timer_set_count()
91 struct clock_event_device *ce) in digicolor_clkevt_mode() argument
[all …]
Dtimer-atlas7.c73 struct clock_event_device *ce = dev_id; in sirfsoc_timer_interrupt() local
79 if (ce->mode == CLOCK_EVT_MODE_ONESHOT) in sirfsoc_timer_interrupt()
82 ce->event_handler(ce); in sirfsoc_timer_interrupt()
102 struct clock_event_device *ce) in sirfsoc_timer_set_next_event() argument
121 struct clock_event_device *ce) in sirfsoc_timer_set_mode() argument
182 static int sirfsoc_local_timer_setup(struct clock_event_device *ce) in sirfsoc_local_timer_setup() argument
192 ce->irq = action->irq; in sirfsoc_local_timer_setup()
193 ce->name = "local_timer"; in sirfsoc_local_timer_setup()
194 ce->features = CLOCK_EVT_FEAT_ONESHOT; in sirfsoc_local_timer_setup()
195 ce->rating = 200; in sirfsoc_local_timer_setup()
[all …]
Dcadence_ttc_timer.c101 struct clock_event_device ce; member
105 container_of(x, struct ttc_timer_clockevent, ce)
152 ttce->ce.event_handler(&ttce->ce); in ttc_clock_event_interrupt()
393 clockevents_update_freq(&ttcce->ce, ndata->new_rate / PRESCALE); in ttc_rate_change_clockevent_cb()
430 ttcce->ce.name = "ttc_clockevent"; in ttc_setup_clockevent()
431 ttcce->ce.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; in ttc_setup_clockevent()
432 ttcce->ce.set_next_event = ttc_set_next_event; in ttc_setup_clockevent()
433 ttcce->ce.set_mode = ttc_set_mode; in ttc_setup_clockevent()
434 ttcce->ce.rating = 200; in ttc_setup_clockevent()
435 ttcce->ce.irq = irq; in ttc_setup_clockevent()
[all …]
Dtimer-prima2.c62 struct clock_event_device *ce = dev_id; in sirfsoc_timer_interrupt() local
70 ce->event_handler(ce); in sirfsoc_timer_interrupt()
91 struct clock_event_device *ce) in sirfsoc_timer_set_next_event() argument
108 struct clock_event_device *ce) in sirfsoc_timer_set_mode() argument
/linux-4.1.27/drivers/base/power/
Dclock_ops.c40 static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce) in __pm_clk_enable() argument
44 if (ce->status < PCE_STATUS_ERROR) { in __pm_clk_enable()
45 ret = clk_enable(ce->clk); in __pm_clk_enable()
47 ce->status = PCE_STATUS_ENABLED; in __pm_clk_enable()
50 __func__, ce->clk, ret); in __pm_clk_enable()
59 static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce) in pm_clk_acquire() argument
61 if (!ce->clk) in pm_clk_acquire()
62 ce->clk = clk_get(dev, ce->con_id); in pm_clk_acquire()
63 if (IS_ERR(ce->clk)) { in pm_clk_acquire()
64 ce->status = PCE_STATUS_ERROR; in pm_clk_acquire()
[all …]
/linux-4.1.27/drivers/of/
Ddynamic.c448 static void __of_changeset_entry_destroy(struct of_changeset_entry *ce) in __of_changeset_entry_destroy() argument
450 of_node_put(ce->np); in __of_changeset_entry_destroy()
451 list_del(&ce->node); in __of_changeset_entry_destroy()
452 kfree(ce); in __of_changeset_entry_destroy()
456 static void __of_changeset_entry_dump(struct of_changeset_entry *ce) in __of_changeset_entry_dump() argument
458 switch (ce->action) { in __of_changeset_entry_dump()
462 pr_debug("of/cset<%p> %-15s %s/%s\n", ce, action_names[ce->action], in __of_changeset_entry_dump()
463 ce->np->full_name, ce->prop->name); in __of_changeset_entry_dump()
467 pr_debug("of/cset<%p> %-15s %s\n", ce, action_names[ce->action], in __of_changeset_entry_dump()
468 ce->np->full_name); in __of_changeset_entry_dump()
[all …]
Doverlay.c431 struct of_changeset_entry *ce; in overlay_is_topmost() local
439 list_for_each_entry(ce, &ovt->cset.entries, node) { in overlay_is_topmost()
440 if (overlay_subtree_check(ce->np, dn)) { in overlay_is_topmost()
465 struct of_changeset_entry *ce; in overlay_removal_is_ok() local
467 list_for_each_entry(ce, &ov->cset.entries, node) { in overlay_removal_is_ok()
468 if (!overlay_is_topmost(ov, ce->np)) { in overlay_removal_is_ok()
/linux-4.1.27/arch/arm64/crypto/
DMakefile11 obj-$(CONFIG_CRYPTO_SHA1_ARM64_CE) += sha1-ce.o
12 sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
14 obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
15 sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
17 obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
18 ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
20 obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
21 CFLAGS_aes-ce-cipher.o += -march=armv8-a+crypto
23 obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
24 aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
[all …]
/linux-4.1.27/arch/arm/crypto/
DMakefile12 ce-obj-$(CONFIG_CRYPTO_AES_ARM_CE) += aes-arm-ce.o
13 ce-obj-$(CONFIG_CRYPTO_SHA1_ARM_CE) += sha1-arm-ce.o
14 ce-obj-$(CONFIG_CRYPTO_SHA2_ARM_CE) += sha2-arm-ce.o
15 ce-obj-$(CONFIG_CRYPTO_GHASH_ARM_CE) += ghash-arm-ce.o
17 ifneq ($(ce-obj-y)$(ce-obj-m),)
19 obj-y += $(ce-obj-y)
20 obj-m += $(ce-obj-m)
23 $(warning $(ce-obj-y) $(ce-obj-m))
34 sha1-arm-ce-y := sha1-ce-core.o sha1-ce-glue.o
35 sha2-arm-ce-y := sha2-ce-core.o sha2-ce-glue.o
[all …]
/linux-4.1.27/arch/sparc/kernel/
Dtime_32.c131 struct clock_event_device *ce = &timer_ce; in setup_timer_ce() local
135 ce->name = "timer_ce"; in setup_timer_ce()
136 ce->rating = 100; in setup_timer_ce()
137 ce->features = CLOCK_EVT_FEAT_PERIODIC; in setup_timer_ce()
138 ce->set_mode = timer_ce_set_mode; in setup_timer_ce()
139 ce->cpumask = cpu_possible_mask; in setup_timer_ce()
140 ce->shift = 32; in setup_timer_ce()
141 ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC, in setup_timer_ce()
142 ce->shift); in setup_timer_ce()
143 clockevents_register_device(ce); in setup_timer_ce()
[all …]
Dsun4m_smp.c243 struct clock_event_device *ce; in smp4m_percpu_timer_interrupt() local
248 ce = &per_cpu(sparc32_clockevent, cpu); in smp4m_percpu_timer_interrupt()
250 if (ce->mode & CLOCK_EVT_MODE_PERIODIC) in smp4m_percpu_timer_interrupt()
256 ce->event_handler(ce); in smp4m_percpu_timer_interrupt()
Dsun4d_smp.c367 struct clock_event_device *ce; in smp4d_percpu_timer_interrupt() local
383 ce = &per_cpu(sparc32_clockevent, cpu); in smp4d_percpu_timer_interrupt()
386 ce->event_handler(ce); in smp4d_percpu_timer_interrupt()
Dleon_kernel.c284 struct clock_event_device *ce; in leon_percpu_timer_ce_interrupt() local
292 ce = &per_cpu(sparc32_clockevent, cpu); in leon_percpu_timer_ce_interrupt()
295 if (ce->event_handler) in leon_percpu_timer_ce_interrupt()
296 ce->event_handler(ce); in leon_percpu_timer_ce_interrupt()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dclip_tbl.c78 struct clip_entry *ce, *cte; in cxgb4_clip_get() local
97 ce = cte; in cxgb4_clip_get()
106 ce = list_first_entry(&ctbl->ce_free_head, in cxgb4_clip_get()
108 list_del(&ce->list); in cxgb4_clip_get()
109 INIT_LIST_HEAD(&ce->list); in cxgb4_clip_get()
110 spin_lock_init(&ce->lock); in cxgb4_clip_get()
111 atomic_set(&ce->refcnt, 0); in cxgb4_clip_get()
113 list_add_tail(&ce->list, &ctbl->hash_list[hash]); in cxgb4_clip_get()
115 ce->addr6.sin6_family = AF_INET6; in cxgb4_clip_get()
116 memcpy(ce->addr6.sin6_addr.s6_addr, in cxgb4_clip_get()
[all …]
/linux-4.1.27/arch/alpha/kernel/
Dtime.c93 struct clock_event_device *ce = &per_cpu(cpu_ce, cpu); in rtc_timer_interrupt() local
96 if (likely(ce->mode == CLOCK_EVT_MODE_PERIODIC)) in rtc_timer_interrupt()
97 ce->event_handler(ce); in rtc_timer_interrupt()
108 rtc_ce_set_mode(enum clock_event_mode mode, struct clock_event_device *ce) in rtc_ce_set_mode() argument
115 rtc_ce_set_next_event(unsigned long evt, struct clock_event_device *ce) in rtc_ce_set_next_event() argument
125 struct clock_event_device *ce = &per_cpu(cpu_ce, cpu); in init_rtc_clockevent() local
127 *ce = (struct clock_event_device){ in init_rtc_clockevent()
136 clockevents_config_and_register(ce, CONFIG_HZ, 0, 0); in init_rtc_clockevent()
165 qemu_ce_set_mode(enum clock_event_mode mode, struct clock_event_device *ce) in qemu_ce_set_mode() argument
173 qemu_ce_set_next_event(unsigned long evt, struct clock_event_device *ce) in qemu_ce_set_next_event() argument
[all …]
/linux-4.1.27/arch/arm/mach-footbridge/
Ddc21285-timer.c92 struct clock_event_device *ce = dev_id; in timer1_interrupt() local
97 if (ce->mode == CLOCK_EVT_MODE_ONESHOT) in timer1_interrupt()
100 ce->event_handler(ce); in timer1_interrupt()
117 struct clock_event_device *ce = &ckevt_dc21285; in footbridge_timer_init() local
122 setup_irq(ce->irq, &footbridge_timer_irq); in footbridge_timer_init()
124 ce->cpumask = cpumask_of(smp_processor_id()); in footbridge_timer_init()
125 clockevents_config_and_register(ce, rate, 0x4, 0xffffff); in footbridge_timer_init()
Disa-timer.c22 struct clock_event_device *ce = dev_id; in pit_timer_interrupt() local
23 ce->event_handler(ce); in pit_timer_interrupt()
/linux-4.1.27/fs/ext2/
Dxattr.c484 struct mb_cache_entry *ce; in ext2_xattr_set() local
487 ce = mb_cache_entry_get(ext2_xattr_cache, bh->b_bdev, in ext2_xattr_set()
492 if (ce) in ext2_xattr_set()
493 mb_cache_entry_free(ce); in ext2_xattr_set()
498 if (ce) in ext2_xattr_set()
499 mb_cache_entry_release(ce); in ext2_xattr_set()
708 struct mb_cache_entry *ce; in ext2_xattr_set2() local
714 ce = mb_cache_entry_get(ext2_xattr_cache, old_bh->b_bdev, in ext2_xattr_set2()
719 if (ce) in ext2_xattr_set2()
720 mb_cache_entry_free(ce); in ext2_xattr_set2()
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/ce/
DKbuild1 nvkm-y += nvkm/engine/ce/gt215.o
2 nvkm-y += nvkm/engine/ce/gf100.o
3 nvkm-y += nvkm/engine/ce/gk104.o
4 nvkm-y += nvkm/engine/ce/gm204.o
Dgk104.c69 const int ce = nv_subidx(subdev) - NVDEV_ENGINE_CE0; in gk104_ce_intr() local
71 u32 stat = nv_rd32(priv, 0x104908 + (ce * 0x1000)); in gk104_ce_intr()
75 nv_wr32(priv, 0x104908 + (ce * 0x1000), stat); in gk104_ce_intr()
Dgm204.c69 const int ce = nv_subidx(subdev) - NVDEV_ENGINE_CE0; in gm204_ce_intr() local
71 u32 stat = nv_rd32(priv, 0x104908 + (ce * 0x1000)); in gm204_ce_intr()
75 nv_wr32(priv, 0x104908 + (ce * 0x1000), stat); in gm204_ce_intr()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/
Dsge.c510 struct freelQ_ce *ce = &q->centries[cidx]; in free_freelQ_buffers() local
512 pci_unmap_single(pdev, dma_unmap_addr(ce, dma_addr), in free_freelQ_buffers()
513 dma_unmap_len(ce, dma_len), in free_freelQ_buffers()
515 dev_kfree_skb(ce->skb); in free_freelQ_buffers()
516 ce->skb = NULL; in free_freelQ_buffers()
620 struct cmdQ_ce *ce; in free_cmdQ_buffers() local
625 ce = &q->centries[cidx]; in free_cmdQ_buffers()
627 if (likely(dma_unmap_len(ce, dma_len))) { in free_cmdQ_buffers()
628 pci_unmap_single(pdev, dma_unmap_addr(ce, dma_addr), in free_cmdQ_buffers()
629 dma_unmap_len(ce, dma_len), in free_cmdQ_buffers()
[all …]
/linux-4.1.27/fs/ext3/
Dxattr.c476 struct mb_cache_entry *ce = NULL; in ext3_xattr_release_block() local
479 ce = mb_cache_entry_get(ext3_xattr_cache, bh->b_bdev, bh->b_blocknr); in ext3_xattr_release_block()
488 if (ce) in ext3_xattr_release_block()
489 mb_cache_entry_free(ce); in ext3_xattr_release_block()
501 if (ce) in ext3_xattr_release_block()
502 mb_cache_entry_release(ce); in ext3_xattr_release_block()
681 struct mb_cache_entry *ce = NULL; in ext3_xattr_block_set() local
689 ce = mb_cache_entry_get(ext3_xattr_cache, bs->bh->b_bdev, in ext3_xattr_block_set()
697 if (ce) { in ext3_xattr_block_set()
698 mb_cache_entry_free(ce); in ext3_xattr_block_set()
[all …]
/linux-4.1.27/drivers/infiniband/hw/amso1100/
Dc2_cq.c134 struct c2wr_ce *ce; in c2_poll_one() local
138 ce = c2_mq_consume(&cq->mq); in c2_poll_one()
139 if (!ce) { in c2_poll_one()
149 (struct c2_qp *) (unsigned long) ce->qp_user_context) == NULL) { in c2_poll_one()
151 ce = c2_mq_consume(&cq->mq); in c2_poll_one()
152 if (!ce) in c2_poll_one()
156 entry->status = c2_cqe_status_to_openib(c2_wr_get_result(ce)); in c2_poll_one()
157 entry->wr_id = ce->hdr.context; in c2_poll_one()
166 switch (c2_wr_get_id(ce)) { in c2_poll_one()
180 entry->byte_len = be32_to_cpu(ce->bytes_rcvd); in c2_poll_one()
[all …]
Dc2_wr.h1457 struct c2wr_ce ce; member
/linux-4.1.27/include/linux/
Dclockchips.h178 extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq);
181 clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec) in clockevents_calc_mult_shift() argument
183 return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec); in clockevents_calc_mult_shift()
/linux-4.1.27/fs/ext4/
Dxattr.c546 struct mb_cache_entry *ce = NULL; in ext4_xattr_release_block() local
550 ce = mb_cache_entry_get(ext4_mb_cache, bh->b_bdev, bh->b_blocknr); in ext4_xattr_release_block()
559 if (ce) in ext4_xattr_release_block()
560 mb_cache_entry_free(ce); in ext4_xattr_release_block()
568 if (ce) in ext4_xattr_release_block()
569 mb_cache_entry_release(ce); in ext4_xattr_release_block()
782 struct mb_cache_entry *ce = NULL; in ext4_xattr_block_set() local
791 ce = mb_cache_entry_get(ext4_mb_cache, bs->bh->b_bdev, in ext4_xattr_block_set()
800 if (ce) { in ext4_xattr_block_set()
801 mb_cache_entry_free(ce); in ext4_xattr_block_set()
[all …]
/linux-4.1.27/kernel/time/
Dclockevents.c32 struct clock_event_device *ce; member
408 res = __clockevents_try_unbind(cu->ce, smp_processor_id()); in __clockevents_unbind()
410 res = clockevents_replace(cu->ce); in __clockevents_unbind()
421 struct ce_unbind cu = { .ce = ced, .res = -ENODEV }; in clockevents_unbind()
708 struct clock_event_device *ce; in sysfs_unbind_tick_dev() local
716 list_for_each_entry(ce, &clockevent_devices, list) { in sysfs_unbind_tick_dev()
717 if (!strcmp(ce->name, name)) { in sysfs_unbind_tick_dev()
718 ret = __clockevents_try_unbind(ce, dev->id); in sysfs_unbind_tick_dev()
727 ret = clockevents_unbind(ce, dev->id); in sysfs_unbind_tick_dev()
/linux-4.1.27/drivers/md/
Ddm-snap-persistent.c703 struct core_exception ce; in persistent_commit_exception() local
709 ce.old_chunk = e->old_chunk; in persistent_commit_exception()
710 ce.new_chunk = e->new_chunk; in persistent_commit_exception()
711 write_exception(ps, ps->current_committed++, &ce); in persistent_commit_exception()
766 struct core_exception ce; in persistent_prepare_merge() local
787 read_exception(ps, ps->area, ps->current_committed - 1, &ce); in persistent_prepare_merge()
788 *last_old_chunk = ce.old_chunk; in persistent_prepare_merge()
789 *last_new_chunk = ce.new_chunk; in persistent_prepare_merge()
798 ps->current_committed - 1 - nr_consecutive, &ce); in persistent_prepare_merge()
799 if (ce.old_chunk != *last_old_chunk - nr_consecutive || in persistent_prepare_merge()
[all …]
/linux-4.1.27/drivers/media/i2c/
Dvs6624.c761 const unsigned *ce; in vs6624_probe() local
768 ce = client->dev.platform_data; in vs6624_probe()
769 if (ce == NULL) in vs6624_probe()
772 ret = devm_gpio_request_one(&client->dev, *ce, GPIOF_OUT_INIT_HIGH, in vs6624_probe()
775 v4l_err(client, "failed to request GPIO %d\n", *ce); in vs6624_probe()
810 sensor->ce_pin = *ce; in vs6624_probe()
/linux-4.1.27/Documentation/devicetree/bindings/c6x/
Demifa.txt26 - ti,emifa-ce-config:
43 ti,emifa-ce-config = <0x00240120
/linux-4.1.27/drivers/mtd/nand/
Dlpc32xx_slc.c410 uint32_t ce = ecc[i / 3]; in lpc32xx_slc_ecc_copy() local
411 ce = ~(ce << 2) & 0xFFFFFF; in lpc32xx_slc_ecc_copy()
412 spare[i + 2] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
413 ce >>= 8; in lpc32xx_slc_ecc_copy()
414 spare[i + 1] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
415 ce >>= 8; in lpc32xx_slc_ecc_copy()
416 spare[i] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
Dnandsim.c360 int ce; /* chip Enable */ member
1916 if (!ns->lines.ce) { in ns_nand_read_byte()
1976 if (!ns->lines.ce) { in ns_nand_write_byte()
2131 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0; in ns_hwcontrol()
2184 if (!ns->lines.ce) { in ns_nand_read_buf()
/linux-4.1.27/arch/tile/include/arch/
Dmpipe_shm.h243 uint_reg_t ce : 1; member
327 uint_reg_t ce : 1;
/linux-4.1.27/Documentation/devicetree/bindings/mips/cavium/
Dbootbus.txt34 - cavium,t-ce: A cell specifying the CE timing (in nS).
89 cavium,t-ce = <60>;
109 cavium,t-ce = <300>;
/linux-4.1.27/drivers/net/ppp/
Dppp_generic.c2566 struct compressor_entry *ce; in find_comp_entry() local
2568 list_for_each_entry(ce, &compressor_list, list) { in find_comp_entry()
2569 if (ce->comp->compress_proto == proto) in find_comp_entry()
2570 return ce; in find_comp_entry()
2579 struct compressor_entry *ce; in ppp_register_compressor() local
2586 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC); in ppp_register_compressor()
2587 if (!ce) in ppp_register_compressor()
2590 ce->comp = cp; in ppp_register_compressor()
2591 list_add(&ce->list, &compressor_list); in ppp_register_compressor()
2601 struct compressor_entry *ce; in ppp_unregister_compressor() local
[all …]
/linux-4.1.27/arch/powerpc/crypto/
Daes-tab-4k.S43 .long R(ce, 67, 67, a9), R(56, 2b, 2b, 7d)
75 .long R(b7, d6, d6, 61), R(7d, b3, b3, ce)
156 .long R(87, ce, ce, 49), R(aa, 55, 55, ff)
188 .long R(c9, 20, ac, 66), R(7d, ce, 3a, b4)
265 .long R(ba, e7, 9b, d9), R(4a, 6f, 36, ce)
283 .long R(ce, a9, 27, ee), R(b7, 61, c9, 35)
286 .long R(18, 14, ce, 79), R(73, c7, 37, bf)
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
DMakefile23 ce.o
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/
DKbuild5 include $(src)/nvkm/engine/ce/Kbuild
/linux-4.1.27/arch/c6x/boot/dts/
Dtms320c6455.dtsi58 ti,emifa-ce-config = <0x00240120
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/
Docteon_68xx.dts467 cavium,t-ce = <50>;
484 cavium,t-ce = <320>;
501 cavium,t-ce = <300>;
518 cavium,t-ce = <30>;
Docteon_3xxx.dts431 cavium,t-ce = <60>;
448 cavium,t-ce = <320>;
465 cavium,t-ce = <300>;
482 cavium,t-ce = <300>;
/linux-4.1.27/scripts/
Dasn1_compiler.c1332 struct element *e, *ce; in render_out_of_line_list() local
1344 for (ce = e->children; ce; ce = ce->next) in render_out_of_line_list()
1345 render_element(out, ce, NULL); in render_out_of_line_list()
/linux-4.1.27/net/bridge/netfilter/
Debtables.c1672 struct ebt_entry __user *ce; in compat_copy_entry_to_user() local
1688 if (*size < sizeof(*ce)) in compat_copy_entry_to_user()
1691 ce = (struct ebt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1692 if (copy_to_user(ce, e, sizeof(*ce))) in compat_copy_entry_to_user()
1696 *dstptr += sizeof(*ce); in compat_copy_entry_to_user()
1715 if (put_user(watchers_offset, &ce->watchers_offset) || in compat_copy_entry_to_user()
1716 put_user(target_offset, &ce->target_offset) || in compat_copy_entry_to_user()
1717 put_user(next_offset, &ce->next_offset)) in compat_copy_entry_to_user()
1720 *size -= sizeof(*ce); in compat_copy_entry_to_user()
/linux-4.1.27/Documentation/usb/
Dlinux.inf12 ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
/linux-4.1.27/Documentation/fmc/
Dparameters.txt54 0050: 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 ce 42
/linux-4.1.27/net/ipv4/netfilter/
Darp_tables.c1575 struct compat_arpt_entry __user *ce; in compat_copy_entry_to_user() local
1581 ce = (struct compat_arpt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1582 if (copy_to_user(ce, e, sizeof(struct arpt_entry)) != 0 || in compat_copy_entry_to_user()
1583 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1597 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1598 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
Dip_tables.c1410 struct compat_ipt_entry __user *ce; in compat_copy_entry_to_user() local
1417 ce = (struct compat_ipt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1418 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 || in compat_copy_entry_to_user()
1419 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1437 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1438 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
/linux-4.1.27/scripts/kconfig/
Dexpr.h201 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
Dexpr.c28 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one() argument
32 e->left.expr = ce; in expr_alloc_one()
/linux-4.1.27/net/ipv6/netfilter/
Dip6_tables.c1425 struct compat_ip6t_entry __user *ce; in compat_copy_entry_to_user() local
1432 ce = (struct compat_ip6t_entry __user *)*dstptr; in compat_copy_entry_to_user()
1433 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)) != 0 || in compat_copy_entry_to_user()
1434 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1452 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1453 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
/linux-4.1.27/drivers/net/fddi/skfp/h/
Dsmc.h448 struct s_cem ce[NUMPHYS] ; /* cem */ member
/linux-4.1.27/include/uapi/linux/
Dixjuser.h351 IXJ_CADENCE_ELEMENT __user *ce; member
/linux-4.1.27/drivers/video/fbdev/core/
Dsvgalib.c305 u8 ce = 0x0e; in svga_tilecursor() local
340 vga_wcrt(regbase, 0x0B, ce); /* set cursor end */ in svga_tilecursor()
/linux-4.1.27/Documentation/scsi/
Daacraid.txt53 9005:0285:9005:02ce Adaptec 51245 (Voodoo124)
/linux-4.1.27/tools/power/cpupower/po/
Dcs.po520 "Nelze zadat více než jeden parametr -c nebo --cpu\n"
521 "anebo více než jeden parametr určující výstup\n"
930 "Nelze zadat více než jeden parametr -c nebo --cpu\n"
931 "anebo více než jeden parametr určující výstup\n"
Dfr.po295 msgstr " pas de pilotes cpufreq reconnu pour ce CPU\n"
354 msgstr " la fr�quence actuelle de ce CPU est "
/linux-4.1.27/drivers/tty/vt/
Dcp437.uni92 0x49 U+0049 U+00cc U+00cd U+00ce U+00cf
/linux-4.1.27/drivers/staging/media/bcm2048/
Dradio-bcm2048.c1360 int err = 0, i, j = 0, ce = 0, cr = 0; in bcm2048_get_rds_rt() local
1372 ce = i; in bcm2048_get_rds_rt()
1392 if (i < ce) { in bcm2048_get_rds_rt()
/linux-4.1.27/drivers/ata/
Dpata_octeon_cf.c211 reg_tim.s.ce = ns_to_tim_reg(div, 5); in octeon_cf_set_piomode()
/linux-4.1.27/arch/mips/include/asm/octeon/
Dcvmx-mio-defs.h884 uint64_t ce:6; member
888 uint64_t ce:6;
917 uint64_t ce:6; member
921 uint64_t ce:6;
Dcvmx-pciercx-defs.h2114 uint32_t ce:1; member
2124 uint32_t ce:1;
/linux-4.1.27/Documentation/hwmon/
Dlm9317 Adapted to 2.6.20 by Carsten Emde <ce@osadl.org>
/linux-4.1.27/arch/m68k/ifpsp060/
Dftest.sa84 dc.l $000010a8,$4a0066ff,$000010ce,$61ff0000
Dfplsp.sa496 dc.l $660861ff,$000046ce,$60300c01,$00016608
514 dc.l $000050ce,$1d40ff4e,$120002ae,$00ff00ff
754 dc.l $000041ce,$1d40ff4e,$220002ae,$00ff00ff
/linux-4.1.27/arch/x86/lib/
Dx86-opcode-map.txt256 ce: INTO (i64)
549 ce: BSWAP RSI/ESI/R14/R14D
/linux-4.1.27/Documentation/video4linux/
Dgspca.txt319 sonixj 0c45:60ce USB-PC-Camera-168 (TALK-5067)
/linux-4.1.27/Documentation/filesystems/
Dcoda.txt377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell
511 44..22.. TThhee ppiiooccttll iinntteerrffaaccee
699 44..77.. aacccceessss
/linux-4.1.27/arch/mips/pci/
Dpcie-octeon.c473 pciercx_cfg070.s.ce = 1; /* ECRC check enable. */ in __cvmx_pcie_rc_initialize_config_space()
/linux-4.1.27/drivers/net/ethernet/tile/
Dtilegx.c601 if (idesc->be || idesc->me || idesc->tr || idesc->ce) { in tile_net_handle_packet()