Home
last modified time | relevance | path

Searched refs:generation8 (Results 1 – 2 of 2) sorted by relevance

/dports/games/stockfish/Stockfish-sf_14/src/
H A Dtt.cpp52 genBound8 = (uint8_t)(TT.generation8 | uint8_t(pv) << 2 | b); in save()
128 … tte[i].genBound8 = uint8_t(generation8 | (tte[i].genBound8 & (GENERATION_DELTA - 1))); // Refresh in probe()
141 … if ( replace->depth8 - ((GENERATION_CYCLE + generation8 - replace->genBound8) & GENERATION_MASK) in probe()
142 … > tte[i].depth8 - ((GENERATION_CYCLE + generation8 - tte[i].genBound8) & GENERATION_MASK)) in probe()
157 … cnt += table[i].entry[j].depth8 && (table[i].entry[j].genBound8 & GENERATION_MASK) == generation8; in hashfull()
H A Dtt.h85 void new_search() { generation8 += GENERATION_DELTA; } // Lower bits are used for other things in new_search()
100 uint8_t generation8; // Size must be not bigger than TTEntry::genBound8 variable