- Timestamp:
- Oct 3, 2006 5:13:22 PM (18 years ago)
- Location:
- pjproject/trunk/pjlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/hash.h
r127 r748 84 84 * 85 85 * @param pool the pool from which the hash table will be allocated from. 86 * @param size the bucket size, which will be round-up to the nearest 2^n +186 * @param size the bucket size, which will be round-up to the nearest 2^n-1 87 87 * 88 88 * @return the hash table. -
pjproject/trunk/pjlib/src/pj/hash.c
r623 r748 116 116 do { 117 117 table_size <<= 1; 118 } while (table_size < =size);118 } while (table_size < size); 119 119 table_size -= 1; 120 120
Note: See TracChangeset
for help on using the changeset viewer.