16 lines
359 B
C
16 lines
359 B
C
#pragma once
|
|
#include "../test_cases/test_cases.h"
|
|
|
|
typedef uint64_t(*TypeSmall)(void);
|
|
|
|
typedef uint64_t (*TypeBranch)(uint64_t);
|
|
|
|
typedef uint64_t (*TypeRip_relative)(void);
|
|
|
|
typedef void (*TypeAVX)(float num, void* res);
|
|
|
|
typedef uint32_t (*TypeRDRAND)(void);
|
|
|
|
typedef uint32_t (*TypeLoop)(uint32_t num);
|
|
|
|
typedef uint32_t (*TypeTailRecursion)(uint32_t x); |