diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/hashfn.c | 144 | ||||
-rw-r--r-- | src/common/wchar.c | 6 |
2 files changed, 75 insertions, 75 deletions
diff --git a/src/common/hashfn.c b/src/common/hashfn.c index 29c846fcc31..990f18e610b 100644 --- a/src/common/hashfn.c +++ b/src/common/hashfn.c @@ -178,13 +178,13 @@ hash_bytes(const unsigned char *k, int keylen) { case 11: c += ((uint32) k[10] << 8); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 24); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ka[1]; @@ -192,22 +192,22 @@ hash_bytes(const unsigned char *k, int keylen) break; case 7: b += ((uint32) k[6] << 8); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 16); - /* FALLTHROUGH */ + /* fall through */ case 5: b += ((uint32) k[4] << 24); - /* FALLTHROUGH */ + /* fall through */ case 4: a += ka[0]; break; case 3: a += ((uint32) k[2] << 8); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 16); - /* FALLTHROUGH */ + /* fall through */ case 1: a += ((uint32) k[0] << 24); /* case 0: nothing left to add */ @@ -217,13 +217,13 @@ hash_bytes(const unsigned char *k, int keylen) { case 11: c += ((uint32) k[10] << 24); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 8); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ka[1]; @@ -231,22 +231,22 @@ hash_bytes(const unsigned char *k, int keylen) break; case 7: b += ((uint32) k[6] << 16); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 8); - /* FALLTHROUGH */ + /* fall through */ case 5: b += k[4]; - /* FALLTHROUGH */ + /* fall through */ case 4: a += ka[0]; break; case 3: a += ((uint32) k[2] << 16); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 8); - /* FALLTHROUGH */ + /* fall through */ case 1: a += k[0]; /* case 0: nothing left to add */ @@ -280,35 +280,35 @@ hash_bytes(const unsigned char *k, int keylen) { case 11: c += ((uint32) k[10] << 8); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 24); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += k[7]; - /* FALLTHROUGH */ + /* fall through */ case 7: b += ((uint32) k[6] << 8); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 16); - /* FALLTHROUGH */ + /* fall through */ case 5: b += ((uint32) k[4] << 24); - /* FALLTHROUGH */ + /* fall through */ case 4: a += k[3]; - /* FALLTHROUGH */ + /* fall through */ case 3: a += ((uint32) k[2] << 8); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 16); - /* FALLTHROUGH */ + /* fall through */ case 1: a += ((uint32) k[0] << 24); /* case 0: nothing left to add */ @@ -318,35 +318,35 @@ hash_bytes(const unsigned char *k, int keylen) { case 11: c += ((uint32) k[10] << 24); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 8); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ((uint32) k[7] << 24); - /* FALLTHROUGH */ + /* fall through */ case 7: b += ((uint32) k[6] << 16); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 8); - /* FALLTHROUGH */ + /* fall through */ case 5: b += k[4]; - /* FALLTHROUGH */ + /* fall through */ case 4: a += ((uint32) k[3] << 24); - /* FALLTHROUGH */ + /* fall through */ case 3: a += ((uint32) k[2] << 16); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 8); - /* FALLTHROUGH */ + /* fall through */ case 1: a += k[0]; /* case 0: nothing left to add */ @@ -417,13 +417,13 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) { case 11: c += ((uint32) k[10] << 8); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 24); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ka[1]; @@ -431,22 +431,22 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) break; case 7: b += ((uint32) k[6] << 8); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 16); - /* FALLTHROUGH */ + /* fall through */ case 5: b += ((uint32) k[4] << 24); - /* FALLTHROUGH */ + /* fall through */ case 4: a += ka[0]; break; case 3: a += ((uint32) k[2] << 8); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 16); - /* FALLTHROUGH */ + /* fall through */ case 1: a += ((uint32) k[0] << 24); /* case 0: nothing left to add */ @@ -456,13 +456,13 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) { case 11: c += ((uint32) k[10] << 24); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 8); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ka[1]; @@ -470,22 +470,22 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) break; case 7: b += ((uint32) k[6] << 16); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 8); - /* FALLTHROUGH */ + /* fall through */ case 5: b += k[4]; - /* FALLTHROUGH */ + /* fall through */ case 4: a += ka[0]; break; case 3: a += ((uint32) k[2] << 16); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 8); - /* FALLTHROUGH */ + /* fall through */ case 1: a += k[0]; /* case 0: nothing left to add */ @@ -519,35 +519,35 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) { case 11: c += ((uint32) k[10] << 8); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 24); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += k[7]; - /* FALLTHROUGH */ + /* fall through */ case 7: b += ((uint32) k[6] << 8); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 16); - /* FALLTHROUGH */ + /* fall through */ case 5: b += ((uint32) k[4] << 24); - /* FALLTHROUGH */ + /* fall through */ case 4: a += k[3]; - /* FALLTHROUGH */ + /* fall through */ case 3: a += ((uint32) k[2] << 8); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 16); - /* FALLTHROUGH */ + /* fall through */ case 1: a += ((uint32) k[0] << 24); /* case 0: nothing left to add */ @@ -557,35 +557,35 @@ hash_bytes_extended(const unsigned char *k, int keylen, uint64 seed) { case 11: c += ((uint32) k[10] << 24); - /* FALLTHROUGH */ + /* fall through */ case 10: c += ((uint32) k[9] << 16); - /* FALLTHROUGH */ + /* fall through */ case 9: c += ((uint32) k[8] << 8); - /* FALLTHROUGH */ + /* fall through */ case 8: /* the lowest byte of c is reserved for the length */ b += ((uint32) k[7] << 24); - /* FALLTHROUGH */ + /* fall through */ case 7: b += ((uint32) k[6] << 16); - /* FALLTHROUGH */ + /* fall through */ case 6: b += ((uint32) k[5] << 8); - /* FALLTHROUGH */ + /* fall through */ case 5: b += k[4]; - /* FALLTHROUGH */ + /* fall through */ case 4: a += ((uint32) k[3] << 24); - /* FALLTHROUGH */ + /* fall through */ case 3: a += ((uint32) k[2] << 16); - /* FALLTHROUGH */ + /* fall through */ case 2: a += ((uint32) k[1] << 8); - /* FALLTHROUGH */ + /* fall through */ case 1: a += k[0]; /* case 0: nothing left to add */ diff --git a/src/common/wchar.c b/src/common/wchar.c index 352083d7bb1..efaf1c155bb 100644 --- a/src/common/wchar.c +++ b/src/common/wchar.c @@ -1452,12 +1452,12 @@ pg_utf8_islegal(const unsigned char *source, int length) a = source[3]; if (a < 0x80 || a > 0xBF) return false; - /* FALLTHROUGH */ + /* FALL THRU */ case 3: a = source[2]; if (a < 0x80 || a > 0xBF) return false; - /* FALLTHROUGH */ + /* FALL THRU */ case 2: a = source[1]; switch (*source) @@ -1483,7 +1483,7 @@ pg_utf8_islegal(const unsigned char *source, int length) return false; break; } - /* FALLTHROUGH */ + /* FALL THRU */ case 1: a = *source; if (a >= 0x80 && a < 0xC2) |