mirror of
https://github.com/hashcat/hashcat
synced 2025-02-18 06:21:25 +01:00
Refactored standard kernel includes in order to support Apple Metal runtime, updated backend, test units and status code
This commit is contained in:
parent
20eb81fba4
commit
2e4a136758
OpenCL
amp_a0.clamp_a1.clamp_a3.clm00000_a0-optimized.clm00000_a0-pure.clm00000_a1-optimized.clm00000_a1-pure.clm00000_a3-optimized.clm00000_a3-pure.clm00010_a0-optimized.clm00010_a0-pure.clm00010_a1-optimized.clm00010_a1-pure.clm00010_a3-optimized.clm00010_a3-pure.clm00020_a0-optimized.clm00020_a0-pure.clm00020_a1-optimized.clm00020_a1-pure.clm00020_a3-optimized.clm00020_a3-pure.clm00030_a0-optimized.clm00030_a0-pure.clm00030_a1-optimized.clm00030_a1-pure.clm00030_a3-optimized.clm00030_a3-pure.clm00040_a0-optimized.clm00040_a0-pure.clm00040_a1-optimized.clm00040_a1-pure.clm00040_a3-optimized.clm00040_a3-pure.clm00050_a0-optimized.clm00050_a0-pure.clm00050_a1-optimized.clm00050_a1-pure.clm00050_a3-optimized.clm00050_a3-pure.clm00060_a0-optimized.clm00060_a0-pure.clm00060_a1-optimized.clm00060_a1-pure.clm00060_a3-optimized.clm00060_a3-pure.clm00070_a0-optimized.clm00070_a0-pure.clm00070_a1-optimized.clm00070_a1-pure.clm00070_a3-optimized.clm00070_a3-pure.clm00100_a0-optimized.clm00100_a0-pure.clm00100_a1-optimized.clm00100_a1-pure.clm00100_a3-optimized.clm00100_a3-pure.clm00110_a0-optimized.clm00110_a0-pure.clm00110_a1-optimized.clm00110_a1-pure.clm00110_a3-optimized.clm00110_a3-pure.clm00120_a0-optimized.clm00120_a0-pure.clm00120_a1-optimized.clm00120_a1-pure.clm00120_a3-optimized.clm00120_a3-pure.clm00130_a0-optimized.clm00130_a0-pure.clm00130_a1-optimized.clm00130_a1-pure.clm00130_a3-optimized.clm00130_a3-pure.clm00140_a0-optimized.clm00140_a0-pure.clm00140_a1-optimized.clm00140_a1-pure.clm00140_a3-optimized.clm00140_a3-pure.clm00150_a0-optimized.clm00150_a0-pure.clm00150_a1-optimized.clm00150_a1-pure.clm00150_a3-optimized.clm00150_a3-pure.clm00160_a0-optimized.clm00160_a0-pure.clm00160_a1-optimized.clm00160_a1-pure.clm00160_a3-optimized.clm00160_a3-pure.clm00170_a0-optimized.clm00170_a0-pure.clm00170_a1-optimized.clm00170_a1-pure.clm00170_a3-optimized.clm00170_a3-pure.clm00200_a0-optimized.cl
@ -3,13 +3,16 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void amp (GLOBAL_AS pw_t *pws, GLOBAL_AS pw_t *pws_amp, CONSTANT_AS const kernel_rule_t *rules_buf, GLOBAL_AS const pw_t *combs_buf, GLOBAL_AS const bf_t *bfs_buf, const u32 combs_mode, const u64 gid_max)
|
||||
|
@ -3,11 +3,14 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void amp (GLOBAL_AS pw_t *pws, GLOBAL_AS pw_t *pws_amp, GLOBAL_AS const kernel_rule_t *rules_buf, GLOBAL_AS const pw_t *combs_buf, GLOBAL_AS const bf_t *bfs_buf, const u32 combs_mode, const u64 gid_max)
|
||||
|
@ -3,10 +3,13 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void amp (GLOBAL_AS pw_t *pws, GLOBAL_AS pw_t *pws_amp, GLOBAL_AS const kernel_rule_t *rules_buf, GLOBAL_AS const pw_t *combs_buf, CONSTANT_AS bf_t *bfs_buf, const u32 combs_mode, const u64 gid_max)
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00000_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00000_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,14 +5,17 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00000_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00000_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
#define MD5_STEP_REV(f,a,b,c,d,x,t,s) \
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00000_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00010_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00010_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00010_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00010_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
#define MD5_STEP_REV(f,a,b,c,d,x,t,s) \
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00010_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00020_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00020_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00020_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00020_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00020m (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00020_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00030_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00030_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00030_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00030_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
#define MD5_STEP_REV(f,a,b,c,d,x,t,s) \
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00030_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00040_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00040_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00040_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00040_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00040m (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00040_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00050_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00050_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00050_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00060_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00060_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_md5_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00060_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00070_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00070_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00070_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00070_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
#define MD5_STEP_REV(f,a,b,c,d,x,t,s) \
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_md5.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_md5.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00070_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00100_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00100_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00100_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00100_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00100m (u32 *w, const u32 pw_len, KERN_ATTR_VECTOR ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00100_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00110_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00110_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00110_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00110_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00110m (u32 *w, const u32 pw_len, KERN_ATTR_VECTOR ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00110_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00120_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00120_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00120_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00120_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00120m (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00120_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00130_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00130_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00130_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00130_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00130m (u32 *w, const u32 pw_len, KERN_ATTR_VECTOR ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00130_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00140_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00140_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00140_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00140_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00140m (u32 *w0, u32 *w1, u32 *w2, u32 *w3, const u32 pw_len, KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00140_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00150_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00150_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00150_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00160_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00160_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void hmac_sha1_pad (u32x *w0, u32x *w1, u32x *w2, u32x *w3, u32x *ipad, u32x *opad)
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00160_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00170_m04 (KERN_ATTR_RULES ())
|
||||
|
@ -5,15 +5,18 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp.h"
|
||||
#include "inc_rp.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00170_mxx (KERN_ATTR_RULES ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00170_m04 (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_scalar.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_scalar.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00170_mxx (KERN_ATTR_BASIC ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
DECLSPEC void m00170m (u32 *w, const u32 pw_len, KERN_ATTR_VECTOR ())
|
||||
|
@ -5,13 +5,16 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include "inc_hash_sha1.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#include STR(INCLUDE_PATH/inc_hash_sha1.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00170_mxx (KERN_ATTR_VECTOR ())
|
||||
|
@ -6,14 +6,17 @@
|
||||
//incompatible
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#define XSTR(x) #x
|
||||
#define STR(x) XSTR(x)
|
||||
|
||||
#ifdef KERNEL_STATIC
|
||||
#include "inc_vendor.h"
|
||||
#include "inc_types.h"
|
||||
#include "inc_platform.cl"
|
||||
#include "inc_common.cl"
|
||||
#include "inc_rp_optimized.h"
|
||||
#include "inc_rp_optimized.cl"
|
||||
#include "inc_simd.cl"
|
||||
#include STR(INCLUDE_PATH/inc_vendor.h)
|
||||
#include STR(INCLUDE_PATH/inc_types.h)
|
||||
#include STR(INCLUDE_PATH/inc_platform.cl)
|
||||
#include STR(INCLUDE_PATH/inc_common.cl)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.h)
|
||||
#include STR(INCLUDE_PATH/inc_rp_optimized.cl)
|
||||
#include STR(INCLUDE_PATH/inc_simd.cl)
|
||||
#endif
|
||||
|
||||
KERNEL_FQ void m00200_m04 (KERN_ATTR_RULES ())
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user