/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...] |
/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
|
/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/libselinux/ |
Android.mk | 53 # mapping.c has redundant check of array p_in->perms. 82 # mapping.c has redundant check of array p_in->perms.
|
/external/v8/test/webkit/ |
dfg-dead-redundant-get-array-length.js | 25 "Tests that having a dead, and redundant, use of array.length doesn't cause compiler crashes." 29 var x = array.length; // This is dead. If it wasn't, it would be redundant with the one below.
|
dfg-redundant-load-of-captured-variable-proven-constant.js | 25 "Tests that a redundant load of a captured variable that was proven to be a constant doesn't crash the compiler."
|
/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/v8/test/mjsunit/regress/ |
regress-460917.js | 13 // The map check is considered redundant and will be eliminated.
|
/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
|
/prebuilts/go/darwin-x86/test/ |
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/ |
nilcheck.go | 8 // Optimization is disabled, so redundant checks are not removed. 113 // This one is a bit redundant, if we figured out that
|
/external/selinux/libselinux/utils/ |
Makefile | 25 -Werror -Wno-aggregate-return -Wno-redundant-decls
|