Home
last modified time | relevance | path

Searched refs:prev_hash (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/brotli/c/enc/
Dcompress_fragment_two_pass.c354 uint32_t prev_hash; in CreateCommands() local
358 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
359 table[prev_hash] = (int)(ip - base_ip - 3); in CreateCommands()
360 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
361 table[prev_hash] = (int)(ip - base_ip - 2); in CreateCommands()
362 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
363 table[prev_hash] = (int)(ip - base_ip - 1); in CreateCommands()
366 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
367 table[prev_hash] = (int)(ip - base_ip - 5); in CreateCommands()
368 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
[all …]
Dcompress_fragment.c606 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
608 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
609 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
610 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
611 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in BrotliCompressFragmentFastImpl()
612 table[prev_hash] = (int)(ip - base_ip - 1); in BrotliCompressFragmentFastImpl()
643 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
645 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
646 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
647 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
[all …]
/third_party/node/deps/brotli/c/enc/
Dcompress_fragment_two_pass.c354 uint32_t prev_hash; in CreateCommands() local
358 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
359 table[prev_hash] = (int)(ip - base_ip - 3); in CreateCommands()
360 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
361 table[prev_hash] = (int)(ip - base_ip - 2); in CreateCommands()
362 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
363 table[prev_hash] = (int)(ip - base_ip - 1); in CreateCommands()
366 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match); in CreateCommands()
367 table[prev_hash] = (int)(ip - base_ip - 5); in CreateCommands()
368 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match); in CreateCommands()
[all …]
Dcompress_fragment.c606 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
608 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
609 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
610 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
611 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in BrotliCompressFragmentFastImpl()
612 table[prev_hash] = (int)(ip - base_ip - 1); in BrotliCompressFragmentFastImpl()
643 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
645 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
646 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
647 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
[all …]
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc2098 uint32_t prev_hash = 0; in IsSortedNoDuplicates() local
2118 int cmp = CompareKeys(prev_key, prev_hash, prev_kind, prev_attributes, key, in IsSortedNoDuplicates()
2125 prev_hash = hash; in IsSortedNoDuplicates()