/third_party/skia/src/pathops/ |
H A D | SkIntersections.cpp | 58 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); in insert() 59 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining); in insert() 60 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining); in insert() 86 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining); in insert() 87 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining); in insert() 88 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining); in insert() 165 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining); in removeOne() 166 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining); in removeOne() 167 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining); in removeOne()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | memmove.c | 32 memmove(one, one, 9); in memmove_0100() 34 t_error("%s memmove failed\n", __func__); in memmove_0100() 50 memmove(two, one, 11); in memmove_0200() 52 t_error("%s memmove failed\n", __func__); in memmove_0200() 55 t_error("%s memmove failed\n", __func__); in memmove_0200() 69 memmove(one + 1, one + 2, 7); in memmove_0300() 71 t_error("%s memmove failed\n", __func__); in memmove_0300() 85 memmove(one + 1, one, 9); in memmove_0400() 87 t_error("%s memmove failed\n", __func__); in memmove_0400()
|
/third_party/musl/src/string/x86_64/ |
H A D | memmove.s | 1 .global memmove 2 .type memmove,@function 3 memmove: label
|
/third_party/musl/src/string/i386/ |
H A D | memmove.s | 1 .global memmove 2 .type memmove,@function 3 memmove: label
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | mem_intrin.cpp | 2 * Simple sanity test of memcpy, memmove, and memset intrinsics. 60 memmove((void *)overlap_buf, (void *)buf, reduced_length); in memmove_test() 63 memmove((void *)buf2, (void *)buf, length); in memmove_test() 89 memmove((void *)(buf + 16), (void *)buf, NBYTES); \ 91 memmove((void *)buf2, (void *)(buf2 + 16), NBYTES); \
|
/third_party/elfutils/libelf/ |
H A D | chdr_xlate.h | 14 memmove (dest, src, len); in Elf32_cvt_chdr() 29 memmove (dest, src, len); in Elf64_cvt_chdr()
|
H A D | elf_compress_gnu.c | 117 memmove (out_buf, "ZLIB", 4); in elf_compress_gnu() 118 memmove (out_buf + 4, &be64_size, sizeof (be64_size)); in elf_compress_gnu()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerMutate.cpp | 116 memmove(Data + Idx, Data + Idx + N, Size - Idx - N); in Mutate_EraseBytes() 126 memmove(Data + Idx + 1, Data + Idx, Size - Idx); 141 memmove(Data + Idx + N, Data + Idx, Size - Idx); in Mutate_InsertRepeatedBytes() 186 memmove(Data + Idx + W.size(), Data + Idx, Size - Idx); in ApplyDictionaryEntry() 288 memmove(To + ToBeg, From + FromBeg, CopySize); in CopyPartOf() 309 memmove(To + ToInsertPos + CopySize, To + ToInsertPos, TailSize); in InsertPartOf() 310 memmove(To + ToInsertPos, MutateInPlaceHere.data(), CopySize); in InsertPartOf() 312 memmove(To + ToInsertPos + CopySize, To + ToInsertPos, TailSize); in InsertPartOf() 313 memmove(To + ToInsertPos, From + FromBeg, CopySize); in InsertPartOf()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-number-prototype.c | 106 memmove (p, digits_p, (size_t) to_copy); in ecma_builtin_number_prototype_helper_to_string() 132 memmove (p, digits_p, (size_t) to_copy); in ecma_builtin_number_prototype_helper_to_string() 228 memmove (digits_p + 1, digits_p, num_digits); in ecma_builtin_number_prototype_helper_round() 472 memmove (buff + 1, buff, (size_t) buff_index); in ecma_builtin_number_prototype_object_to_string() 490 memmove (buff + zero_count, buff, (size_t) buff_index); in ecma_builtin_number_prototype_object_to_string() 511 memmove (buff + point + 1, buff + point, (size_t) (buff_index - point)); in ecma_builtin_number_prototype_object_to_string() 519 memmove (buff + 1, buff, (size_t) buff_index); in ecma_builtin_number_prototype_object_to_string()
|
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | wrap128.c | 59 memmove(out + 8, in, inlen); in CRYPTO_128_wrap() 112 memmove(out, in + 8, inlen); in crypto_128_unwrap_raw() 222 memmove(out + 8, in, inlen); in CRYPTO_128_wrap_pad() 228 memmove(out, in, inlen); in CRYPTO_128_wrap_pad()
|
/third_party/openssl/crypto/modes/ |
H A D | wrap128.c | 59 memmove(out + 8, in, inlen); in CRYPTO_128_wrap() 112 memmove(out, in + 8, inlen); in crypto_128_unwrap_raw() 222 memmove(out + 8, in, inlen); in CRYPTO_128_wrap_pad() 228 memmove(out, in, inlen); in CRYPTO_128_wrap_pad()
|
/third_party/cups-filters/backend/ |
H A D | ieee1284.c | 238 memmove(device_id, device_id + 2, length); in backendGetDeviceID() 726 memmove(buffer + 2, buffer + 18, strlen(buffer + 18) + 1); in normalize_make_and_model() 736 memmove(buffer + 2, buffer + 15, strlen(buffer + 15) + 1); in normalize_make_and_model() 744 memmove(buffer + 8, buffer + 21, strlen(buffer + 21) + 1); in normalize_make_and_model() 767 memmove(buffer + 4, buffer + 8, strlen(buffer + 8) + 1); in normalize_make_and_model()
|
/third_party/python/Python/ |
H A D | pystrtod.c | 467 memmove(buffer, in change_decimal_from_locale_to_dot() 531 memmove(start, in ensure_minimum_exponent_length() 541 memmove(start + zeros, start, in ensure_minimum_exponent_length() 589 memmove(new_fraction_end, old_fraction_end, end-old_fraction_end); in remove_trailing_zeros() 659 memmove(p + insert_count, p, in ensure_decimal_point() 670 memmove(p+2, p+1, digit_count); /* safe, but overwrites nul */ in ensure_decimal_point() 928 memmove(buf, buf+1, len); in PyOS_double_to_string() 940 memmove(buf+1, buf, len+1); in PyOS_double_to_string()
|
/third_party/alsa-lib/src/ucm/ |
H A D | ucm_exec.c | 141 memmove(s, s + 1, strlen(s)); in parse_args() 143 memmove(s, s + 1, strlen(s)); in parse_args() 149 memmove(s, s + 1, strlen(s)); in parse_args() 156 memmove(s, s + 1, strlen(s)); in parse_args()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | string.h | 26 void *memmove (void *, const void *, size_t); 115 #define memmove(dst, src, len) __memmove(dst, src, len) macro 126 #define memmove(dst, src, len) __memmove(dst, src, len) macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | string.h | 28 void *memmove (void *, const void *, size_t); 117 #define memmove(dst, src, len) __memmove(dst, src, len) macro 128 #define memmove(dst, src, len) __memmove(dst, src, len) macro
|
/third_party/lame/libmp3lame/ |
H A D | gain_analysis.c | 380 memmove(rgData->loutbuf, rgData->loutbuf + rgData->totsamp, in AnalyzeSamples() 382 memmove(rgData->routbuf, rgData->routbuf + rgData->totsamp, in AnalyzeSamples() 384 memmove(rgData->lstepbuf, rgData->lstepbuf + rgData->totsamp, in AnalyzeSamples() 386 memmove(rgData->rstepbuf, rgData->rstepbuf + rgData->totsamp, in AnalyzeSamples() 394 memmove(rgData->linprebuf, rgData->linprebuf + num_samples, in AnalyzeSamples() 396 memmove(rgData->rinprebuf, rgData->rinprebuf + num_samples, in AnalyzeSamples()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
H A D | tinystr.cpp | 61 memmove(start(), str, len); in assign() 75 memmove(finish(), str, len); in append()
|
/third_party/lz4/tests/ |
H A D | freestanding.c | 39 EXTERN_C void *memmove(void *dst, const void *src, size_t n); 46 #define LZ4_memmove(dst, src, size) memmove((dst),(src),(size)) 179 // GCC requires memcpy, memmove, memset and memcmp. 181 // > GCC requires the freestanding environment provide memcpy, memmove, memset and memcmp. 182 EXTERN_C void *memmove(void *dst, const void *src, size_t n) { in memmove() function 201 return memmove(dst, src, n); in memcpy()
|
/third_party/node/deps/v8/src/utils/ |
H A D | memcopy.h | 24 // Generated memcpy/memmove for ia32, arm, and mips. 58 memmove(dest, src, size); in MemMove() 79 memmove(dest, src, size); in MemMove() 116 // Fast path for small sizes. The compiler will expand the {memmove} for small in MemMove() 118 // the general {memmove} function. in MemMove() 122 memmove(dest, src, N); \ in MemMove() 142 memmove(dest, src, size); in MemMove()
|
/third_party/toybox/toys/pending/ |
H A D | wget.c | 339 memmove(toybuf, body - 2, len); in wget_main() 341 memmove(toybuf, body, len); in wget_main() 356 memmove(toybuf, toybuf + c_len, len); in wget_main() 374 memmove(toybuf, c + 2, len); in wget_main()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | escaping.cc | 140 memmove(d, octal_start, octal_size); in CUnescapeInternal() 173 memmove(d, hex_start, hex_size); in CUnescapeInternal() 206 memmove(d, hex_start, 5); // u0000 in CUnescapeInternal() 254 memmove(d, hex_start, 9); // U00000000 in CUnescapeInternal()
|
/third_party/ffmpeg/libavcodec/ |
H A D | ra288.c | 104 memmove(ractx->sp_hist + 70, ractx->sp_hist + 75, 36*sizeof(*block)); in decode() 126 memmove(gain_block, gain_block + 1, 9 * sizeof(*gain_block)); in decode() 187 memmove(hist, hist + n, move_size*sizeof(*hist)); in backward_filter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | IntrinsicInst.h | 468 // The common base class for the atomic memset/memmove/memcpy intrinsics 469 // i.e. llvm.element.unordered.atomic.memset/memcpy/memmove 520 // This class wraps the atomic memcpy/memmove intrinsics 521 // i.e. llvm.element.unordered.atomic.memcpy/memmove 550 /// This class represents the atomic memmove intrinsic 551 /// i.e. llvm.element.unordered.atomic.memmove 562 /// This is the common base class for memset/memcpy/memmove. 583 case Intrinsic::memmove: in classof() 606 /// This class wraps the llvm.memcpy/memmove intrinsics. 612 I->getIntrinsicID() == Intrinsic::memmove; in classof() [all...] |
/third_party/alsa-utils/axfer/ |
H A D | frame-cache.c | 24 memmove(buf, buf + offset, size); in align_frames_in_i() 43 memmove(bufs[i], bufs[i] + offset, size); in align_frames_in_n()
|