Home
last modified time | relevance | path

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

/linux-4.4.14/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.4.14/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()
90 static int digicolor_clkevt_shutdown(struct clock_event_device *ce) in digicolor_clkevt_shutdown() argument
[all …]
Dtimer-atlas7.c73 struct clock_event_device *ce = dev_id; in sirfsoc_timer_interrupt() local
79 if (clockevent_state_oneshot(ce)) 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
175 static int sirfsoc_local_timer_setup(struct clock_event_device *ce) in sirfsoc_local_timer_setup() argument
185 ce->irq = action->irq; in sirfsoc_local_timer_setup()
186 ce->name = "local_timer"; in sirfsoc_local_timer_setup()
187 ce->features = CLOCK_EVT_FEAT_ONESHOT; in sirfsoc_local_timer_setup()
188 ce->rating = 200; in sirfsoc_local_timer_setup()
189 ce->set_state_shutdown = sirfsoc_timer_shutdown; in sirfsoc_local_timer_setup()
[all …]
Dcadence_ttc_timer.c100 struct clock_event_device ce; member
104 container_of(x, struct ttc_timer_clockevent, ce)
151 ttce->ce.event_handler(&ttce->ce); in ttc_clock_event_interrupt()
394 clockevents_update_freq(&ttcce->ce, ndata->new_rate / PRESCALE); in ttc_rate_change_clockevent_cb()
431 ttcce->ce.name = "ttc_clockevent"; in ttc_setup_clockevent()
432 ttcce->ce.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; in ttc_setup_clockevent()
433 ttcce->ce.set_next_event = ttc_set_next_event; in ttc_setup_clockevent()
434 ttcce->ce.set_state_shutdown = ttc_shutdown; in ttc_setup_clockevent()
435 ttcce->ce.set_state_periodic = ttc_set_periodic; in ttc_setup_clockevent()
436 ttcce->ce.set_state_oneshot = ttc_shutdown; 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
/linux-4.4.14/drivers/base/power/
Dclock_ops.c41 static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce) in __pm_clk_enable() argument
45 if (ce->status < PCE_STATUS_ERROR) { in __pm_clk_enable()
46 ret = clk_enable(ce->clk); in __pm_clk_enable()
48 ce->status = PCE_STATUS_ENABLED; in __pm_clk_enable()
51 __func__, ce->clk, ret); in __pm_clk_enable()
60 static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce) in pm_clk_acquire() argument
62 if (!ce->clk) in pm_clk_acquire()
63 ce->clk = clk_get(dev, ce->con_id); in pm_clk_acquire()
64 if (IS_ERR(ce->clk)) { in pm_clk_acquire()
65 ce->status = PCE_STATUS_ERROR; in pm_clk_acquire()
[all …]
/linux-4.4.14/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.c434 struct of_changeset_entry *ce; in overlay_is_topmost() local
442 list_for_each_entry(ce, &ovt->cset.entries, node) { in overlay_is_topmost()
443 if (overlay_subtree_check(ce->np, dn)) { in overlay_is_topmost()
468 struct of_changeset_entry *ce; in overlay_removal_is_ok() local
470 list_for_each_entry(ce, &ov->cset.entries, node) { in overlay_removal_is_ok()
471 if (!overlay_is_topmost(ov, ce->np)) { in overlay_removal_is_ok()
/linux-4.4.14/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.4.14/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))
35 sha1-arm-ce-y := sha1-ce-core.o sha1-ce-glue.o
36 sha2-arm-ce-y := sha2-ce-core.o sha2-ce-glue.o
[all …]
/linux-4.4.14/arch/sparc/kernel/
Dtime_32.c120 struct clock_event_device *ce = &timer_ce; in setup_timer_ce() local
124 ce->name = "timer_ce"; in setup_timer_ce()
125 ce->rating = 100; in setup_timer_ce()
126 ce->features = CLOCK_EVT_FEAT_PERIODIC; in setup_timer_ce()
127 ce->set_state_shutdown = timer_ce_shutdown; in setup_timer_ce()
128 ce->set_state_periodic = timer_ce_set_periodic; in setup_timer_ce()
129 ce->tick_resume = timer_ce_set_periodic; in setup_timer_ce()
130 ce->cpumask = cpu_possible_mask; in setup_timer_ce()
131 ce->shift = 32; in setup_timer_ce()
132 ce->mult = div_sc(sparc_config.clock_rate, NSEC_PER_SEC, 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 (clockevent_state_periodic(ce)) 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.4.14/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.4.14/arch/alpha/kernel/
Dtime.c93 struct clock_event_device *ce = &per_cpu(cpu_ce, cpu); in rtc_timer_interrupt() local
96 if (likely(clockevent_state_periodic(ce))) in rtc_timer_interrupt()
97 ce->event_handler(ce); in rtc_timer_interrupt()
108 rtc_ce_set_next_event(unsigned long evt, struct clock_event_device *ce) in rtc_ce_set_next_event() argument
118 struct clock_event_device *ce = &per_cpu(cpu_ce, cpu); in init_rtc_clockevent() local
120 *ce = (struct clock_event_device){ in init_rtc_clockevent()
128 clockevents_config_and_register(ce, CONFIG_HZ, 0, 0); in init_rtc_clockevent()
156 static int qemu_ce_shutdown(struct clock_event_device *ce) in qemu_ce_shutdown() argument
165 qemu_ce_set_next_event(unsigned long evt, struct clock_event_device *ce) in qemu_ce_set_next_event() argument
175 struct clock_event_device *ce = &per_cpu(cpu_ce, cpu); in qemu_timer_interrupt() local
[all …]
/linux-4.4.14/arch/arm/mach-footbridge/
Ddc21285-timer.c90 struct clock_event_device *ce = dev_id; in timer1_interrupt() local
95 if (clockevent_state_oneshot(ce)) in timer1_interrupt()
98 ce->event_handler(ce); in timer1_interrupt()
115 struct clock_event_device *ce = &ckevt_dc21285; in footbridge_timer_init() local
120 setup_irq(ce->irq, &footbridge_timer_irq); in footbridge_timer_init()
122 ce->cpumask = cpumask_of(smp_processor_id()); in footbridge_timer_init()
123 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.4.14/fs/ext2/
Dxattr.c483 struct mb_cache_entry *ce; in ext2_xattr_set() local
486 ce = mb_cache_entry_get(ext2_xattr_cache, bh->b_bdev, in ext2_xattr_set()
491 if (ce) in ext2_xattr_set()
492 mb_cache_entry_free(ce); in ext2_xattr_set()
497 if (ce) in ext2_xattr_set()
498 mb_cache_entry_release(ce); in ext2_xattr_set()
707 struct mb_cache_entry *ce; in ext2_xattr_set2() local
713 ce = mb_cache_entry_get(ext2_xattr_cache, old_bh->b_bdev, in ext2_xattr_set2()
718 if (ce) in ext2_xattr_set2()
719 mb_cache_entry_free(ce); in ext2_xattr_set2()
[all …]
/linux-4.4.14/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
Dgf100.c30 gf100_ce_init(struct nvkm_falcon *ce) in gf100_ce_init() argument
32 struct nvkm_device *device = ce->engine.subdev.device; in gf100_ce_init()
33 const int index = ce->engine.subdev.index - NVKM_ENGINE_CE0; in gf100_ce_init()
34 nvkm_wr32(device, ce->addr + 0x084, index); in gf100_ce_init()
Dgk104.c29 gk104_ce_intr(struct nvkm_engine *ce) in gk104_ce_intr() argument
31 const u32 base = (ce->subdev.index - NVKM_ENGINE_CE0) * 0x1000; in gk104_ce_intr()
32 struct nvkm_subdev *subdev = &ce->subdev; in gk104_ce_intr()
Dgt215.c43 gt215_ce_intr(struct nvkm_falcon *ce, struct nvkm_fifo_chan *chan) in gt215_ce_intr() argument
45 struct nvkm_subdev *subdev = &ce->engine.subdev; in gt215_ce_intr()
/linux-4.4.14/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.4.14/drivers/staging/rdma/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.4.14/drivers/gpu/drm/nouveau/nvkm/engine/device/
Dbase.c1161 .ce[0] = gt215_ce_new,
1195 .ce[0] = gt215_ce_new,
1228 .ce[0] = gt215_ce_new,
1325 .ce[0] = gt215_ce_new,
1360 .ce[0] = gf100_ce_new,
1361 .ce[1] = gf100_ce_new,
1396 .ce[0] = gf100_ce_new,
1431 .ce[0] = gf100_ce_new,
1466 .ce[0] = gf100_ce_new,
1467 .ce[1] = gf100_ce_new,
[all …]
/linux-4.4.14/fs/ext4/
Dxattr.c545 struct mb_cache_entry *ce = NULL; in ext4_xattr_release_block() local
549 ce = mb_cache_entry_get(ext4_mb_cache, bh->b_bdev, bh->b_blocknr); in ext4_xattr_release_block()
558 if (ce) in ext4_xattr_release_block()
559 mb_cache_entry_free(ce); in ext4_xattr_release_block()
567 if (ce) in ext4_xattr_release_block()
568 mb_cache_entry_release(ce); in ext4_xattr_release_block()
781 struct mb_cache_entry *ce = NULL; in ext4_xattr_block_set() local
790 ce = mb_cache_entry_get(ext4_mb_cache, bs->bh->b_bdev, in ext4_xattr_block_set()
799 if (ce) { in ext4_xattr_block_set()
800 mb_cache_entry_free(ce); in ext4_xattr_block_set()
[all …]
/linux-4.4.14/include/linux/
Dclockchips.h190 extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq);
193 clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec) in clockevents_calc_mult_shift() argument
195 return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec); in clockevents_calc_mult_shift()
/linux-4.4.14/kernel/time/
Dclockevents.c32 struct clock_event_device *ce; member
412 res = __clockevents_try_unbind(cu->ce, smp_processor_id()); in __clockevents_unbind()
414 res = clockevents_replace(cu->ce); in __clockevents_unbind()
425 struct ce_unbind cu = { .ce = ced, .res = -ENODEV }; in clockevents_unbind()
679 struct clock_event_device *ce; in sysfs_unbind_tick_dev() local
687 list_for_each_entry(ce, &clockevent_devices, list) { in sysfs_unbind_tick_dev()
688 if (!strcmp(ce->name, name)) { in sysfs_unbind_tick_dev()
689 ret = __clockevents_try_unbind(ce, dev->id); in sysfs_unbind_tick_dev()
698 ret = clockevents_unbind(ce, dev->id); in sysfs_unbind_tick_dev()
/linux-4.4.14/drivers/md/
Ddm-snap-persistent.c704 struct core_exception ce; in persistent_commit_exception() local
710 ce.old_chunk = e->old_chunk; in persistent_commit_exception()
711 ce.new_chunk = e->new_chunk; in persistent_commit_exception()
712 write_exception(ps, ps->current_committed++, &ce); in persistent_commit_exception()
767 struct core_exception ce; in persistent_prepare_merge() local
788 read_exception(ps, ps->area, ps->current_committed - 1, &ce); in persistent_prepare_merge()
789 *last_old_chunk = ce.old_chunk; in persistent_prepare_merge()
790 *last_new_chunk = ce.new_chunk; in persistent_prepare_merge()
799 ps->current_committed - 1 - nr_consecutive, &ce); in persistent_prepare_merge()
800 if (ce.old_chunk != *last_old_chunk - nr_consecutive || in persistent_prepare_merge()
[all …]
/linux-4.4.14/drivers/media/i2c/
Dvs6624.c768 const unsigned *ce; in vs6624_probe() local
775 ce = client->dev.platform_data; in vs6624_probe()
776 if (ce == NULL) in vs6624_probe()
779 ret = devm_gpio_request_one(&client->dev, *ce, GPIOF_OUT_INIT_HIGH, in vs6624_probe()
782 v4l_err(client, "failed to request GPIO %d\n", *ce); in vs6624_probe()
817 sensor->ce_pin = *ce; in vs6624_probe()
/linux-4.4.14/Documentation/devicetree/bindings/c6x/
Demifa.txt26 - ti,emifa-ce-config:
43 ti,emifa-ce-config = <0x00240120
/linux-4.4.14/drivers/mtd/nand/
Dlpc32xx_slc.c413 uint32_t ce = ecc[i / 3]; in lpc32xx_slc_ecc_copy() local
414 ce = ~(ce << 2) & 0xFFFFFF; in lpc32xx_slc_ecc_copy()
415 spare[i + 2] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
416 ce >>= 8; in lpc32xx_slc_ecc_copy()
417 spare[i + 1] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
418 ce >>= 8; in lpc32xx_slc_ecc_copy()
419 spare[i] = (uint8_t)(ce & 0xFF); in lpc32xx_slc_ecc_copy()
Dnandsim.c360 int ce; /* chip Enable */ member
1915 if (!ns->lines.ce) { in ns_nand_read_byte()
1975 if (!ns->lines.ce) { in ns_nand_write_byte()
2130 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0; in ns_hwcontrol()
2183 if (!ns->lines.ce) { in ns_nand_read_buf()
/linux-4.4.14/arch/tile/include/arch/
Dmpipe_shm.h243 uint_reg_t ce : 1; member
327 uint_reg_t ce : 1;
/linux-4.4.14/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.4.14/drivers/net/ppp/
Dppp_generic.c2617 struct compressor_entry *ce; in find_comp_entry() local
2619 list_for_each_entry(ce, &compressor_list, list) { in find_comp_entry()
2620 if (ce->comp->compress_proto == proto) in find_comp_entry()
2621 return ce; in find_comp_entry()
2630 struct compressor_entry *ce; in ppp_register_compressor() local
2637 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC); in ppp_register_compressor()
2638 if (!ce) in ppp_register_compressor()
2641 ce->comp = cp; in ppp_register_compressor()
2642 list_add(&ce->list, &compressor_list); in ppp_register_compressor()
2652 struct compressor_entry *ce; in ppp_unregister_compressor() local
[all …]
/linux-4.4.14/drivers/crypto/nx/
Dnx-842-powernv.c160 (csb)->cs, (csb)->cc, (csb)->ce, \
335 if (csb->ce & CSB_CE_TERMINATION) { in wait_for_csb()
339 if (csb->ce & CSB_CE_INCOMPLETE) { in wait_for_csb()
343 if (!(csb->ce & CSB_CE_TPBC)) { in wait_for_csb()
/linux-4.4.14/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.4.14/drivers/net/wireless/ath/ath10k/
DMakefile26 ce.o
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/
DKbuild5 include $(src)/nvkm/engine/ce/Kbuild
/linux-4.4.14/arch/powerpc/include/asm/
Dicswx.h89 u8 ce; member
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/core/
Ddevice.h124 struct nvkm_engine *ce[3]; member
189 int (*ce[3] )(struct nvkm_device *, int idx, struct nvkm_engine **); member
/linux-4.4.14/arch/c6x/boot/dts/
Dtms320c6455.dtsi58 ti,emifa-ce-config = <0x00240120
/linux-4.4.14/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.4.14/scripts/
Dasn1_compiler.c1398 struct element *e, *ce; in render_out_of_line_list() local
1410 for (ce = e->children; ce; ce = ce->next) in render_out_of_line_list()
1411 render_element(out, ce, NULL); in render_out_of_line_list()
/linux-4.4.14/net/bridge/netfilter/
Debtables.c1674 struct ebt_entry __user *ce; in compat_copy_entry_to_user() local
1690 if (*size < sizeof(*ce)) in compat_copy_entry_to_user()
1693 ce = (struct ebt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1694 if (copy_to_user(ce, e, sizeof(*ce))) in compat_copy_entry_to_user()
1698 *dstptr += sizeof(*ce); in compat_copy_entry_to_user()
1717 if (put_user(watchers_offset, &ce->watchers_offset) || in compat_copy_entry_to_user()
1718 put_user(target_offset, &ce->target_offset) || in compat_copy_entry_to_user()
1719 put_user(next_offset, &ce->next_offset)) in compat_copy_entry_to_user()
1722 *size -= sizeof(*ce); in compat_copy_entry_to_user()
/linux-4.4.14/Documentation/usb/
Dlinux.inf12 ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
/linux-4.4.14/Documentation/fmc/
Dparameters.txt54 0050: 00 00 00 00 00 00 00 ff 00 00 00 00 00 00 ce 42
/linux-4.4.14/net/ipv4/netfilter/
Darp_tables.c1470 struct compat_arpt_entry __user *ce; in compat_copy_entry_to_user() local
1476 ce = (struct compat_arpt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1477 if (copy_to_user(ce, e, sizeof(struct arpt_entry)) != 0 || in compat_copy_entry_to_user()
1478 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1492 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1493 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
Dip_tables.c1378 struct compat_ipt_entry __user *ce; in compat_copy_entry_to_user() local
1385 ce = (struct compat_ipt_entry __user *)*dstptr; in compat_copy_entry_to_user()
1386 if (copy_to_user(ce, e, sizeof(struct ipt_entry)) != 0 || in compat_copy_entry_to_user()
1387 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1405 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1406 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
/linux-4.4.14/scripts/kconfig/
Dexpr.h203 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
Dexpr.c25 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) in expr_alloc_one() argument
29 e->left.expr = ce; in expr_alloc_one()
/linux-4.4.14/net/ipv6/netfilter/
Dip6_tables.c1389 struct compat_ip6t_entry __user *ce; in compat_copy_entry_to_user() local
1396 ce = (struct compat_ip6t_entry __user *)*dstptr; in compat_copy_entry_to_user()
1397 if (copy_to_user(ce, e, sizeof(struct ip6t_entry)) != 0 || in compat_copy_entry_to_user()
1398 copy_to_user(&ce->counters, &counters[i], in compat_copy_entry_to_user()
1416 if (put_user(target_offset, &ce->target_offset) != 0 || in compat_copy_entry_to_user()
1417 put_user(next_offset, &ce->next_offset) != 0) in compat_copy_entry_to_user()
/linux-4.4.14/drivers/net/fddi/skfp/h/
Dsmc.h448 struct s_cem ce[NUMPHYS] ; /* cem */ member
/linux-4.4.14/include/uapi/linux/
Dixjuser.h351 IXJ_CADENCE_ELEMENT __user *ce; member
/linux-4.4.14/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.4.14/Documentation/scsi/
Daacraid.txt53 9005:0285:9005:02ce Adaptec 51245 (Voodoo124)
/linux-4.4.14/drivers/iommu/
Dintel-iommu.c2895 struct context_entry *new_ce = NULL, ce; in copy_context_table() local
2949 memcpy(&ce, old_ce + idx, sizeof(ce)); in copy_context_table()
2951 if (!__context_present(&ce)) in copy_context_table()
2954 did = context_domain_id(&ce); in copy_context_table()
2974 context_clear_pasid_enable(&ce); in copy_context_table()
2975 context_set_copied(&ce); in copy_context_table()
2977 new_ce[idx] = ce; in copy_context_table()
/linux-4.4.14/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.4.14/drivers/tty/vt/
Dcp437.uni92 0x49 U+0049 U+00cc U+00cd U+00ce U+00cf
/linux-4.4.14/drivers/staging/media/bcm2048/
Dradio-bcm2048.c1364 int err = 0, i, j = 0, ce = 0, cr = 0; in bcm2048_get_rds_rt() local
1376 ce = i; in bcm2048_get_rds_rt()
1396 if (i < ce) { in bcm2048_get_rds_rt()
/linux-4.4.14/drivers/ata/
Dpata_octeon_cf.c211 reg_tim.s.ce = ns_to_tim_reg(div, 5); in octeon_cf_set_piomode()
/linux-4.4.14/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.4.14/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.4.14/Documentation/hwmon/
Dlm9317 Adapted to 2.6.20 by Carsten Emde <ce@osadl.org>
/linux-4.4.14/Documentation/video4linux/
Dgspca.txt319 sonixj 0c45:60ce USB-PC-Camera-168 (TALK-5067)
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
Dx86-opcode-map.txt256 ce: INTO (i64)
553 ce: BSWAP RSI/ESI/R14/R14D
/linux-4.4.14/arch/x86/lib/
Dx86-opcode-map.txt256 ce: INTO (i64)
553 ce: BSWAP RSI/ESI/R14/R14D
/linux-4.4.14/Documentation/filesystems/
Dcoda.txt377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell
511 44..22.. TThhee ppiiooccttll iinntteerrffaaccee
699 44..77.. aacccceessss
/linux-4.4.14/arch/mips/pci/
Dpcie-octeon.c473 pciercx_cfg070.s.ce = 1; /* ECRC check enable. */ in __cvmx_pcie_rc_initialize_config_space()
/linux-4.4.14/drivers/net/ethernet/tile/
Dtilegx.c602 if (idesc->be || idesc->me || idesc->tr || idesc->ce) { in tile_net_handle_packet()