Searched refs:prev_hash (Results 1 – 7 of 7) sorted by relevance
/external/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 …]
|
/external/libvpx/ |
D | update_libvpx.sh | 42 prev_hash="$(egrep "^Commit: [[:alnum:]]" README.android | awk '{ print $2 }')" 43 echo "prev_hash:$prev_hash" 55 add="$(git diff-index --diff-filter=A $prev_hash | \ 57 delete="$(git diff-index --diff-filter=D $prev_hash | \ 83 if [ -n "$prev_hash" ]; then 90 $prev_hash..$hash)" 98 $hash..$prev_hash)"
|
/external/libaom/ |
D | update_libaom.sh | 47 prev_hash="$(egrep "^Commit: [[:alnum:]]" README.android | awk '{ print $2 }')" 48 echo "prev_hash:$prev_hash" 60 add="$(git diff-index --diff-filter=A $prev_hash | \ 62 delete="$(git diff-index --diff-filter=D $prev_hash | \ 88 if [ -n "$prev_hash" ]; then 95 $prev_hash..$hash)" 103 $hash..$prev_hash)"
|
/external/e2fsprogs/e2fsck/ |
D | rehash.c | 439 ext2_dirhash_t prev_hash; in copy_dir_entries() local 463 prev_hash = 1; in copy_dir_entries() 499 if (ent->hash == prev_hash) in copy_dir_entries() 525 prev_hash = ent->hash; in copy_dir_entries()
|
D | pass2.c | 580 ext2_dirhash_t hash = 0, prev_hash; in parse_int_node() local 640 prev_hash = hash; in parse_int_node() 655 if (hash < prev_hash && in parse_int_node()
|
/external/v8/src/ |
D | objects-debug.cc | 2055 uint32_t prev_hash = 0; in IsSortedNoDuplicates() local 2074 int cmp = CompareKeys(prev_key, prev_hash, prev_kind, prev_attributes, key, in IsSortedNoDuplicates() 2081 prev_hash = hash; in IsSortedNoDuplicates()
|