Searched refs:prev_hash (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/brotli/c/enc/ |
D | compress_fragment_two_pass.c | 354 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 …]
|
D | compress_fragment.c | 606 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/skia/third_party/externals/brotli/c/enc/ |
D | compress_fragment_two_pass.c | 354 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 …]
|
D | compress_fragment.c | 606 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/e2fsprogs/e2fsck/ |
D | rehash.c | 547 ext2_dirhash_t prev_hash; in copy_dir_entries() local 573 prev_hash = 1; in copy_dir_entries() 610 if (ent->hash == prev_hash) in copy_dir_entries() 641 prev_hash = ent->hash; in copy_dir_entries()
|
D | pass2.c | 647 ext2_dirhash_t hash = 0, prev_hash; in parse_int_node() local 707 prev_hash = hash; in parse_int_node() 722 if (hash < prev_hash && in parse_int_node()
|