Searched refs:count (Results 401 - 425 of 7688) sorted by path

<<11121314151617181920>>

/linux-master/arch/arm/boot/compressed/
H A Dstring.c26 void *__memmove(void *__dest, __const void *__src, size_t count) __alias(memmove);
27 void *__memset(void *s, int c, size_t count) __alias(memset);
64 void *memmove(void *__dest, __const void *__src, size_t count) argument
73 return memcpy(__dest, __src, count);
75 while (count--)
76 d[count] = s[count];
89 size_t strnlen(const char *s, size_t count) argument
93 for (sc = s; count-- && *sc != '\0'; ++sc)
98 int memcmp(const void *cs, const void *ct, size_t count) argument
126 memchr(const void *s, int c, size_t count) argument
156 memset(void *s, int c, size_t count) argument
[all...]
/linux-master/arch/arm/boot/
H A Ddeflate_xip_data.sh57 $DD if="$XIPIMAGE" count=$data_start iflag=count_bytes of="$XIPIMAGE.tmp"
/linux-master/arch/arm/common/
H A DbL_switcher.c676 struct kobj_attribute *attr, const char *buf, size_t count)
692 return (ret >= 0) ? count : ret;
696 struct kobj_attribute *attr, const char *buf, size_t count)
700 return ret ? ret : count;
675 bL_switcher_active_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t count) argument
695 bL_switcher_trace_trigger_store(struct kobject *kobj, struct kobj_attribute *attr, const char *buf, size_t count) argument
/linux-master/arch/arm/crypto/
H A Dghash-ce-glue.c55 u32 count; member in struct:ghash_desc_ctx
115 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE;
117 ctx->count += len;
147 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE;
421 static void gcm_update_mac(u64 dg[], const u8 *src, int count, u8 buf[], argument
425 int buf_added = min(count, GHASH_BLOCK_SIZE - *buf_count);
431 count -= buf_added;
434 if (count >= GHASH_BLOCK_SIZE || *buf_count == GHASH_BLOCK_SIZE) {
435 int blocks = count / GHASH_BLOCK_SIZE;
441 count
[all...]
H A Dsha1-ce-glue.c35 (sctx->count % SHA1_BLOCK_SIZE) + len < SHA1_BLOCK_SIZE)
H A Dsha1_neon_glue.c38 (sctx->count % SHA1_BLOCK_SIZE) + len < SHA1_BLOCK_SIZE)
H A Dsha2-ce-glue.c36 (sctx->count % SHA256_BLOCK_SIZE) + len < SHA256_BLOCK_SIZE)
H A Dsha256_neon_glue.c33 (sctx->count % SHA256_BLOCK_SIZE) + len < SHA256_BLOCK_SIZE)
H A Dsha512-neon-glue.c32 (sctx->count[0] % SHA512_BLOCK_SIZE) + len < SHA512_BLOCK_SIZE)
/linux-master/arch/arm/include/asm/
H A Dassembler.h226 * Increment/decrement the preempt count.
230 ldr \tmp, [\ti, #TI_PREEMPT] @ get preempt count
236 ldr \tmp, [\ti, #TI_PREEMPT] @ get preempt count
H A Ddma.h114 /* Set the DMA byte count for this channel
118 * DMA count immediately, but defer it to the enable_dma().
120 extern void set_dma_count(unsigned int chan, unsigned long count);
135 /* Get DMA residue count. After a DMA transfer, this
H A Dio.h302 size_t count)
305 mmioset((void __force *)dst, c, count);
307 #define memset_io(dst,c,count) memset_io(dst,c,count)
310 size_t count)
313 mmiocpy(to, (const void __force *)from, count);
315 #define memcpy_fromio(to,from,count) memcpy_fromio(to,from,count)
318 size_t count)
321 mmiocpy((void __force *)to, from, count);
301 memset_io(volatile void __iomem *dst, unsigned c, size_t count) argument
309 memcpy_fromio(void *to, const volatile void __iomem *from, size_t count) argument
317 memcpy_toio(volatile void __iomem *to, const void *from, size_t count) argument
[all...]
H A Duaccess.h606 extern long strncpy_from_user(char *dest, const char __user *src, long count);
/linux-master/arch/arm/include/asm/mach/
H A Ddma.h26 unsigned long count; /* single DMA size */ member in struct:dma_struct
/linux-master/arch/arm/kernel/
H A Datags_proc.c14 size_t count, loff_t *ppos)
17 return simple_read_from_buffer(buf, count, ppos, b->data, b->size);
13 atags_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) argument
H A Dentry-armv.S224 ldr r8, [tsk, #TI_PREEMPT] @ get preempt count
226 teq r8, #0 @ if preempt count != 0
H A Dprocess.c284 int count = 0; local
298 } while (count ++ < 16);
H A Dptrace.c553 unsigned int pos, unsigned int count,
559 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
582 unsigned int pos, unsigned int count,
587 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
633 unsigned int pos, unsigned int count,
645 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
652 user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
656 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
551 gpr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
580 fpa_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
631 vfp_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) argument
/linux-master/arch/arm/lib/
H A Dcsumpartialcopygeneric.S55 .Lless8: teq len, #0 @ check for zero count
H A Dfindbit.S110 clz r3, r3 @ count high zero bits
115 clz r3, r3 @ count high zero bits
/linux-master/arch/arm/mach-footbridge/
H A Ddma-isa.c47 int count; local
49 count = 1 + inb(io_port);
50 count |= inb(io_port) << 8;
52 return chan < 4 ? count : (count << 1);
94 dma->buf.length = dma->count;
96 dma->addr, dma->count,
/linux-master/arch/arm/mach-hisi/
H A Dplatmcpm.c194 unsigned int data, tries, count; local
202 count = TIMEOUT_MSEC / POLL_MSEC;
204 for (tries = 0; tries < count; tries++) {
216 if (tries >= count)
221 for (tries = 0; tries < count; tries++) {
227 if (tries >= count)
/linux-master/arch/arm/mach-imx/
H A Dmmdc.c322 local64_add(delta, &event->count);
/linux-master/arch/arm/mach-meson/
H A Dplatsmp.c356 int ret, power_mode, count = 5000; local
365 } while (++count);
/linux-master/arch/arm/mach-omap1/
H A Dams-delta-fiq-handler.S189 ldr r10, [r9, #BUF_KEYS_CNT] @ get saved keystrokes count

Completed in 257 milliseconds

<<11121314151617181920>>