Searched refs:memmove (Results 76 - 100 of 521) sorted by relevance

1234567891011>>

/linux-master/net/dsa/
H A Dtag.h186 memmove(skb->data - ETH_HLEN, skb->data - ETH_HLEN - len, 2 * ETH_ALEN);
215 memmove(skb->data, skb->data + len, 2 * ETH_ALEN);
/linux-master/lib/
H A Ddecompress_unxz.c167 * is fast enough. memcpy/memmove speed matters in multi-call mode, but
169 * memmove speed can matter and only if there is a lot of incompressible data
201 #ifndef memmove
203 void *memmove(void *dest, const void *src, size_t size) function
223 * Since we need memmove anyway, would use it as memcpy too.
228 # define memcpy memmove
H A Dmemcpy_kunit.c3 * Test cases for memcpy(), memmove(), and memset().
112 #define TEST_OP "memmove"
163 memmove(dest.data, zero.data, sizeof(dest.data));
168 memmove(dest.data + 12, zero.data, 7);
175 memmove(ptr++, zero.data, count++);
177 memmove(ptr++, zero.data, count++);
182 memmove(ptr, overlap.data, 5);
188 * Test a backwards overlapping memmove first. 256 and 1024 are
191 memmove(larger_array, larger_array + 256, 1024);
196 /* Test a forwards overlapping memmove
[all...]
/linux-master/fs/ntfs3/
H A Drecord.c504 memmove(Add2Ptr(attr, asize), attr, tail);
513 memmove(Add2Ptr(attr, name_off), name, name_len * sizeof(short));
555 memmove(attr, Add2Ptr(attr, asize), used - aoff);
589 memmove(next + dsize, next, tail);
598 memmove(next - dsize, next, tail);
635 memmove(next + dsize, next, tail);
641 memmove(next, next + dsize, tail);
647 memmove(next + new_run_size - run_size, next + dsize, tail);
H A Dattrlist.c324 memmove(Add2Ptr(le, sz), le, old_size - off);
342 /* Undo memmove above. */
343 memmove(le, Add2Ptr(le, sz), old_size - off);
377 memmove(le, Add2Ptr(le, size), al->size - (off + size));
430 memmove(le, Add2Ptr(le, size), al->size - (off + size));
/linux-master/arch/powerpc/boot/
H A Dtreeboot-akebono.c122 memmove(&userdata[i], end,
H A Dmain.c137 memmove((void *)initrd_addr, old_addr, initrd_size);
178 memmove((void *)esm_blob_addr, old_addr, esm_blob_size);
238 memmove(cmdline, loader_info.cmdline,
/linux-master/fs/reiserfs/
H A Dlbalance.c355 memmove(ih + cpy_num, ih, (nr - dest_before) * IH_SIZE);
379 memmove(dest->b_data + last_loc,
933 memmove(bh->b_data + last_loc - ih_item_len(inserted_item_ih),
942 memmove(to, inserted_item_body,
948 memmove(ih + 1, ih, IH_SIZE * (nr - before));
949 memmove(ih, inserted_item_ih, IH_SIZE);
1017 memmove(bh->b_data + last_loc - paste_size, bh->b_data + last_loc,
1030 memmove(bh->b_data + ih_location(ih) +
1124 memmove((char *)(deh + from),
1130 memmove(prev_recor
[all...]
/linux-master/drivers/platform/surface/aggregator/
H A Dssh_parser.h95 memmove(buf->ptr, buf->ptr + n, buf->len - n);
/linux-master/arch/x86/include/asm/
H A Dstring_64.h68 void *memmove(void *dest, const void *src, size_t count);
/linux-master/fs/udf/
H A Dmisc.c53 memmove(&ad[size], ad, iinfo->i_lenAlloc);
87 memmove(&ea[offset - aal + size],
97 memmove(&ea[offset - ial + size],
108 memmove(&ea[offset - aal + size],
/linux-master/arch/alpha/lib/
H A DMakefile20 memmove.o \
/linux-master/security/tomoyo/
H A Drealpath.c172 memmove(pos, "/self", 5);
202 memmove(pos, name, name_len);
214 memmove(pos, name, name_len);
H A Daudit.c41 memmove(cp, "} envp[]={ ", 11);
80 memmove(cp, "... ", 4);
83 memmove(cp, "} envp[]={ ", 11);
92 memmove(cp, "... ", 4);
/linux-master/arch/x86/lib/
H A Dmemmove_64.S14 #undef memmove
19 * Implement memmove(). This can handle overlap between src and dst.
215 SYM_FUNC_ALIAS_MEMFUNC(memmove, __memmove)
216 EXPORT_SYMBOL(memmove)
/linux-master/scripts/dtc/libfdt/
H A Dfdt_rw.c66 memmove(p + newlen, p + oldlen, ((char *)fdt + dsize) - (p + oldlen));
407 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
410 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
414 memmove(new + strings_off, old + fdt_off_dt_strings(old), strings_size);
476 memmove(buf, tmp, newsize);
/linux-master/net/mac80211/
H A Dwep.c81 memmove(newhdr, newhdr + IEEE80211_WEP_IV_LEN, hdrlen);
101 memmove(skb->data + IEEE80211_WEP_IV_LEN, skb->data, hdrlen);
235 memmove(skb->data + IEEE80211_WEP_IV_LEN, skb->data, hdrlen);
/linux-master/arch/arm/kernel/
H A Darmksyms.c89 EXPORT_SYMBOL(memmove); variable
/linux-master/arch/sh/kernel/
H A Dsh_ksyms_32.c13 EXPORT_SYMBOL(memmove); variable
/linux-master/arch/arm/lib/
H A DMakefile11 memmove.o memset.o setbit.o \
/linux-master/tools/include/nolibc/
H A Darch-x86_64.h177 void *memmove(void *dst, const void *src, size_t len);
187 ".weak memmove\n"
189 "memmove:\n"
/linux-master/drivers/iio/magnetometer/
H A Drm3100-core.c481 memmove(data->buffer + i * 4, data->buffer + i * 3, 3);
488 memmove(data->buffer + 4, data->buffer + 3, 3);
495 memmove(data->buffer + 4, data->buffer + 3, 3);
502 memmove(data->buffer + 4, data->buffer + 6, 3);
/linux-master/arch/s390/boot/
H A Dstartup.c131 memmove((void *)addr, (void *)old_addr, size);
189 memmove(vmlinux_relocs_64_start, __vmlinux_relocs_64_start, size);
434 memmove((void *)vmlinux_lma, img, vmlinux.image_size);
437 memmove((void *)vmlinux_lma, img, vmlinux.image_size);
/linux-master/net/wireless/
H A Dlib80211_crypt_wep.c74 memmove(pos, pos + 4, hdr_len);
191 memmove(skb->data + 4, skb->data, hdr_len);
/linux-master/arch/s390/lib/
H A Dmem.S15 * void *memmove(void *dest, const void *src, size_t n)
53 SYM_FUNC_ALIAS(memmove, __memmove)
54 EXPORT_SYMBOL(memmove)

Completed in 249 milliseconds

1234567891011>>