Home
last modified time | relevance | path

Searched refs:redundant (Results 1 – 25 of 251) sorted by relevance

1234567891011

/external/webrtc/webrtc/modules/audio_coding/codecs/red/
Daudio_encoder_copy_red_unittest.cc166 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 …]
Daudio_encoder_copy_red.cc64 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/
Dicmpa.ll27 ; 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.
Dsel1.ll8 ; 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/
Dsdiv.ll35 ; 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/
Dcocoa-api-usage.m.fixed80 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}}
Dcocoa-api-usage.m80 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/
Dobjcmt-instancetype.m.result107 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}}
Dobjcmt-instancetype.m107 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/
Dmultiple-div.ll6 ;; apparently-redundant wr to %y, which is not actually redundant
Dselect-mask.ll5 ;; as redundant. But, cmp does NOT ignore the other bits!
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_impl.cc76 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/
Dgvn.ll9 ; 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
Drle-s2l.ll10 ; 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/
DOverlappingInsertvalues.ll4 ; Check that we can find and remove redundant insertvalues
13 ; Check that we can find and remove redundant nodes in insertvalues chain
Dassume-redundant.ll52 ; Check that redundant align assume is removed
64 ; Check that redundant align assume is removed
/external/llvm/test/CodeGen/X86/
Dhoist-common.ll4 ; to there being a redundant xorl in the entry block
6 ; However, now that MachineSink sinks the redundant xor
/external/llvm/test/Transforms/GVN/
Dnon-local-offset.ll6 ; fully redundant.
30 ; fully redundant. However, the second load is larger, so it's not a simple
/external/llvm/test/CodeGen/PowerPC/
Dvariable_elem_vec_extracts.ll100 ; 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/
Ddagcombine-anyexttozeroext.ll28 ; 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/
Dprefixes.txt51 # Test that multiple redundant prefixes work (redundant, but valid x86).
/external/llvm/test/Transforms/DeadStoreElimination/
Dsimple.ll354 ; 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/
Dgvn-nonlocal-type-mismatch.ll6 ; fully redundant.
29 ; fully redundant. However, the second load uses a different type. Theoretically
/external/bison/m4/
Dstdio_h.m427 dnl or GNULIB_NONBLOCKING redundant.
52 dnl GNULIB_SIGPIPE redundant.
64 dnl or GNULIB_NONBLOCKING redundant.
/external/llvm/test/Bitcode/
DDILocalVariable-explicit-tags.ll1 ; Bitcode compiled with 3.7_rc2. 3.7 had redundant (but mandatory) tag fields

1234567891011