HomeSort by relevance Sort by last modified time
    Searched refs:prev_hash (Results 1 - 7 of 7) sorted by null

  /external/libvpx/
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/
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/brotli/c/enc/
compress_fragment_two_pass.c 354 uint32_t prev_hash; local
358 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match);
359 table[prev_hash] = (int)(ip - base_ip - 3);
360 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match);
361 table[prev_hash] = (int)(ip - base_ip - 2);
362 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match);
363 table[prev_hash] = (int)(ip - base_ip - 1);
366 prev_hash = HashBytesAtOffset(input_bytes, 0, shift, min_match);
367 table[prev_hash] = (int)(ip - base_ip - 5);
368 prev_hash = HashBytesAtOffset(input_bytes, 1, shift, min_match)
409 uint32_t prev_hash; local
    [all...]
compress_fragment.c 606 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); local
608 table[prev_hash] = (int)(ip - base_ip - 3);
609 prev_hash = HashBytesAtOffset(input_bytes, 1, shift);
610 table[prev_hash] = (int)(ip - base_ip - 2);
611 prev_hash = HashBytesAtOffset(input_bytes, 2, shift);
612 table[prev_hash] = (int)(ip - base_ip - 1);
643 uint32_t prev_hash = HashBytesAtOffset(input_bytes, 0, shift); local
645 table[prev_hash] = (int)(ip - base_ip - 3);
646 prev_hash = HashBytesAtOffset(input_bytes, 1, shift);
647 table[prev_hash] = (int)(ip - base_ip - 2)
    [all...]
  /external/e2fsprogs/e2fsck/
rehash.c 439 ext2_dirhash_t prev_hash; local
463 prev_hash = 1;
499 if (ent->hash == prev_hash)
525 prev_hash = ent->hash;
pass2.c 580 ext2_dirhash_t hash = 0, prev_hash; local
640 prev_hash = hash;
655 if (hash < prev_hash &&
    [all...]
  /external/v8/src/
objects-debug.cc 2055 uint32_t prev_hash = 0; local
    [all...]

Completed in 495 milliseconds