30
31
#include "ut0byte.h"
32
/* The 'character code' for end of field or string (used
33
/** The 'character code' for end of field or string (used
33
34
in folding records */
34
35
#define UT_END_OF_FIELD 257
36
/************************************************************
37
/********************************************************//**
37
38
This is used to set the random number seed. */
42
ulint seed); /* in: seed */
43
/************************************************************
44
The following function generates a series of 'random' ulint integers. */
43
ulint seed); /*!< in: seed */
44
/********************************************************//**
45
The following function generates a series of 'random' ulint integers.
46
@return the next 'random' number */
47
49
ut_rnd_gen_next_ulint(
48
50
/*==================*/
49
/* out: the next 'random' number */
50
ulint rnd); /* in: the previous random number value */
51
/*************************************************************
51
ulint rnd); /*!< in: the previous random number value */
52
/*********************************************************//**
52
53
The following function generates 'random' ulint integers which
53
54
enumerate the value space (let there be N of them) of ulint integers
54
55
in a pseudo-random fashion. Note that the same integer is repeated
55
always after N calls to the generator. */
56
always after N calls to the generator.
57
@return the 'random' number */
58
60
ut_rnd_gen_ulint(void);
59
61
/*==================*/
60
/* out: the 'random' number */
61
/************************************************************
62
Generates a random integer from a given interval. */
62
/********************************************************//**
63
Generates a random integer from a given interval.
64
@return the 'random' number */
67
/* out: the 'random' number */
68
ulint low, /* in: low limit; can generate also this value */
69
ulint high); /* in: high limit; can generate also this value */
70
/*************************************************************
71
Generates a random iboolean value. */
69
ulint low, /*!< in: low limit; can generate also this value */
70
ulint high); /*!< in: high limit; can generate also this value */
71
/*********************************************************//**
72
Generates a random iboolean value.
73
@return the random value */
74
76
ut_rnd_gen_ibool(void);
75
77
/*=================*/
76
/* out: the random value */
77
/***********************************************************
78
/*******************************************************//**
78
79
The following function generates a hash value for a ulint integer
79
80
to a hash table of size table_size, which should be a prime or some
80
random number to work reliably. */
81
random number to work reliably.
86
ulint key, /* in: value to be hashed */
87
ulint table_size); /* in: hash table size */
88
/*****************************************************************
89
Folds a pair of ulints. */
87
ulint key, /*!< in: value to be hashed */
88
ulint table_size); /*!< in: hash table size */
89
/*************************************************************//**
90
Folds a pair of ulints.
91
@return folded value */
92
94
ut_fold_ulint_pair(
93
95
/*===============*/
94
/* out: folded value */
95
ulint n1, /* in: ulint */
96
ulint n2) /* in: ulint */
97
__attribute__((__const__));
98
/*****************************************************************
96
ulint n1, /*!< in: ulint */
97
ulint n2) /*!< in: ulint */
98
__attribute__((const));
99
/*************************************************************//**
101
@return folded value */
104
/* out: folded value */
105
dulint d) /* in: dulint */
106
__attribute__((__const__));
107
/*****************************************************************
108
Folds a character string ending in the null character. */
106
dulint d) /*!< in: dulint */
107
__attribute__((const));
108
/*************************************************************//**
109
Folds a character string ending in the null character.
110
@return folded value */
113
/* out: folded value */
114
const char* str) /* in: null-terminated string */
115
const char* str) /*!< in: null-terminated string */
115
116
__attribute__((pure));
116
/*****************************************************************
117
Folds a binary string. */
117
/*************************************************************//**
118
Folds a binary string.
119
@return folded value */
122
/* out: folded value */
123
const byte* str, /* in: string of bytes */
124
ulint len) /* in: length */
124
const byte* str, /*!< in: string of bytes */
125
ulint len) /*!< in: length */
125
126
__attribute__((pure));
126
/***************************************************************
127
/***********************************************************//**
127
128
Looks for a prime number slightly greater than the given argument.
128
The prime is chosen so that it is not near any power of 2. */
129
The prime is chosen so that it is not near any power of 2.
134
ulint n) /* in: positive number > 100 */
135
__attribute__((__const__));
135
ulint n) /*!< in: positive number > 100 */
136
__attribute__((const));
138
139
#ifndef UNIV_NONINL