#include "swps3.h"


Go to the source code of this file.
Functions | |
| void * | swps3_createProfileByteAltivec (const char *query, int queryLen, SBMatrix matrix) |
| C version for allocation and computation of a 8-bit integer profile for the given data type and similarity matrix. | |
| void * | swps3_createProfileFloatAltivec (const char *query, int queryLen, SBMatrix matrix) |
| C version for allocation and computation of a 32-bit floating point profile for the given data type and similarity matrix. | |
| void * | swps3_createProfileShortAltivec (const char *query, int queryLen, SBMatrix matrix) |
| C version for allocation and computation of a 16-bit integer profile for the given data type and similarity matrix. | |
| double | swps3_dynProgrByteAltivec (const char *db, int dbLen, void *profile, Options *options) |
| C version of alignment routine for Altivec for signed 8-bit integers. | |
| double | swps3_dynProgrFloatAltivec (const char *db, int dbLen, void *profile, Options *options) |
| C version of alignment routine for Altivec for signed 32-bit floating point values. | |
| double | swps3_dynProgrShortAltivec (const char *db, int dbLen, void *profile, Options *options) |
| C version of alignment routine for Altivec for signed 16-bit integers. | |
Definition in file DynProgr_altivec.h.
| void* swps3_createProfileByteAltivec | ( | const char * | query, | |
| int | queryLen, | |||
| SBMatrix | matrix | |||
| ) |
C version for allocation and computation of a 8-bit integer profile for the given data type and similarity matrix.
| query | The query sequence. | |
| queryLen | The length of the query sequence. | |
| matrix | The similarity matrix. |
Definition at line 774 of file DynProgr_altivec.cc.
Referenced by main().
| void* swps3_createProfileFloatAltivec | ( | const char * | query, | |
| int | queryLen, | |||
| SBMatrix | matrix | |||
| ) |
C version for allocation and computation of a 32-bit floating point profile for the given data type and similarity matrix.
| query | The query sequence. | |
| queryLen | The length of the query sequence. | |
| matrix | The similarity matrix. |
Definition at line 804 of file DynProgr_altivec.cc.
Referenced by main().
| void* swps3_createProfileShortAltivec | ( | const char * | query, | |
| int | queryLen, | |||
| SBMatrix | matrix | |||
| ) |
C version for allocation and computation of a 16-bit integer profile for the given data type and similarity matrix.
| query | The query sequence. | |
| queryLen | The length of the query sequence. | |
| matrix | The similarity matrix. |
Definition at line 789 of file DynProgr_altivec.cc.
Referenced by main().
| double swps3_dynProgrByteAltivec | ( | const char * | db, | |
| int | dbLen, | |||
| void * | profile, | |||
| Options * | options | |||
| ) |
C version of alignment routine for Altivec for signed 8-bit integers.
| db | The database sequence. | |
| dbLen | The length of the database sequence. | |
| profile | A profile data structure previously computed from the query sequence. | |
| options | Some global options. |
DBL_MAX if score exceeds threshold.Definition at line 718 of file DynProgr_altivec.cc.
Referenced by main().
| double swps3_dynProgrFloatAltivec | ( | const char * | db, | |
| int | dbLen, | |||
| void * | profile, | |||
| Options * | options | |||
| ) |
C version of alignment routine for Altivec for signed 32-bit floating point values.
| db | The database sequence. | |
| dbLen | The length of the database sequence. | |
| profile | A profile data structure previously computed from the query sequence. | |
| options | Some global options. |
DBL_MAX if score exceeds threshold.Definition at line 759 of file DynProgr_altivec.cc.
Referenced by main().
| double swps3_dynProgrShortAltivec | ( | const char * | db, | |
| int | dbLen, | |||
| void * | profile, | |||
| Options * | options | |||
| ) |
C version of alignment routine for Altivec for signed 16-bit integers.
| db | The database sequence. | |
| dbLen | The length of the database sequence. | |
| profile | A profile data structure previously computed from the query sequence. | |
| options | Some global options. |
DBL_MAX if score exceeds threshold.Definition at line 738 of file DynProgr_altivec.cc.
Referenced by main().
1.5.4