Lines Matching defs:ghist_words
65 ghist_words(ghist_length/block_size+1, 0),
548 std::vector<unsigned int> &ghist_words = threadData[tid]->ghist_words;
554 bool ab_new = (ghist_words[i] >> (blockSize - 1)) & 1;
555 ghist_words[i] <<= 1;
556 ghist_words[i] |= ab;
557 ghist_words[i] &= (1 << blockSize) - 1;
718 assert(threadData[tid]->ghist_words.size() > 0);
720 unsigned int a = threadData[tid]->ghist_words[i];
726 threadData[tid]->ghist_words[i] = a;