]>
git.zerfleddert.de Git - proxmark3-svn/blob - common/bucketsort.h
6 typedef struct bucket
{
11 typedef bucket_t bucket_array_t
[2][0x100];
13 typedef struct bucket_info
{
15 uint32_t *head
, *tail
;
16 } bucket_info
[2][0x100];
21 bool bucket_malloc(bucket_array_t bucket
);
22 void bucket_free(bucket_array_t bucket
);
23 void bucket_sort_intersect(uint32_t* const estart
, uint32_t* const estop
,
24 uint32_t* const ostart
, uint32_t* const ostop
,
25 bucket_info_t
*bucket_info
, bucket_array_t bucket
);