MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / alglib_align

Function alglib_align

src/ialglib.cpp:19–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17//#define ABLAS_PREFETCH(x)
18
19static void* alglib_align(void *ptr, size_t alignment)
20{
21 char *result;
22 if( alignment<=1 )
23 return ptr;
24 result = (char*)ptr;
25 if( (result-(char*)0)%alignment!=0 )
26 result += alignment - (result-(char*)0)%alignment;
27 return result;
28}
29
30/********************************************************************
31This subroutine calculates fast 32x32 real matrix-vector product:

Callers 8

_i_rmatrixgemmfMethod · 0.85
_i_cmatrixgemmfMethod · 0.85
_i_cmatrixrighttrsmfMethod · 0.85
_i_rmatrixrighttrsmfMethod · 0.85
_i_cmatrixlefttrsmfMethod · 0.85
_i_rmatrixlefttrsmfMethod · 0.85
_i_cmatrixsyrkfMethod · 0.85
_i_rmatrixsyrkfMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected