Home
last modified time | relevance | path

Searched refs:cur_hash (Results 1 – 4 of 4) sorted by relevance

/external/brotli/c/enc/
Dcompress_fragment_two_pass.c353 uint32_t cur_hash; in CreateCommands() local
357 cur_hash = HashBytesAtOffset(input_bytes, 3, shift, min_match); in CreateCommands()
373 cur_hash = HashBytesAtOffset(input_bytes, 2, shift, min_match); in CreateCommands()
380 candidate = base_ip + table[cur_hash]; in CreateCommands()
381 table[cur_hash] = (int)(ip - base_ip); in CreateCommands()
408 uint32_t cur_hash; in CreateCommands() local
412 cur_hash = HashBytesAtOffset(input_bytes, 3, shift, min_match); in CreateCommands()
428 cur_hash = HashBytesAtOffset(input_bytes, 2, shift, min_match); in CreateCommands()
435 candidate = base_ip + table[cur_hash]; in CreateCommands()
436 table[cur_hash] = (int)(ip - base_ip); in CreateCommands()
Dcompress_fragment.c607 uint32_t cur_hash = HashBytesAtOffset(input_bytes, 3, shift); in BrotliCompressFragmentFastImpl() local
614 candidate = base_ip + table[cur_hash]; in BrotliCompressFragmentFastImpl()
615 table[cur_hash] = (int)(ip - base_ip); in BrotliCompressFragmentFastImpl()
644 uint32_t cur_hash = HashBytesAtOffset(input_bytes, 3, shift); in BrotliCompressFragmentFastImpl() local
651 candidate = base_ip + table[cur_hash]; in BrotliCompressFragmentFastImpl()
652 table[cur_hash] = (int)(ip - base_ip); in BrotliCompressFragmentFastImpl()
/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dsig_node.cc290 size_t cur_hash = nodes[n]->GetHighTopoHash(); in FindUniqueHashes() local
291 if (n + 1 < nodes.size() && nodes[n + 1]->GetHighTopoHash() == cur_hash) { in FindUniqueHashes()
296 n + 1 < nodes.size() && nodes[n + 1]->GetHighTopoHash() == cur_hash; in FindUniqueHashes()
/external/autotest/client/site_tests/hardware_TrimIntegrity/
Dhardware_TrimIntegrity.py196 cur_hash = self._get_hash(chunk_count, chunk_size)
202 for cur, ref, trim in zip(cur_hash, ref_hash, trim_status):