FACT++  1.0
JNIEXPORT void JNICALL Java_dim_MutableMemory_copyNativeDataBlock ( JNIEnv *  env,
jclass  nativeClass,
jlong  destinationDataAddress,
jlong  sourceDataAddress,
jint  length 
)

Definition at line 2334 of file dim_jni.c.

References DBGe, and dim_Dbg_MUTABLE_MEMORY.

Referenced by Java_dim_MutableMemory_copyFromDoubleArray().

2335 {
2336  if(env){}
2337  if(nativeClass){}
2338  DBGe(dim_Dbg_MUTABLE_MEMORY) printf("DimJNI: MutableMemory.copyNativeDataBlock\n");
2339  memcpy((void *)destinationDataAddress, (void *)sourceDataAddress, (size_t)length);
2340  return ;
2341 }
#define dim_Dbg_MUTABLE_MEMORY
Definition: dim_jni.c:16
#define DBGe(test)
Definition: dim_jni.c:64

+ Here is the caller graph for this function: