Searched defs:block1 (Results 1 - 5 of 5) sorted by path

/external/chromium/sdch/open-vcdiff/src/
H A Dblockhash.cc239 // at addresses block1 and block2. Returns true or false
242 inline bool CompareWholeWordValues(const char* block1, argument
244 return CompareWholeWordValues<1>(block1, block2) &&
245 CompareWholeWordValues<number_of_words - 1>(block1 + sizeof(uword_t),
270 inline bool BlockCompareWordsInline(const char* block1, const char* block2) { argument
272 return CompareWholeWordValues<kWordsPerBlock>(block1, block2);
275 bool BlockHash::BlockCompareWords(const char* block1, const char* block2) { argument
276 return BlockCompareWordsInline(block1, block2);
279 inline bool BlockContentsMatchInline(const char* block1, const char* block2) { argument
283 if (*block1 !
293 BlockContentsMatch(const char* block1, const char* block2) argument
[all...]
H A Dblockhash_test.cc45 static bool BlockContentsMatch(const char* block1, const char* block2) { argument
46 return BlockHash::BlockContentsMatch(block1, block2);
329 const char* block1 = compare_buffer_1_;
331 while (block1 < block1_limit) {
332 if (!BlockHash::BlockCompareWords(block1, block2)) {
335 block1 += kBlockSize;
347 const char* block1 = compare_buffer_1_;
349 while (block1 < block1_limit) {
350 if (!BlockHash::BlockContentsMatch(block1, block2)) {
353 block1
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DBasicBlockList.java254 * @param block1 {@code non-null;} one block to compare
259 public boolean catchesEqual(BasicBlock block1, BasicBlock block2) { argument
260 TypeList catches1 = block1.getExceptionHandlerTypes();
267 IntList succ1 = block1.getSuccessors();
271 int primary1 = block1.getPrimarySuccessor();
/external/flac/libFLAC/
H A Dmetadata_object.c696 static FLAC__bool compare_block_data_streaminfo_(const FLAC__StreamMetadata_StreamInfo *block1, const FLAC__StreamMetadata_StreamInfo *block2) argument
698 if(block1->min_blocksize != block2->min_blocksize)
700 if(block1->max_blocksize != block2->max_blocksize)
702 if(block1->min_framesize != block2->min_framesize)
704 if(block1->max_framesize != block2->max_framesize)
706 if(block1->sample_rate != block2->sample_rate)
708 if(block1->channels != block2->channels)
710 if(block1->bits_per_sample != block2->bits_per_sample)
712 if(block1->total_samples != block2->total_samples)
714 if(0 != memcmp(block1
719 compare_block_data_application_(const FLAC__StreamMetadata_Application *block1, const FLAC__StreamMetadata_Application *block2, unsigned block_length) argument
733 compare_block_data_seektable_(const FLAC__StreamMetadata_SeekTable *block1, const FLAC__StreamMetadata_SeekTable *block2) argument
758 compare_block_data_vorbiscomment_(const FLAC__StreamMetadata_VorbisComment *block1, const FLAC__StreamMetadata_VorbisComment *block2) argument
786 compare_block_data_cuesheet_(const FLAC__StreamMetadata_CueSheet *block1, const FLAC__StreamMetadata_CueSheet *block2) argument
835 compare_block_data_picture_(const FLAC__StreamMetadata_Picture *block1, const FLAC__StreamMetadata_Picture *block2) argument
858 compare_block_data_unknown_(const FLAC__StreamMetadata_Unknown *block1, const FLAC__StreamMetadata_Unknown *block2, unsigned block_length) argument
869 FLAC__metadata_object_is_equal(const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2) argument
[all...]
/external/openssl/crypto/modes/
H A Dmodes_lcl.h122 block128_f block1,block2; member in struct:xts128_context

Completed in 129 milliseconds