Home
last modified time | relevance | path

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

/external/libvpx/
Dupdate_libvpx.sh42 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/brotli/enc/
Dcompress_fragment_two_pass.c350 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in CreateCommands() local
352 table[prev_hash] = (int)(ip - base_ip - 5); in CreateCommands()
353 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in CreateCommands()
354 table[prev_hash] = (int)(ip - base_ip - 4); in CreateCommands()
355 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in CreateCommands()
356 table[prev_hash] = (int)(ip - base_ip - 3); in CreateCommands()
359 prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in CreateCommands()
360 table[prev_hash] = (int)(ip - base_ip - 2); in CreateCommands()
361 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in CreateCommands()
362 table[prev_hash] = (int)(ip - base_ip - 1); in CreateCommands()
[all …]
Dcompress_fragment.c607 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
609 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
610 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
611 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
612 prev_hash = HashBytesAtOffset(input_bytes, 2, shift); in BrotliCompressFragmentFastImpl()
613 table[prev_hash] = (int)(ip - base_ip - 1); in BrotliCompressFragmentFastImpl()
644 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); in BrotliCompressFragmentFastImpl() local
646 table[prev_hash] = (int)(ip - base_ip - 3); in BrotliCompressFragmentFastImpl()
647 prev_hash = HashBytesAtOffset(input_bytes, 1, shift); in BrotliCompressFragmentFastImpl()
648 table[prev_hash] = (int)(ip - base_ip - 2); in BrotliCompressFragmentFastImpl()
[all …]
/external/e2fsprogs/e2fsck/
Drehash.c439 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()
Dpass2.c558 ext2_dirhash_t hash = 0, prev_hash; in parse_int_node() local
618 prev_hash = hash; in parse_int_node()
633 if (hash < prev_hash && in parse_int_node()
/external/v8/src/
Dobjects-debug.cc1416 uint32_t prev_hash = 0; in IsSortedNoDuplicates() local
1432 int cmp = CompareKeys(prev_key, prev_hash, prev_kind, prev_attributes, key, in IsSortedNoDuplicates()
1439 prev_hash = hash; in IsSortedNoDuplicates()