Lines Matching refs:BlockBasedTableOptions
86 {offsetof(struct BlockBasedTableOptions, flush_block_policy_factory), in TEST_F()
88 {offsetof(struct BlockBasedTableOptions, block_cache), in TEST_F()
90 {offsetof(struct BlockBasedTableOptions, persistent_cache), in TEST_F()
92 {offsetof(struct BlockBasedTableOptions, block_cache_compressed), in TEST_F()
94 {offsetof(struct BlockBasedTableOptions, filter_policy), in TEST_F()
104 char* bbto_ptr = new char[sizeof(BlockBasedTableOptions)]; in TEST_F()
109 BlockBasedTableOptions* bbto = new (bbto_ptr) BlockBasedTableOptions(); in TEST_F()
110 FillWithSpecialChar(bbto_ptr, sizeof(BlockBasedTableOptions), kBbtoBlacklist); in TEST_F()
114 *bbto = BlockBasedTableOptions(); in TEST_F()
116 NumUnsetBytes(bbto_ptr, sizeof(BlockBasedTableOptions), kBbtoBlacklist); in TEST_F()
118 bbto->~BlockBasedTableOptions(); in TEST_F()
122 bbto = new (bbto_ptr) BlockBasedTableOptions(); in TEST_F()
123 FillWithSpecialChar(bbto_ptr, sizeof(BlockBasedTableOptions), kBbtoBlacklist); in TEST_F()
127 char* new_bbto_ptr = new char[sizeof(BlockBasedTableOptions)]; in TEST_F()
128 BlockBasedTableOptions* new_bbto = in TEST_F()
129 new (new_bbto_ptr) BlockBasedTableOptions(); in TEST_F()
130 FillWithSpecialChar(new_bbto_ptr, sizeof(BlockBasedTableOptions), in TEST_F()
159 NumUnsetBytes(new_bbto_ptr, sizeof(BlockBasedTableOptions), in TEST_F()
166 bbto->~BlockBasedTableOptions(); in TEST_F()
167 new_bbto->~BlockBasedTableOptions(); in TEST_F()