Include dependency graph for crc32.c:
Go to the source code of this file.
#define
TOLOWER(
x) tolower((unsigned char) (
x))
Macro Definition Documentation
◆ TOLOWER
#define TOLOWER
(
x )
tolower((unsigned char) (
x))
Function Documentation
◆ ltree_crc32_sz()
unsigned int ltree_crc32_sz
(
const char *
buf,
int
size
)
Definition at line 24 of file crc32.c.
25{
28
30 while (size > 0)
31 {
33
35 size--;
36 p++;
37 }
39 return (
unsigned int)
crc;
40}
#define FIN_TRADITIONAL_CRC32(crc)
#define INIT_TRADITIONAL_CRC32(crc)
#define COMP_TRADITIONAL_CRC32(crc, data, len)
References buf, COMP_TRADITIONAL_CRC32, crc, FIN_TRADITIONAL_CRC32, INIT_TRADITIONAL_CRC32, and TOLOWER.
Referenced by gist_te(), hashing(), parse_lquery(), and pushval_asis().