/external/webrtc/webrtc/modules/audio_coding/codecs/red/ |
D | audio_encoder_copy_red_unittest.cc | 166 EXPECT_EQ(1u, encoded_info_.redundant.size()); in TEST_F() 182 ASSERT_EQ(2u, encoded_info_.redundant.size()); in TEST_F() 202 EXPECT_EQ(1u, encoded_info_.redundant.size()); in TEST_F() 207 ASSERT_EQ(2u, encoded_info_.redundant.size()); in TEST_F() 208 EXPECT_EQ(i, encoded_info_.redundant[0].encoded_bytes); in TEST_F() 209 EXPECT_EQ(i - 1, encoded_info_.redundant[1].encoded_bytes); in TEST_F() 233 ASSERT_EQ(2u, encoded_info_.redundant.size()); in TEST_F() 234 EXPECT_EQ(primary_timestamp, encoded_info_.redundant[0].encoded_timestamp); in TEST_F() 235 EXPECT_EQ(secondary_timestamp, encoded_info_.redundant[1].encoded_timestamp); in TEST_F() 269 ASSERT_EQ(2u, encoded_info_.redundant.size()); in TEST_F() [all …]
|
D | audio_encoder_copy_red.cc | 64 RTC_CHECK(info.redundant.empty()) << "Cannot use nested redundant encoders."; in EncodeInternal() 70 info.redundant.push_back(info); in EncodeInternal() 71 RTC_DCHECK_EQ(info.redundant.size(), 1u); in EncodeInternal() 75 info.redundant.push_back(secondary_info_); in EncodeInternal() 76 RTC_DCHECK_EQ(info.redundant.size(), 2u); in EncodeInternal() 81 RTC_DCHECK_EQ(info.speech, info.redundant[0].speech); in EncodeInternal() 86 for (std::vector<EncodedInfoLeaf>::const_iterator it = info.redundant.begin(); in EncodeInternal() 87 it != info.redundant.end(); ++it) { in EncodeInternal()
|
/external/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | icmpa.ll | 27 ; FIXME: This instruction is redundant. The sltiu can only produce 0 and 1. 48 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 68 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 88 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 108 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 128 ; FIXME: This instruction is redundant. The sltu can only produce 0 and 1. 147 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 166 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 187 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1. 206 ; FIXME: This instruction is redundant. The slt can only produce 0 and 1.
|
D | sel1.ll | 8 ; FIXME: The following instruction is redundant. 24 ; FIXME: The following 2 instructions are redundant. 41 ; FIXME: The following 2 instructions are redundant. 57 ; FIXME: The following instruction is redundant.
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
D | sdiv.ll | 35 ; FIXME: The sll/sra instructions are redundant since div is signed. 41 ; FIXME: The sll/sra instructions are redundant since div is signed. 56 ; FIXME: The sll/sra instructions are redundant since div is signed. 63 ; FIXME: This instruction is redundant. 68 ; FIXME: This instruction is redundant. 82 ; FIXME: The sll/sra instructions are redundant since div is signed. 89 ; FIXME: This is instruction is redundant since div is signed. 94 ; FIXME: This is instruction is redundant since div is signed.
|
/external/clang/test/SemaObjC/ |
D | cocoa-api-usage.m.fixed | 80 NSString *str = M(@"foo"); // expected-warning {{redundant}} 81 str = @"foo"; // expected-warning {{redundant}} 82 NSArray *arr = @[str]; // expected-warning {{redundant}} 83 NSDictionary *dict = @{str: arr}; // expected-warning {{redundant}}
|
D | cocoa-api-usage.m | 80 NSString *str = M([NSString stringWithString:@"foo"]); // expected-warning {{redundant}} 81 str = [[NSString alloc] initWithString:@"foo"]; // expected-warning {{redundant}} 82 NSArray *arr = [NSArray arrayWithArray:@[str]]; // expected-warning {{redundant}} 83 …nary *dict = [NSDictionary dictionaryWithDictionary:@{str: arr}]; // expected-warning {{redundant}}
|
/external/clang/test/ARCMT/ |
D | objcmt-instancetype.m.result | 107 NSString *str = M([NSString stringWithString:@"foo"]); // expected-warning {{redundant}} 108 str = [[NSString alloc] initWithString:@"foo"]; // expected-warning {{redundant}} 109 NSArray *arr = [NSArray arrayWithArray:@[str]]; // expected-warning {{redundant}} 110 …nary *dict = [NSDictionary dictionaryWithDictionary:@{str: arr}]; // expected-warning {{redundant}}
|
D | objcmt-instancetype.m | 107 NSString *str = M([NSString stringWithString:@"foo"]); // expected-warning {{redundant}} 108 str = [[NSString alloc] initWithString:@"foo"]; // expected-warning {{redundant}} 109 NSArray *arr = [NSArray arrayWithArray:@[str]]; // expected-warning {{redundant}} 110 …nary *dict = [NSDictionary dictionaryWithDictionary:@{str: arr}]; // expected-warning {{redundant}}
|
/external/llvm/test/CodeGen/SPARC/ |
D | multiple-div.ll | 6 ;; apparently-redundant wr to %y, which is not actually redundant
|
D | select-mask.ll | 5 ;; as redundant. But, cmp does NOT ignore the other bits!
|
/external/webrtc/webrtc/modules/audio_coding/acm2/ |
D | audio_coding_module_impl.cc | 76 if (info.redundant.empty()) { in ConvertEncodedInfoToFragmentationHeader() 82 static_cast<uint16_t>(info.redundant.size())); in ConvertEncodedInfoToFragmentationHeader() 83 frag->fragmentationVectorSize = static_cast<uint16_t>(info.redundant.size()); in ConvertEncodedInfoToFragmentationHeader() 85 for (size_t i = 0; i < info.redundant.size(); ++i) { in ConvertEncodedInfoToFragmentationHeader() 87 offset += info.redundant[i].encoded_bytes; in ConvertEncodedInfoToFragmentationHeader() 88 frag->fragmentationLength[i] = info.redundant[i].encoded_bytes; in ConvertEncodedInfoToFragmentationHeader() 90 info.encoded_timestamp - info.redundant[i].encoded_timestamp); in ConvertEncodedInfoToFragmentationHeader() 91 frag->fragmentationPlType[i] = info.redundant[i].payload_type; in ConvertEncodedInfoToFragmentationHeader()
|
/external/llvm/test/Transforms/ObjCARC/ |
D | gvn.ll | 9 ; GVN should be able to eliminate this redundant load, with ARC-specific 26 ; GVN should not be able to eliminate this redundant load, with ARC-specific
|
D | rle-s2l.ll | 10 ; Basic redundant @objc_loadWeak elimination. 38 ; Basic redundant @objc_loadWeakRetained elimination. 55 ; Basic redundant @objc_loadWeakRetained elimination, this time 73 ; A regular call blocks redundant weak load elimination.
|
/external/llvm/test/Transforms/InstCombine/ |
D | OverlappingInsertvalues.ll | 4 ; Check that we can find and remove redundant insertvalues 13 ; Check that we can find and remove redundant nodes in insertvalues chain
|
D | assume-redundant.ll | 52 ; Check that redundant align assume is removed 64 ; Check that redundant align assume is removed
|
/external/llvm/test/CodeGen/X86/ |
D | hoist-common.ll | 4 ; to there being a redundant xorl in the entry block 6 ; However, now that MachineSink sinks the redundant xor
|
/external/llvm/test/Transforms/GVN/ |
D | non-local-offset.ll | 6 ; fully redundant. 30 ; fully redundant. However, the second load is larger, so it's not a simple
|
/external/llvm/test/CodeGen/PowerPC/ |
D | variable_elem_vec_extracts.ll | 100 ; FIXME: the instruction below is a redundant regclass copy, to be removed 106 ; FIXME: the instruction below is a redundant regclass copy, to be removed 112 ; FIXME: the instruction below is a redundant regclass copy, to be removed
|
/external/llvm/test/CodeGen/ARM/ |
D | dagcombine-anyexttozeroext.ll | 28 ; The uxth is redundant, and we should be able to extend without 42 ; The and is not redundant and cannot be removed. Since
|
/external/llvm/test/MC/Disassembler/X86/ |
D | prefixes.txt | 51 # Test that multiple redundant prefixes work (redundant, but valid x86).
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
D | simple.ll | 354 ; Remove redundant store if loaded value is in another block. 371 ; Remove redundant store if loaded value is in another block. 388 ; Don't remove redundant store because of may-aliased store. 408 ; Don't remove redundant store because of may-aliased store. 429 ; Don't remove redundant store because of unknown call. 448 ; Remove redundant store if loaded value is in another block inside a loop. 463 ; Don't remove redundant store in a loop with a may-alias store. 481 ; Remove redundant store, which is in the lame loop as the load.
|
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/ |
D | gvn-nonlocal-type-mismatch.ll | 6 ; fully redundant. 29 ; fully redundant. However, the second load uses a different type. Theoretically
|
/external/bison/m4/ |
D | stdio_h.m4 | 27 dnl or GNULIB_NONBLOCKING redundant. 52 dnl GNULIB_SIGPIPE redundant. 64 dnl or GNULIB_NONBLOCKING redundant.
|
/external/llvm/test/Bitcode/ |
D | DILocalVariable-explicit-tags.ll | 1 ; Bitcode compiled with 3.7_rc2. 3.7 had redundant (but mandatory) tag fields
|