HomeSort by relevance Sort by last modified time
    Searched refs:block1 (Results 1 - 25 of 35) sorted by null

1 2

  /external/clang/test/CodeGen/
blockwithlocalstatic.c 10 void (^block1)(void) = ^ {
  /external/llvm/test/CodeGen/SystemZ/Large/
branch-range-07.py 47 block1 = 'entry' if i == branch_blocks - 1 else 'loop%d' % (i + 1)
50 ' [ %%nextcount%d, %%%s ]' % (i, i, block1, i, block2))
branch-range-08.py 48 block1 = 'entry' if i == branch_blocks - 1 else 'loop%d' % (i + 1)
51 ' [ %%nextcount%d, %%%s ]' % (i, i, block1, i, block2))
  /external/chromium/sdch/open-vcdiff/src/
blockhash.cc 239 // at addresses block1 and block2. Returns true or false
242 inline bool CompareWholeWordValues(const char* block1,
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) {
272 return CompareWholeWordValues<kWordsPerBlock>(block1, block2);
275 bool BlockHash::BlockCompareWords(const char* block1, const char* block2) {
276 return BlockCompareWordsInline(block1, block2);
279 inline bool BlockContentsMatchInline(const char* block1, const char* block2) {
283 if (*block1 != *block2)
    [all...]
blockhash.h 373 // beginning at block1 are identical to the contents of
375 static bool BlockContentsMatch(const char* block1, const char* block2);
390 static bool BlockCompareWords(const char* block1, const char* block2);
blockhash_test.cc 45 static bool BlockContentsMatch(const char* block1, const char* block2) {
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 += kBlockSize
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.cc 240 // at addresses block1 and block2. Returns true or false
243 inline bool CompareWholeWordValues(const char* block1,
245 return CompareWholeWordValues<1>(block1, block2) &&
246 CompareWholeWordValues<number_of_words - 1>(block1 + sizeof(uword_t),
271 inline bool BlockCompareWordsInline(const char* block1, const char* block2) {
273 return CompareWholeWordValues<kWordsPerBlock>(block1, block2);
276 bool BlockHash::BlockCompareWords(const char* block1, const char* block2) {
277 return BlockCompareWordsInline(block1, block2);
280 inline bool BlockContentsMatchInline(const char* block1, const char* block2) {
284 if (*block1 != *block2)
    [all...]
blockhash.h 373 // beginning at block1 are identical to the contents of
375 static bool BlockContentsMatch(const char* block1, const char* block2);
390 static bool BlockCompareWords(const char* block1, const char* block2);
blockhash_test.cc 45 static bool BlockContentsMatch(const char* block1, const char* block2) {
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 += kBlockSize
    [all...]
  /external/open-vcdiff/src/
blockhash.cc 240 // at addresses block1 and block2. Returns true or false
243 inline bool CompareWholeWordValues(const char* block1,
245 return CompareWholeWordValues<1>(block1, block2) &&
246 CompareWholeWordValues<number_of_words - 1>(block1 + sizeof(uword_t),
271 inline bool BlockCompareWordsInline(const char* block1, const char* block2) {
273 return CompareWholeWordValues<kWordsPerBlock>(block1, block2);
276 bool BlockHash::BlockCompareWords(const char* block1, const char* block2) {
277 return BlockCompareWordsInline(block1, block2);
280 inline bool BlockContentsMatchInline(const char* block1, const char* block2) {
284 if (*block1 != *block2)
    [all...]
blockhash.h 373 // beginning at block1 are identical to the contents of
375 static bool BlockContentsMatch(const char* block1, const char* block2);
390 static bool BlockCompareWords(const char* block1, const char* block2);
blockhash_test.cc 45 static bool BlockContentsMatch(const char* block1, const char* block2) {
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 += kBlockSize
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
upload_data_presenter_unittest.cc 44 const char block1[] = "test"; local
45 const size_t block1_size = sizeof(block1) - 1;
52 base::BinaryValue::CreateWithCopiedBuffer(block1, block1_size));
71 raw_presenter.FeedNextBytes(block1, block1_size);
  /external/ceres-solver/internal/ceres/
visibility_based_preconditioner.cc 277 for (set<int>::const_iterator block1 = f_blocks.begin();
278 block1 != f_blocks.end();
279 ++block1) {
280 set<int>::const_iterator block2 = block1;
283 if (IsBlockPairInPreconditioner(*block1, *block2)) {
284 block_pairs_.insert(make_pair(*block1, *block2));
295 const int block1 = row.cells[i].block_id - num_eliminate_blocks; local
298 if (block1 <= block2) {
299 if (IsBlockPairInPreconditioner(block1, block2)) {
300 block_pairs_.insert(make_pair(block1, block2))
386 const int block1 = it->first; local
    [all...]
visibility_based_preconditioner.h 162 bool IsBlockPairInPreconditioner(int block1, int block2) const;
163 bool IsBlockPairOffDiagonal(int block1, int block2) const;
covariance_test.cc 49 double* block1 = parameters; local
50 double* block2 = block1 + 1;
57 problem.AddParameterBlock(block1, 1);
89 covariance_blocks.push_back(make_pair(block1, block1));
94 covariance_blocks.push_back(make_pair(block4, block1)); // reversed
319 const double* block1 = covariance_blocks[i].first; local
321 // block1, block2
322 GetCovarianceBlockAndCompare(block1, block2, covariance, expected_covariance);
323 // block2, block1
    [all...]
schur_eliminator_impl.h 518 const int block1 = it1->first - num_eliminate_blocks_; local
531 CellInfo* cell_info = lhs->GetCell(block1, block2,
600 const int block1 = row.cells[i].block_id - num_eliminate_blocks_; local
601 DCHECK_GE(block1, 0);
605 CellInfo* cell_info = lhs->GetCell(block1, block1,
622 DCHECK_LT(block1, block2);
624 CellInfo* cell_info = lhs->GetCell(block1, block2,
653 const int block1 = row.cells[i].block_id - num_eliminate_blocks_; local
654 DCHECK_GE(block1, 0)
    [all...]
covariance_impl.cc 128 ParameterBlock* block1 = local
135 const int block1_size = block1->Size();
174 ParameterBlock* block1 = local
178 const LocalParameterization* local_param1 = block1->local_parameterization();
180 const int block1_size = block1->Size();
181 const int block1_local_size = block1->LocalSize();
  /external/flac/libFLAC/
metadata_object.c 696 static FLAC__bool compare_block_data_streaminfo_(const FLAC__StreamMetadata_StreamInfo *block1, const FLAC__StreamMetadata_StreamInfo *block2)
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->md5sum, block2->md5sum, 16)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 255 * @param block1 {@code non-null;} one block to compare
260 public boolean catchesEqual(BasicBlock block1,
262 TypeList catches1 = block1.getExceptionHandlerTypes();
269 IntList succ1 = block1.getSuccessors();
273 int primary1 = block1.getPrimarySuccessor();
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 254 * @param block1 {@code non-null;} one block to compare
259 public boolean catchesEqual(BasicBlock block1, BasicBlock block2) {
260 TypeList catches1 = block1.getExceptionHandlerTypes();
267 IntList succ1 = block1.getSuccessors();
271 int primary1 = block1.getPrimarySuccessor();
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
xts128.c 86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
129 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
164 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
175 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlockList.java 254 * @param block1 {@code non-null;} one block to compare
259 public boolean catchesEqual(BasicBlock block1, BasicBlock block2) {
260 TypeList catches1 = block1.getExceptionHandlerTypes();
267 IntList succ1 = block1.getSuccessors();
271 int primary1 = block1.getPrimarySuccessor();
  /external/openssl/crypto/modes/
xts128.c 86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
129 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
164 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
175 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
  /art/compiler/dex/
ssa_transformation.cc 290 * last element of the intersection of block1 and block2 dominators.
292 int MIRGraph::FindCommonParent(int block1, int block2) {
293 while (block1 != block2) {
294 while (block1 < block2) {
295 block1 = i_dom_list_[block1];
296 DCHECK_NE(block1, NOTVISITED);
298 while (block2 < block1) {
303 return block1;

Completed in 441 milliseconds

1 2