39+ results for '/memcpy' (0 ms)
Not the results you expected?
particles_data.cpp (https://github.com/Milkyway-at-home/nemo.git) C++ · 181 lines
42 if (m.pos) {
43 pos = (float *) mallocate((char *) pos, sizeof (float) * 3 * (*nbody), true);
44 //memcpy((float *) pos, (float *) m.pos, sizeof(float)* (*nbody) * 3);
45 for (int i=0; i < (*nbody); i++) {
46 pos[i*3] = m.pos[i*3];
52 if (m.vel) {
53 vel = (float *) mallocate((char *) vel, sizeof (float) * 3 * (*nbody), true);
54 //memcpy((float *) vel, (float *) m.vel, sizeof(float)* (*nbody) * 3);
55 for (int i=0; i < (*nbody); i++) {
56 vel[i*3] = m.vel[i*3];
67 if (m.vel_norm) {
68 vel_norm = (float *) mallocate((char *) vel_norm, sizeof (float) * (*nbody), true);
69 //memcpy((float *) vel_norm, (float *) m.vel_norm, sizeof(float)* (*nbody));
70 for (int i=0; i < (*nbody); i++) {
71 vel_norm[i] = m.vel_norm[i];
IntrinsicInst.h (https://bitbucket.org/rlyspn/androidrr.git) C Header · 282 lines
memcpy-s390.S (https://gitlab.com/Namal/glibc) Assembly · 128 lines
make.sh (https://bitbucket.org/jorgenio/libreoffice.git) Shell · 73 lines
60 cc -c -I. -Iunix -Iunix/bsd43 -Iunix/bsd43/vf -O unix/bsd43/setvbuf.c
61 mv setvbuf.o objects
62 cc -c -I. -Iunix -Iunix/bsd43 -Iunix/bsd43/vf -O unix/bsd43/vf/memcpy.c
63 mv memcpy.o objects
64 cc -c -I. -Iunix -Iunix/bsd43 -Iunix/bsd43/vf -O unix/bsd43/vf/vfprintf.c
70 objects/rulparse.o objects/percent.o objects/function.o objects/arlib.o \
71 objects/dirbrk.o objects/rmprq.o objects/ruletab.o objects/runargv.o \
72 objects/dcache.o objects/putenv.o objects/tempnam.o objects/utime.o objects/setvbuf.o objects/memcpy.o objects/vfprintf.o
73 cp unix/bsd43/vf/template.mk startup/config.mk
qbytedata_p.h (https://gitlab.com/x33n/phantomjs) C Header · 246 lines
200-add_libssp_nonshared.patch (https://gitlab.com/kus/lede-nbd-staging) Patch · 50 lines
memcpy.S (https://github.com/DamienCHN/U-BOOT-Damien.git) Assembly · 243 lines
MS3DModelAnimator.cs (https://github.com/Wiladams/NewTOAPIA.git) C# · 346 lines
26 foreach (MS3DJoint joint in fModel.m_joints)
27 {
28 //memcpy(joint.matLocal, joint.matLocalSkeleton, sizeof(joint.matLocal));
29 //memcpy(joint.matGlobal, joint.matGlobalSkeleton, sizeof(joint.matGlobal));
83 if (joint.parentIndex == -1)
84 {
85 //memcpy(joint.matGlobalSkeleton, joint.matLocalSkeleton, sizeof(joint.matGlobalSkeleton));
86 joint.matLocalSkeleton = joint.matGlobalSkeleton;
87 }
Hook.cpp (https://bitbucket.org/quarkbit/mycodes.git) C++ · 691 lines
convert.h (https://bitbucket.org/thelearninglabs/uclinux-distro-tll-public.git) C Header · 668 lines
SuperpoweredAudioBuffers.h (https://gitlab.com/kidaa/Low-Latency-Android-Audio-iOS-Audio-Engine.git) C Header · 194 lines
66 @brief This object manages an audio buffer list.
68 Instead of circular buffers and too many memmove/memcpy, this object maintains an audio buffer "chain". You can append, insert, truncate, slice, extend, etc. this without the expensive memory operations.
69 Check the SuperpoweredOfflineProcessingExample project on how to use.
list.c (https://github.com/gonzoj/motoko.git) C · 242 lines
CMakeLists.txt (https://github.com/GREO/uhd.git) CMake · 47 lines
Crypto.cs (https://github.com/soywiz/cspspemu.git) C# · 1137 lines
12 ((uint) pt[0] << 24) ^ ((uint) pt[1] << 16) ^ ((uint) pt[2] << 8) ^ pt[3];
14 //memcpy(block_buff, src, 16);
15 public static void Memcpy(byte* dst, byte* src, int count) => PointerUtils.Memcpy(dst, src, count);
16 public static void Memcpy(void* dst, void* src, int count) => Memcpy((byte*) dst, (byte*) src, count);
files.mk (https://github.com/ajorgensen/os161.git) Makefile · 446 lines
PacketBuild.h (https://bitbucket.org/Ryfon/mux.git) C Header · 164 lines
42 //unsigned char byPkgType = T_Msg::byPkgType;
43 //unsigned short wCmd = pPkg->wCmd;
44 //memcpy( &(m_InnerBuf[0]), &wPkgLen, 2 );//包长:wPkgLen;
45 //memcpy( &(m_InnerBuf[2]), &byPkgType, 1 );//包类型:byPkgType;
46 //memcpy( &(m_InnerBuf[3]), &wCmd, 2 );//命令字:wCmd;
47 //memcpy( &(m_InnerBuf[5]), pPkg, sizeof(T_Msg) );//包内容;
cde.c (https://github.com/rortian/CDE.git) C · 145 lines
mixed_strategy.c (https://github.com/seclab-ucr/INTANG.git) C · 238 lines
102 //u_char bytes[20] = {0x13,0x12,0xf9,0x89,0x5c,0xdd,0xa6,0x15,0x12,0x83,0x3e,0x93,0x11,0x22,0x33,0x44,0x55,0x66,0x01,0x01};
103 //memcpy(vars.tcp_opt, bytes, 20);
104 //vars.tcp_opt_len = 20;
134 //u_char bytes[20] = {0x13,0x12,0xf9,0x89,0x5c,0xdd,0xa6,0x15,0x12,0x83,0x3e,0x93,0x11,0x22,0x33,0x44,0x55,0x66,0x01,0x01};
135 //memcpy(vars.tcp_opt, bytes, 20);
136 //vars.tcp_opt_len = 20;
b2CircleContact.as (https://github.com/joelhooks/PushButtonEngine.git) ActionScript · 141 lines
CutDomain.java (https://github.com/porkshire/biojava.git) Java · 185 lines
memcpy.S (https://github.com/mstsirkin/linux.git) Assembly · 92 lines
ifunc-impl-list.c (https://gitlab.com/Namal/glibc) C · 376 lines
309 #ifdef SHARED
310 /* Support sysdeps/i386/i686/multiarch/memcpy_chk.S. */
311 IFUNC_IMPL (i, name, __memcpy_chk,
312 IFUNC_IMPL_ADD (array, i, __memcpy_chk,
322 __memcpy_chk_ia32))
324 /* Support sysdeps/i386/i686/multiarch/memcpy.S. */
325 IFUNC_IMPL (i, name, memcpy,
326 IFUNC_IMPL_ADD (array, i, memcpy, HAS_CPU_FEATURE (SSSE3),
Makefile (https://github.com/mturquette/linux.git) Makefile · 45 lines
b2CircleContact.as (https://github.com/GunioRobot/box2d2-js.git) ActionScript · 141 lines
tcp_recv.c (https://gitlab.com/skype/skypeopensource2) C · 189 lines
mutex_c.cs (https://github.com/kumaryu/IronLanguages-main.git) C# · 179 lines
testmem.cpp (https://github.com/papyrussolution/OpenPapyrus.git) C++ · 396 lines
130 A_memcpy(c, a, 4*pagesize);
131 (*memcpyTab[version])(b+bo, b+ao, len);
132 //memcpy(c+bo, c+ao, len); // Most library versions of memcpy are actually memmove
133 memcpySSE2(c+bo, c+ao, len);
134 if (memcmp(b, c, 4*pagesize)) {
146 A_memcpy(c, a, 4*pagesize);
147 (*memcpyTab[version])(b+bo, b+ao, len);
148 //memcpy(c+bo, c+ao, len); // MS Most library versions of memcpy are actually memmove
149 memcpySSE2(c+bo, c+ao, len);
150 if (memcmp(b, c, 4*pagesize)) {
243 A_memcpy(c, a, 4*pagesize);
244 (*memcpyTab[version])(b+bo, b+ao, len);
245 //memcpy(c+bo, c+ao, len); // Most library versions of memcpy are actually memmove
246 memcpySSE2(c+bo, c+ao, len);
247 if (memcmp(b, c, 4*pagesize)) {
memcpy.S (https://gitlab.com/Namal/glibc) Assembly · 167 lines
mips.mk (https://gitlab.com/generic-library/bionic) Makefile · 46 lines
Makefile (https://github.com/jthornber/linux-2.6.git) Makefile · 45 lines
System.h (https://github.com/Vanj-crew/HearthStone-Emu.git) C Header · 122 lines
6 @cite Rob Wyatt http://www.gamasutra.com/features/wyatts_world/19990709/processor_detection_01.htm
7 @cite Benjamin Jurke http://www.flipcode.com/cgi-bin/msg.cgi?showThread=COTD-ProcessorDetectionClass&forum=cotd&id=-1
8 @cite Michael Herf http://www.stereopsis.com/memcpy.html
10 @created 2003-01-25
memcpy.c (https://gitlab.com/PedroFalcato/sortix) C · 113 lines
check-headers.sh (https://github.com/kees/linux.git) Shell · 124 lines
109 # diff with extra ignore lines
110 check arch/x86/lib/memcpy_64.S '-I "^EXPORT_SYMBOL" -I "^#include <asm/export.h>"'
111 check arch/x86/lib/memset_64.S '-I "^EXPORT_SYMBOL" -I "^#include <asm/export.h>"'
112 check include/uapi/asm-generic/mman.h '-I "^#include <\(uapi/\)*asm-generic/mman-common\(-tools\)*.h>"'
Makefile (https://github.com/Estella/eggdrop-1.7.git) Makefile · 50 lines
42 ../../../src/users.h ../../../src/compat/compat.h \
43 ../../../src/compat/inet_aton.h ../../../src/compat/snprintf.h \
44 ../../../src/compat/memset.h ../../../src/compat/memcpy.h \
45 ../../../src/compat/strcasecmp.h ../../../src/compat/strftime.h \
46 ../../../src/mod/modvals.h ../../../src/botmsg.h ../../../src/dcc.h \
hufftable.c (https://github.com/pshved/cil.git) C · 116 lines
Body_skinned.cpp (http://narutortsproject.googlecode.com/svn/trunk/) C++ · 251 lines
ilut_states.c (http://mmo-resourse.googlecode.com/svn/) C · 380 lines
CMakeLists.txt (https://github.com/ggasoftware/indigo.git) CMake · 60 lines
28 if (NOT MSVC)
29 add_library(bingo-postgres-shared SHARED ${PG_AM_src} ${PG_AM_headers} ${PG_COMMON_src} ${PG_COMMON_headers} ${PG_CORE_src} ${PG_CORE_headers} ${Common_SOURCE_DIR}/hacks/memcpy.c $<TARGET_OBJECTS:graph> $<TARGET_OBJECTS:layout> $<TARGET_OBJECTS:molecule> $<TARGET_OBJECTS:common> $<TARGET_OBJECTS:reaction>)
30 else()
31 add_library(bingo-postgres-shared SHARED ${PG_AM_src} ${PG_AM_headers} ${PG_COMMON_src} ${PG_COMMON_headers} ${PG_CORE_src} ${PG_CORE_headers} ${POSTGRES_INCLUDE_DIRS}/port/win32.h $<TARGET_OBJECTS:graph> $<TARGET_OBJECTS:layout> $<TARGET_OBJECTS:molecule> $<TARGET_OBJECTS:common> $<TARGET_OBJECTS:reaction>)