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

1 2 3 4

  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
bool.go 15 if v, w := f(), g(); v == w || v == w { // ERROR "redundant or: v == w || v == w"
17 _ = f == nil || f == nil // ERROR "redundant or: f == nil || f == nil"
23 for i, j := <-c, <-c; i == j || i == j; i, j = <-c, <-c { // ERROR "redundant or: i == j || i == j"
27 _ = i+1 == 1 || i+1 == 1 // ERROR "redundant or: i\+1 == 1 || i\+1 == 1"
28 _ = i == 1 || j+1 == i || i == 1 // ERROR "redundant or: i == 1 || i == 1"
30 _ = i == 1 || i == 1 || f() == 1 // ERROR "redundant or: i == 1 || i == 1"
32 _ = f() == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1"
35 _ = f() == 1 || i == 1 || i == 1 || j == 1 // ERROR "redundant or: i == 1 || i == 1"
36 _ = f() == 1 || j == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1"
37 _ = i == 1 || f() == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
bool.go 15 if v, w := f(), g(); v == w || v == w { // ERROR "redundant or: v == w || v == w"
17 _ = f == nil || f == nil // ERROR "redundant or: f == nil || f == nil"
23 for i, j := <-c, <-c; i == j || i == j; i, j = <-c, <-c { // ERROR "redundant or: i == j || i == j"
27 _ = i+1 == 1 || i+1 == 1 // ERROR "redundant or: i\+1 == 1 || i\+1 == 1"
28 _ = i == 1 || j+1 == i || i == 1 // ERROR "redundant or: i == 1 || i == 1"
30 _ = i == 1 || i == 1 || f() == 1 // ERROR "redundant or: i == 1 || i == 1"
32 _ = f() == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1"
35 _ = f() == 1 || i == 1 || i == 1 || j == 1 // ERROR "redundant or: i == 1 || i == 1"
36 _ = f() == 1 || j == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1"
37 _ = i == 1 || f() == 1 || i == 1 || i == 1 // ERROR "redundant or: i == 1 || i == 1
    [all...]
  /prebuilts/go/darwin-x86/test/
loopbce.go 9 x += a[i] // ERROR "Found redundant IsInBounds$"
17 b := a[i:] // ERROR "Found redundant IsSliceInBounds$"
26 b := a[:i+1] // ERROR "Found redundant IsSliceInBounds \(len promoted to cap\)$"
43 x += a[i] // ERROR "Found redundant IsInBounds$"
51 x += a[i] // ERROR "Found redundant IsInBounds$"
66 b := a[0:i] // ERROR "Found redundant IsSliceInBounds \(len promoted to cap\)$"
74 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
82 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
91 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
101 if a[i] == 'e' { // ERROR "Found redundant IsInBounds$
    [all...]
nilcheck.go 8 // Optimization is disabled, so redundant checks are not removed.
113 // This one is a bit redundant, if we figured out that
  /prebuilts/go/linux-x86/test/
loopbce.go 9 x += a[i] // ERROR "Found redundant IsInBounds$"
17 b := a[i:] // ERROR "Found redundant IsSliceInBounds$"
26 b := a[:i+1] // ERROR "Found redundant IsSliceInBounds \(len promoted to cap\)$"
43 x += a[i] // ERROR "Found redundant IsInBounds$"
51 x += a[i] // ERROR "Found redundant IsInBounds$"
66 b := a[0:i] // ERROR "Found redundant IsSliceInBounds \(len promoted to cap\)$"
74 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
82 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
91 x += int(a[i]) // ERROR "Found redundant IsInBounds$"
101 if a[i] == 'e' { // ERROR "Found redundant IsInBounds$
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red.cc 64 RTC_CHECK(info.redundant.empty()) << "Cannot use nested redundant encoders.";
68 // discarding the (empty) vector of redundant information. This is
70 info.redundant.push_back(info);
71 RTC_DCHECK_EQ(info.redundant.size(), 1u);
75 info.redundant.push_back(secondary_info_);
76 RTC_DCHECK_EQ(info.redundant.size(), 2u);
81 RTC_DCHECK_EQ(info.speech, info.redundant[0].speech);
86 for (std::vector<EncodedInfoLeaf>::const_iterator it = info.redundant.begin();
87 it != info.redundant.end(); ++it)
    [all...]
audio_encoder_copy_red_unittest.cc 166 EXPECT_EQ(1u, encoded_info_.redundant.size());
182 ASSERT_EQ(2u, encoded_info_.redundant.size());
202 EXPECT_EQ(1u, encoded_info_.redundant.size());
207 ASSERT_EQ(2u, encoded_info_.redundant.size());
208 EXPECT_EQ(i, encoded_info_.redundant[0].encoded_bytes);
209 EXPECT_EQ(i - 1, encoded_info_.redundant[1].encoded_bytes);
233 ASSERT_EQ(2u, encoded_info_.redundant.size());
234 EXPECT_EQ(primary_timestamp, encoded_info_.redundant[0].encoded_timestamp);
235 EXPECT_EQ(secondary_timestamp, encoded_info_.redundant[1].encoded_timestamp);
269 ASSERT_EQ(2u, encoded_info_.redundant.size())
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
rodata-merge-map3.s 3 @ rodata-merge-map1.s), and generate a (redundant, but harmless)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug409.go 8 // redundant address loads.
issue8036.go 7 // Issue 8036. Stores necessary for stack scan being eliminated as redundant by optimizer.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug409.go 8 // redundant address loads.
issue8036.go 7 // Issue 8036. Stores necessary for stack scan being eliminated as redundant by optimizer.
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_encoder.h 37 // |payload_type|. If the packet contains redundant encodings, the |redundant|
48 std::vector<EncodedInfoLeaf> redundant; member in struct:webrtc::AudioEncoder::EncodedInfo
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
phielim.go 7 // phielim eliminates redundant phi values from f.
8 // A phi is redundant if its arguments are all equal. For
10 // these phis are redundant:
nilcheck.go 10 // A nil check is redundant if the same nil check was successful in a
85 // Next, eliminate any redundant nil checks in this block.
94 // This is a redundant explicit nil check.
101 // This is a redundant implicit nil check.
119 // Finally, find redundant nil checks for subsequent blocks.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
phielim.go 7 // phielim eliminates redundant phi values from f.
8 // A phi is redundant if its arguments are all equal. For
10 // these phis are redundant:
nilcheck.go 10 // A nil check is redundant if the same nil check was successful in a
85 // Next, eliminate any redundant nil checks in this block.
94 // This is a redundant explicit nil check.
101 // This is a redundant implicit nil check.
119 // Finally, find redundant nil checks for subsequent blocks.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
datal-2.d 4 #name: DataLabel redundant local use, SHcompact
datal-1.s 3 ! completely redundant. Code tests are for SHmedia mode.
datal-2.s 3 ! completely redundant. Code tests are for SHcompact mode.
datal32-1.d 4 #name: DataLabel redundant local use, SHmedia 32-bit ABI
datal64-1.d 4 #name: DataLabel redundant local use, SHmedia 64-bit ABI
  /external/libexif/
libexif.spec 16 intended to replace lots of redundant implementations in command-line
  /external/llvm/test/MC/ARM/
multi-section-mapping.s 19 @ Changing back to .text should not emit a redundant $a
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_impl.cc 76 if (info.redundant.empty()) {
82 static_cast<uint16_t>(info.redundant.size()));
83 frag->fragmentationVectorSize = static_cast<uint16_t>(info.redundant.size());
85 for (size_t i = 0; i < info.redundant.size(); ++i) {
87 offset += info.redundant[i].encoded_bytes;
88 frag->fragmentationLength[i] = info.redundant[i].encoded_bytes;
90 info.encoded_timestamp - info.redundant[i].encoded_timestamp);
91 frag->fragmentationPlType[i] = info.redundant[i].payload_type;
444 // (RED) Redundant Coding

Completed in 270 milliseconds

1 2 3 4