PostgreSQL Source Code  git master
dynahash.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int my_log2 (long num)
 

Function Documentation

◆ my_log2()

int my_log2 ( long  num)

Definition at line 1751 of file dynahash.c.

1752 {
1753  /*
1754  * guard against too-large input, which would be invalid for
1755  * pg_ceil_log2_*()
1756  */
1757  if (num > LONG_MAX / 2)
1758  num = LONG_MAX / 2;
1759 
1760 #if SIZEOF_LONG < 8
1761  return pg_ceil_log2_32(num);
1762 #else
1763  return pg_ceil_log2_64(num);
1764 #endif
1765 }
static uint64 pg_ceil_log2_64(uint64 num)
Definition: pg_bitutils.h:271
static uint32 pg_ceil_log2_32(uint32 num)
Definition: pg_bitutils.h:258

References pg_ceil_log2_32(), and pg_ceil_log2_64().

Referenced by ExecHashTableCreate(), ExecParallelHashTableSetCurrentBatch(), hash_choose_num_partitions(), hash_create(), MultiExecParallelHash(), next_pow2_int(), next_pow2_long(), and subxact_info_read().