Searched refs:memcpy (Results 301 - 325 of 4597) sorted by relevance

<<11121314151617181920>>

/external/elfutils/0.153/libelf/
H A Dgelf_getverdaux.c96 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getverdef.c96 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getvernaux.c99 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getverneed.c99 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_update_verdaux.c94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdaux));
H A Dgelf_update_verdef.c94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdef));
H A Dgelf_update_vernaux.c94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Vernaux));
H A Dgelf_update_verneed.c94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verneed));
H A Dnote_xlate.h75 memcpy (dest, src, namesz + descsz);
/external/jpeg/
H A Djinclude.h52 * Some systems may declare memset and memcpy in <memory.h>.
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/external/libhevc/common/
H A Dihevc_padding.c99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
100 memcpy(pu1_src + (ht + row - 1) * src_strd,
277 memcpy(pu1_src - row * src_strd, pu1_src, wd);
331 memcpy(pu1_src + (row - 1) * src_strd,
/external/libhevc/decoder/
H A Dihevcd_version.c121 memcpy(pc_version_string, ac_version_tmp, (strlen(ac_version_tmp) + 1));
/external/libopus/celt/
H A Dos_support.h72 #define OPUS_COPY(dst, src, n) (memcpy((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
/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/mesa3d/src/gallium/auxiliary/util/
H A Du_memory.h75 memcpy(dup, src, size);
/external/mesa3d/src/glx/apple/
H A Dapple_glapi.c61 memcpy(__applegl_api, __ogl_framework_api, sizeof(struct _glapi_table));
/external/mesa3d/src/mapi/mapi/
H A Dentry_x86_tsd.h97 memcpy(code, code_templ, X86_ENTRY_SIZE);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_stipple.c75 memcpy(st->state.poly_stipple, ctx->PolygonStipple, sz);
/external/nanopb-c/extra/
H A Dpb_syshdr.h82 static void * memcpy( void *s1, const void *s2, size_t n ) function
/external/oprofile/libutil/
H A Dop_growable_buffer.c45 memcpy(b->p + old_size, data, len);
/external/ppp/pppd/plugins/rp-pppoe/
H A Ddiscovery.c62 memcpy(&tmp, data, len);
150 memcpy(conn->cookie.payload, data, len);
164 memcpy(conn->relayId.payload, data, len);
229 memcpy(conn->relayId.payload, data, len);
260 memcpy(packet.ethHdr.h_source, conn->myEth, ETH_ALEN);
273 memcpy(svc->payload, conn->serviceName, strlen(conn->serviceName));
283 memcpy(hostUniq.payload, &pid, sizeof(pid));
285 memcpy(cursor, &hostUniq, sizeof(pid) + TAG_HDR_SIZE);
386 memcpy(conn->peerEth, packet.ethHdr.h_source, ETH_ALEN);
429 memcpy(packe
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djinclude.h52 * Some systems may declare memset and memcpy in <memory.h>.
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/external/skia/src/core/
H A DSkDataTable.cpp107 memcpy(elem, ptrs[i], sizes[i]);
122 memcpy(buffer, array, bufferSize);
163 memcpy(dst, src, size);
179 memcpy(dir, fDir.begin(), count * sizeof(SkDataTable::Dir));
/external/srec/shared/src/
H A DCircularBuffer.c71 memcpy(data, bufferData + buffer->readIdx, nbRead);
81 memcpy(((unsigned char *) data) + nbRead, bufferData + buffer->readIdx, toRead);
131 memcpy(bufferData + buffer->writeIdx, data, nbWritten);
141 memcpy(bufferData + buffer->writeIdx, ((unsigned char*) data) + nbWritten, toWrite);
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h4 #include <cstring> // memcpy
198 memcpy(fragmentationOffset, header.fragmentationOffset,
203 memcpy(fragmentationLength, header.fragmentationLength,
208 memcpy(fragmentationTimeDiff, header.fragmentationTimeDiff,
213 memcpy(fragmentationPlType, header.fragmentationPlType,
231 memcpy(fragmentationOffset,oldOffsets, sizeof(WebRtc_UWord32) * oldVectorSize);
240 memcpy(fragmentationLength, oldLengths,
250 memcpy(fragmentationTimeDiff, oldTimeDiffs,
260 memcpy(fragmentationPlType, oldTimePlTypes,
329 memcpy(payloadDat
[all...]

Completed in 1751 milliseconds

<<11121314151617181920>>