World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
Файл common.h

См. исходные тексты.

Функции

av_const int av_log2 (unsigned v)
 
av_const int av_log2_16bit (unsigned v)
 
static av_always_inline av_const int av_clip_c (int a, int amin, int amax)
 
static av_always_inline av_const int64_t av_clip64_c (int64_t a, int64_t amin, int64_t amax)
 
static av_always_inline av_const uint8_t av_clip_uint8_c (int a)
 
static av_always_inline av_const int8_t av_clip_int8_c (int a)
 
static av_always_inline av_const uint16_t av_clip_uint16_c (int a)
 
static av_always_inline av_const int16_t av_clip_int16_c (int a)
 
static av_always_inline av_const int32_t av_clipl_int32_c (int64_t a)
 
static av_always_inline av_const int av_clip_intp2_c (int a, int p)
 
static av_always_inline av_const unsigned av_clip_uintp2_c (int a, int p)
 
static av_always_inline av_const unsigned av_mod_uintp2_c (unsigned a, unsigned p)
 
static av_always_inline int av_sat_add32_c (int a, int b)
 
static av_always_inline int av_sat_dadd32_c (int a, int b)
 
static av_always_inline int av_sat_sub32_c (int a, int b)
 
static av_always_inline int av_sat_dsub32_c (int a, int b)
 
static av_always_inline av_const float av_clipf_c (float a, float amin, float amax)
 
static av_always_inline av_const double av_clipd_c (double a, double amin, double amax)
 
static av_always_inline av_const int av_ceil_log2_c (int x)
 
static av_always_inline av_const int av_popcount_c (uint32_t x)
 
static av_always_inline av_const int av_popcount64_c (uint64_t x)
 
static av_always_inline av_const int av_parity_c (uint32_t v)
 

Подробное описание

common internal and external API header

См. определение в файле common.h

Функции

◆ av_log2()

av_const int av_log2 ( unsigned  v)

Используется в av_ceil_log2_c().

+ Граф вызова функции:

◆ av_log2_16bit()

av_const int av_log2_16bit ( unsigned  v)

◆ av_clip_c()

static av_always_inline av_const int av_clip_c ( int  a,
int  amin,
int  amax 
)
static

Clip a signed integer value into the amin-amax range.

Аргументы
avalue to clip
aminminimum value of the clip range
amaxmaximum value of the clip range
Возвращает
clipped value

См. определение в файле common.h строка 127

128 {
129 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
130  if (amin > amax) abort();
131 #endif
132  if (a < amin) return amin;
133  else if (a > amax) return amax;
134  else return a;
135 }

◆ av_clip64_c()

static av_always_inline av_const int64_t av_clip64_c ( int64_t  a,
int64_t  amin,
int64_t  amax 
)
static

Clip a signed 64bit integer value into the amin-amax range.

Аргументы
avalue to clip
aminminimum value of the clip range
amaxmaximum value of the clip range
Возвращает
clipped value

См. определение в файле common.h строка 144

145 {
146 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
147  if (amin > amax) abort();
148 #endif
149  if (a < amin) return amin;
150  else if (a > amax) return amax;
151  else return a;
152 }

◆ av_clip_uint8_c()

static av_always_inline av_const uint8_t av_clip_uint8_c ( int  a)
static

Clip a signed integer value into the 0-255 range.

Аргументы
avalue to clip
Возвращает
clipped value

См. определение в файле common.h строка 159

160 {
161  if (a&(~0xFF)) return (~a)>>31;
162  else return a;
163 }

◆ av_clip_int8_c()

static av_always_inline av_const int8_t av_clip_int8_c ( int  a)
static

Clip a signed integer value into the -128,127 range.

Аргументы
avalue to clip
Возвращает
clipped value

См. определение в файле common.h строка 170

171 {
172  if ((a+0x80U) & ~0xFF) return (a>>31) ^ 0x7F;
173  else return a;
174 }

◆ av_clip_uint16_c()

static av_always_inline av_const uint16_t av_clip_uint16_c ( int  a)
static

Clip a signed integer value into the 0-65535 range.

Аргументы
avalue to clip
Возвращает
clipped value

См. определение в файле common.h строка 181

182 {
183  if (a&(~0xFFFF)) return (~a)>>31;
184  else return a;
185 }

◆ av_clip_int16_c()

static av_always_inline av_const int16_t av_clip_int16_c ( int  a)
static

Clip a signed integer value into the -32768,32767 range.

Аргументы
avalue to clip
Возвращает
clipped value

См. определение в файле common.h строка 192

193 {
194  if ((a+0x8000U) & ~0xFFFF) return (a>>31) ^ 0x7FFF;
195  else return a;
196 }

◆ av_clipl_int32_c()

static av_always_inline av_const int32_t av_clipl_int32_c ( int64_t  a)
static

Clip a signed 64-bit integer value into the -2147483648,2147483647 range.

Аргументы
avalue to clip
Возвращает
clipped value

См. определение в файле common.h строка 203

204 {
205  if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (int32_t)((a>>63) ^ 0x7FFFFFFF);
206  else return (int32_t)a;
207 }

◆ av_clip_intp2_c()

static av_always_inline av_const int av_clip_intp2_c ( int  a,
int  p 
)
static

Clip a signed integer into the -(2^p),(2^p-1) range.

Аргументы
avalue to clip
pbit position to clip at
Возвращает
clipped value

См. определение в файле common.h строка 215

216 {
217  if (((unsigned)a + (1 << p)) & ~((2 << p) - 1))
218  return (a >> 31) ^ ((1 << p) - 1);
219  else
220  return a;
221 }

◆ av_clip_uintp2_c()

static av_always_inline av_const unsigned av_clip_uintp2_c ( int  a,
int  p 
)
static

Clip a signed integer to an unsigned power of two range.

Аргументы
avalue to clip
pbit position to clip at
Возвращает
clipped value

См. определение в файле common.h строка 229

230 {
231  if (a & ~((1<<p) - 1)) return (~a) >> 31 & ((1<<p) - 1);
232  else return a;
233 }

◆ av_mod_uintp2_c()

static av_always_inline av_const unsigned av_mod_uintp2_c ( unsigned  a,
unsigned  p 
)
static

Clear high bits from an unsigned integer starting with specific bit position

Аргументы
avalue to clip
pbit position to clip at
Возвращает
clipped value

См. определение в файле common.h строка 241

242 {
243  return a & ((1 << p) - 1);
244 }

◆ av_sat_add32_c()

static av_always_inline int av_sat_add32_c ( int  a,
int  b 
)
static

Add two signed 32-bit values with saturation.

Аргументы
aone value
banother value
Возвращает
sum with signed saturation

См. определение в файле common.h строка 253

254 {
255  return av_clipl_int32((int64_t)a + b);
256 }

◆ av_sat_dadd32_c()

static av_always_inline int av_sat_dadd32_c ( int  a,
int  b 
)
static

Add a doubled value to another value with saturation at both stages.

Аргументы
afirst value
bvalue doubled and added to a
Возвращает
sum sat(a + sat(2*b)) with signed saturation

См. определение в файле common.h строка 265

266 {
267  return av_sat_add32(a, av_sat_add32(b, b));
268 }

◆ av_sat_sub32_c()

static av_always_inline int av_sat_sub32_c ( int  a,
int  b 
)
static

Subtract two signed 32-bit values with saturation.

Аргументы
aone value
banother value
Возвращает
difference with signed saturation

См. определение в файле common.h строка 277

278 {
279  return av_clipl_int32((int64_t)a - b);
280 }

◆ av_sat_dsub32_c()

static av_always_inline int av_sat_dsub32_c ( int  a,
int  b 
)
static

Subtract a doubled value from another value with saturation at both stages.

Аргументы
afirst value
bvalue doubled and subtracted from a
Возвращает
difference sat(a - sat(2*b)) with signed saturation

См. определение в файле common.h строка 289

290 {
291  return av_sat_sub32(a, av_sat_add32(b, b));
292 }

◆ av_clipf_c()

static av_always_inline av_const float av_clipf_c ( float  a,
float  amin,
float  amax 
)
static

Clip a float value into the amin-amax range.

Аргументы
avalue to clip
aminminimum value of the clip range
amaxmaximum value of the clip range
Возвращает
clipped value

См. определение в файле common.h строка 301

302 {
303 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
304  if (amin > amax) abort();
305 #endif
306  if (a < amin) return amin;
307  else if (a > amax) return amax;
308  else return a;
309 }

◆ av_clipd_c()

static av_always_inline av_const double av_clipd_c ( double  a,
double  amin,
double  amax 
)
static

Clip a double value into the amin-amax range.

Аргументы
avalue to clip
aminminimum value of the clip range
amaxmaximum value of the clip range
Возвращает
clipped value

См. определение в файле common.h строка 318

319 {
320 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
321  if (amin > amax) abort();
322 #endif
323  if (a < amin) return amin;
324  else if (a > amax) return amax;
325  else return a;
326 }

◆ av_ceil_log2_c()

static av_always_inline av_const int av_ceil_log2_c ( int  x)
static

Compute ceil(log2(x)).

Аргументы
xvalue used to compute ceil(log2(x))
Возвращает
computed ceiling of log2(x)

См. определение в файле common.h строка 332

333 {
334  return av_log2((x - 1) << 1);
335 }

Перекрестные ссылки av_log2().

+ Граф вызовов:

◆ av_popcount_c()

static av_always_inline av_const int av_popcount_c ( uint32_t  x)
static

Count number of bits set to one in x

Аргументы
xvalue to count bits of
Возвращает
the number of bits set to one in x

См. определение в файле common.h строка 342

343 {
344  x -= (x >> 1) & 0x55555555;
345  x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
346  x = (x + (x >> 4)) & 0x0F0F0F0F;
347  x += x >> 8;
348  return (x + (x >> 16)) & 0x3F;
349 }

◆ av_popcount64_c()

static av_always_inline av_const int av_popcount64_c ( uint64_t  x)
static

Count number of bits set to one in x

Аргументы
xvalue to count bits of
Возвращает
the number of bits set to one in x

См. определение в файле common.h строка 356

357 {
358  return av_popcount((uint32_t)x) + av_popcount((uint32_t)(x >> 32));
359 }

◆ av_parity_c()

static av_always_inline av_const int av_parity_c ( uint32_t  v)
static

См. определение в файле common.h строка 361

362 {
363  return av_popcount(v) & 1;
364 }
v
const GLdouble * v
Definition: SDL_opengl.h:2064
int64_t
__int64 int64_t
Definition: alext.h:31
p
GLfloat GLfloat p
Definition: SDL_opengl_glext.h:11093
x
EGLSurface EGLint x
Definition: SDL_egl.h:1596
int32_t
signed __int32 int32_t
Definition: SDL_config.h:38
av_log2
av_const int av_log2(unsigned v)
b
GLboolean GLboolean GLboolean b
Definition: SDL_opengl_glext.h:1112
a
GLboolean GLboolean GLboolean GLboolean a
Definition: SDL_opengl_glext.h:1112
uint32_t
unsigned __int32 uint32_t
Definition: SDL_config.h:39