Searched defs:memcpy (Results 1 - 25 of 40) sorted by relevance

12

/external/linux-tools-perf/perf-3.12.0/arch/arm64/lib/
H A Dmemcpy.S30 ENTRY(memcpy) function
53 ENDPROC(memcpy)
/external/linux-tools-perf/perf-3.12.0/arch/avr32/lib/
H A Dmemcpy.S10 * void *memcpy(void *to, const void *from, unsigned long n)
19 .global memcpy
20 .type memcpy, @function
21 memcpy: label
/external/linux-tools-perf/perf-3.12.0/arch/c6x/lib/
H A Dmemcpy_64plus.S15 ENTRY(memcpy) function
46 ENDPROC(memcpy)
/external/linux-tools-perf/perf-3.12.0/arch/sh/lib/
H A Dmemcpy-sh4.S2 * "memcpy" implementation of SuperH
6 * Modified from memcpy.S and micro-optimised for SH4
13 * void *memcpy(void *dst, const void *src, size_t n);
159 ENTRY(memcpy) function
H A Dmemcpy.S1 /* $Id: memcpy.S,v 1.3 2001/07/27 11:50:52 gniibe Exp $
3 * "memcpy" implementation of SuperH
10 * void *memcpy(void *dst, const void *src, size_t n);
15 ENTRY(memcpy) function
/external/linux-tools-perf/perf-3.12.0/arch/x86/lib/
H A Dmemcpy_64.S10 * memcpy - Copy a memory block.
41 * memcpy_c_e() - enhanced fast string memcpy. This is faster and simpler than
57 ENTRY(memcpy) function
184 ENDPROC(memcpy)
192 * original memcpy().
193 * Otherwise, original memcpy() is used.
197 * Replace only beginning, memcpy is used to apply alternatives,
202 altinstruction_entry memcpy,.Lmemcpy_c,X86_FEATURE_REP_GOOD,\
204 altinstruction_entry memcpy,.Lmemcpy_c_e,X86_FEATURE_ERMS, \
/external/linux-tools-perf/perf-3.12.0/arch/arm/lib/
H A Dmemcpy.S2 * linux/arch/arm/lib/memcpy.S
57 /* Prototype: void *memcpy(void *dest, const void *src, size_t n); */
59 ENTRY(memcpy) function
63 ENDPROC(memcpy)
/external/linux-tools-perf/perf-3.12.0/arch/m32r/lib/
H A Dmemcpy.S2 * linux/arch/m32r/lib/memcpy.S
21 ENTRY(memcpy) function
59 ENTRY(memcpy) function
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dmem-memcpy-x86-64-asm.S1 #define memcpy MEMCPY /* don't hide glibc's memcpy() */ define
/external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
H A Dmemcpy.S0 /* memcpy.S: optimised assembly memcpy
18 # void *memcpy(void *to, const char *from, size_t count)
24 .globl memcpy,__memcpy_end
25 .type memcpy,@function
26 memcpy: label
98 .size memcpy, __memcpy_end-memcpy
116 # abuse memcpy to do the dirty work
117 call memcpy
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/mn10300/lib/
H A Dmemcpy.S18 # void *memcpy(void *dst, const void *src, size_t n)
21 .globl memcpy
22 .type memcpy,@function
23 memcpy: label
135 .size memcpy, memcpy_end-memcpy
/external/linux-tools-perf/perf-3.12.0/arch/tile/lib/
H A Dmemcpy_32.S19 * This file shares the implementation of the userspace memcpy and
20 * the kernel's memcpy, copy_to_user and copy_from_user.
76 ENTRY(memcpy) function
77 .type memcpy, @function
80 .size memcpy, . - memcpy
134 /* For memcpy return original dest address, else zero. */
489 /* For memcpy return original dest address, else zero. */
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Darray.pxd50 memset, memchr, memcmp, memcpy, memmove namespace
140 memcpy(op.data.as_chars, self.data.as_chars, Py_SIZE(op) * op.ob_descr.itemsize)
150 memcpy(self.data.as_chars + origsize * itemsize, stuff, n * itemsize)
/external/chromium_org/sandbox/win/src/
H A Dsandbox_nt_types.h34 memcpyFunction memcpy; member in struct:sandbox::NtExports
/external/nanopb-c/extra/
H A Dpb_syshdr.h82 static void * memcpy( void *s1, const void *s2, size_t n ) function
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
H A Dvpx_mem.h116 # define memcpy vpx_memcpy macro
162 # define vpx_memcpy memcpy
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dbackground_noise.cc14 #include <string.h> // memcpy
58 memcpy(temp_signal,
154 memcpy(channel_parameters_[channel].filter_state, input,
232 memcpy(parameters.filter, lpc_coefficients,
234 memcpy(parameters.filter_state, filter_state,
126 assert(channel < num_channels_); return channel_parameters_[channel].energy; } void BackgroundNoise::SetMuteFactor(size_t channel, int16_t value) { assert(channel < num_channels_); channel_parameters_[channel].mute_factor = value; } int16_t BackgroundNoise::MuteFactor(size_t channel) const { assert(channel < num_channels_); return channel_parameters_[channel].mute_factor; } const int16_t* BackgroundNoise::Filter(size_t channel) const { assert(channel < num_channels_); return channel_parameters_[channel].filter; } const int16_t* BackgroundNoise::FilterState(size_t channel) const { assert(channel < num_channels_); return channel_parameters_[channel].filter_state; } void BackgroundNoise::SetFilterState(size_t channel, const int16_t* input, size_t length) { assert(channel < num_channels_); length = std::min(length, static_cast<size_t>(kMaxLpcOrder)); memcpy(channel_parameters_[channel].filter_state, input, length * sizeof(int16_t)); } int16_t BackgroundNoise::Scale(size_t channel) const { assert(channel < num_channels_); return channel_parameters_[channel].scale; } int16_t BackgroundNoise::ScaleShift(size_t channel) const { assert(channel < num_channels_); return channel_parameters_[channel].scale_shift; } int32_t BackgroundNoise::CalculateAutoCorrelation( const int16_t* signal, int length, int32_t* auto_correlation) const { int16_t signal_max = WebRtcSpl_MaxAbsValueW16(signal, length); int correlation_scale = kLogVecLen - WebRtcSpl_NormW32(signal_max * signal_max); correlation_scale = std::max(0, correlation_scale); static const int kCorrelationStep = -1; WebRtcSpl_CrossCorrelation(auto_correlation, signal, signal, length, kMaxLpcOrder + 1, correlation_scale, kCorrelationStep); int energy_sample_shift = kLogVecLen - correlation_scale; return auto_correlation[0] >> energy_sample_shift; } void BackgroundNoise::IncrementEnergyThreshold(size_t channel, int32_t sample_energy) { assert(channel < num_channels_); ChannelParameters& parameters = channel_parameters_[channel]; int32_t temp_energy = WEBRTC_SPL_MUL_16_16_RSFT(kThresholdIncrement, parameters.low_energy_update_threshold, 16); temp_energy += kThresholdIncrement * (parameters.energy_update_threshold & 0xFF); temp_energy += (kThresholdIncrement * ((parameters.energy_update_threshold>>8) & 0xFF)) << 8; parameters.low_energy_update_threshold += temp_energy; parameters.energy_update_threshold += kThresholdIncrement * (parameters.energy_update_threshold>>16); parameters.energy_update_threshold += parameters.low_energy_update_threshold >> 16; parameters.low_energy_update_threshold = parameters.low_energy_update_threshold & 0x0FFFF; parameters.max_energy = parameters.max_energy - (parameters.max_energy >> 10); if (sample_energy > parameters.max_energy) argument
/external/e2fsprogs/e2fsck/
H A Dmtrace.h87 #ifndef memcpy
88 #define memcpy(d, s, n) bcopy ((s), (d), (n)) macro
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h113 # define memcpy vpx_memcpy macro
159 # define vpx_memcpy memcpy
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h51 #define memcpy(_dd,_ss,_sz) VG_(memcpy)((_dd),(_ss),(_sz)) macro
/external/compiler-rt/lib/asan/
H A Dasan_dll_thunk.cc314 INTERCEPT_LIBRARY_FUNCTION(memcpy); variable
/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemcpy.S23 * library function for memcpy where length bytes are copied from
58 * void * memcpy(char * ptr_out, char * ptr_in, int length) {
64 * Optimized memcpy function
66 * void * memcpy(char * ptr_out, char * ptr_in, int len) {
195 .global memcpy
196 .type memcpy, @function
197 memcpy: label
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_qsort.c65 #ifdef memcpy
66 #undef memcpy macro
68 #define memcpy SDL_memcpy macro
261 memcpy(pivot,first,size); \
263 memcpy(test,pivot,size); \
338 memcpy(pivot,mid,size);
369 memcpy(pivot,mid,size);
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c49 void* VG_(memcpy)(void *d, const void *s, SizeT sz) function
50 { return memcpy(d, s, sz); }
H A Dunit_vc.c37 void* VG_(memcpy)(void *d, const void *s, SizeT sz) function
38 { return memcpy(d, s, sz); }

Completed in 1995 milliseconds

12