HomeSort by relevance Sort by last modified time
    Searched defs:BlockHash (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.h 36 // entry in the BlockHash corresponding to each kBlockSize bytes
46 class BlockHash {
58 // for a new BlockHash. However, it also doubles the minimum
101 // of the BlockHash for which the match was found.
114 // A BlockHash is created using a buffer of source data. The hash table
123 BlockHash(const char* source_data, size_t source_size, int starting_offset);
125 ~BlockHash();
128 // This method must be called after constructing a BlockHash object,
137 // classes that inherit from BlockHash are expected to call AddBlock()
142 // In the context of the open-vcdiff encoder, BlockHash is used for tw
    [all...]
blockhash.cc 17 #include "blockhash.h"
29 BlockHash::BlockHash(const char* source_data,
39 BlockHash::~BlockHash() { }
44 VCD_COMPILE_ASSERT(BlockHash::kBlockSize >= 2, kBlockSize_must_be_at_least_2);
53 VCD_COMPILE_ASSERT((BlockHash::kBlockSize & (BlockHash::kBlockSize - 1)) == 0,
56 bool BlockHash::Init(bool populate_hash_table) {
60 VCD_DFATAL << "Init() called twice for same BlockHash object" << VCD_ENDL
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 384 BlockHash vcalendar = parseIcsContent(att.mContentBytes);
393 BlockHash vevent = vcalendar.blocks.get(0);
446 BlockHash vcalendar = parseIcsContent(att.mContentBytes);
455 BlockHash vevent = vcalendar.blocks.get(0);
512 BlockHash vcalendar = parseIcsContent(att.mContentBytes);
525 BlockHash vtimezone = vcalendar.blocks.get(0);
530 BlockHash vevent = vcalendar.blocks.get(1);
593 BlockHash vcalendar = parseIcsContent(att.mContentBytes);
606 BlockHash vtimezone = vcalendar.blocks.get(0);
611 BlockHash vevent = vcalendar.blocks.get(1)
    [all...]

Completed in 83 milliseconds