Home
last modified time | relevance | path

Searched refs:memcmp (Results 1 - 25 of 5063) sorted by relevance

12345678910>>...203

/third_party/json/tests/thirdparty/Fuzzer/test/
H A DFuzzerUnittest.cpp123 if (NewSize == 7 && !memcmp(REM0, T, 7)) FoundMask |= 1 << 0; in TestEraseBytes()
124 if (NewSize == 7 && !memcmp(REM1, T, 7)) FoundMask |= 1 << 1; in TestEraseBytes()
125 if (NewSize == 7 && !memcmp(REM2, T, 7)) FoundMask |= 1 << 2; in TestEraseBytes()
126 if (NewSize == 7 && !memcmp(REM3, T, 7)) FoundMask |= 1 << 3; in TestEraseBytes()
127 if (NewSize == 7 && !memcmp(REM4, T, 7)) FoundMask |= 1 << 4; in TestEraseBytes()
128 if (NewSize == 7 && !memcmp(REM5, T, 7)) FoundMask |= 1 << 5; in TestEraseBytes()
129 if (NewSize == 7 && !memcmp(REM6, T, 7)) FoundMask |= 1 << 6; in TestEraseBytes()
130 if (NewSize == 7 && !memcmp(REM7, T, 7)) FoundMask |= 1 << 7; in TestEraseBytes()
132 if (NewSize == 6 && !memcmp(REM8, T, 6)) FoundMask |= 1 << 8; in TestEraseBytes()
133 if (NewSize == 6 && !memcmp(REM in TestEraseBytes()
[all...]
H A DMemcmpTest.cpp12 if (Size >= 8 && memcmp(Data, "01234567", 8) == 0) { in LLVMFuzzerTestOneInput()
13 if (Size >= 12 && memcmp(Data + 8, "ABCD", 4) == 0) { in LLVMFuzzerTestOneInput()
14 if (Size >= 14 && memcmp(Data + 12, "XY", 2) == 0) { in LLVMFuzzerTestOneInput()
15 if (Size >= 17 && memcmp(Data + 14, "KLM", 3) == 0) { in LLVMFuzzerTestOneInput()
16 if (Size >= 27 && memcmp(Data + 17, "ABCDE-GHIJ", 10) == 0){ in LLVMFuzzerTestOneInput()
/third_party/toybox/toys/posix/
H A Dfile.c182 if (n_namesz==4 && !memcmp(note+12, "GNU", 4)) { in do_elf_file()
187 } else if (n_namesz==8 && !memcmp(note+12, "Android", 8)) { in do_elf_file()
250 else if (len>32 && !memcmp(toybuf, "\xff\xd8", 2)) xputs("JPEG image data"); in do_regular_file()
290 else if (len>32 && !memcmp(s+1, "\xfa\xed\xfe", 3)) { in do_regular_file()
309 } else if (len>36 && !memcmp(s, "OggS\x00\x02", 6)) { in do_regular_file()
312 if (!memcmp(s+28, "CELT ", 8)) xprintf(", celt audio"); in do_regular_file()
313 else if (!memcmp(s+28, "CMML ", 8)) xprintf(", cmml text"); in do_regular_file()
314 else if (!memcmp(s+28, "BBCD\0", 5)) xprintf(", dirac video"); in do_regular_file()
315 else if (!memcmp(s+28, "\177FLAC", 5)) xprintf(", flac audio"); in do_regular_file()
316 else if (!memcmp( in do_regular_file()
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dfile_io_test.cc52 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0); in TestFileInputStream()
59 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0); in TestFileInputStream()
65 EXPECT_EQ(memcmp(&(b1[100]), &(b2[0]), 100), 0); in TestFileInputStream()
69 EXPECT_EQ(memcmp(&(b1[300]), &(b2[0]), 100), 0); in TestFileInputStream()
76 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), 200), 0); in TestFileInputStream()
82 EXPECT_EQ(memcmp(&(b3[0]), &(b2[0]), 200), 0); in TestFileInputStream()
114 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0); in TestFontInputStreamBasic()
121 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0); in TestFontInputStreamBasic()
123 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 200), 0); in TestFontInputStreamBasic()
127 EXPECT_EQ(memcmp( in TestFontInputStreamBasic()
[all...]
H A Dmemory_io_test.cc54 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 3, 7), 0); in TestMemoryInputStream()
58 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 3, 17), 0); in TestMemoryInputStream()
65 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 50, 10), 0); in TestMemoryInputStream()
70 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + 40, 10), 0); in TestMemoryInputStream()
79 EXPECT_EQ(memcmp(&(b[0]), &(test_buffer[0]) + kTestBufferLen - 10, 10), 0); in TestMemoryInputStream()
92 EXPECT_EQ(memcmp(os.Get(), &(test_buffer[0]) + 50, kTestBufferLen - 50), 0); in TestMemoryOutputStream()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/exif_metadata_accessor_test/
H A Dexif_getfilterarea_test.cpp138 ASSERT_EQ(std::memcmp(GPSAltitude, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
140 ASSERT_EQ(std::memcmp(GPSSatellites, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
142 ASSERT_EQ(std::memcmp(GPSStatus, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
144 ASSERT_EQ(std::memcmp(GPSMeasureMode, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
146 ASSERT_EQ(std::memcmp(GPSDOP, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
148 ASSERT_EQ(std::memcmp(GPSSpeed, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
150 ASSERT_EQ(std::memcmp(GPSTrackRef, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
152 ASSERT_EQ(std::memcmp(GPSTrack, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
154 ASSERT_EQ(std::memcmp(GPSImgDirection, contents[i].data(), contents[i].size()), SUCCESS); in HWTEST_F()
184 ASSERT_EQ(std::memcmp(GPSAltitud in HWTEST_F()
[all...]
/kernel/linux/linux-5.10/arch/powerpc/lib/
H A Dfeature-fixups.c657 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
661 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
665 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0); in test_basic_patching()
669 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
671 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0); in test_basic_patching()
690 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
694 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
698 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_expected, size) == 0); in test_alternative_patching()
702 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
704 check(memcmp(ftr_fixup_test in test_alternative_patching()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/lib/
H A Dfeature-fixups.c731 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
735 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
739 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0); in test_basic_patching()
743 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0); in test_basic_patching()
745 check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0); in test_basic_patching()
764 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
768 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
772 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_expected, size) == 0); in test_alternative_patching()
776 check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0); in test_alternative_patching()
778 check(memcmp(ftr_fixup_test in test_alternative_patching()
[all...]
/third_party/libuv/test/
H A Dtest-strscpy.c37 ASSERT_OK(memcmp(d, "x\0\0", sizeof(d))); in TEST_IMPL()
41 ASSERT_OK(memcmp(d, "xy\0", sizeof(d))); in TEST_IMPL()
44 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL()
47 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL()
50 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL()
H A Dtest-fs-poll.c114 ASSERT_OK(memcmp(prev, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
115 ASSERT_OK(memcmp(curr, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
121 ASSERT_OK(memcmp(prev, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
122 ASSERT_NE(0, memcmp(curr, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
128 ASSERT_NE(0, memcmp(prev, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
129 ASSERT_NE(0, memcmp(curr, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
135 ASSERT_NE(0, memcmp(prev, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
136 ASSERT_NE(0, memcmp(curr, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
142 ASSERT_NE(0, memcmp(prev, &zero_statbuf, sizeof(zero_statbuf))); in poll_cb()
143 ASSERT_OK(memcmp(cur in poll_cb()
[all...]
/kernel/linux/linux-5.10/drivers/media/platform/coda/
H A Dcoda-mpeg2.c73 memcmp(buf, sequence_header_start, 4) != 0) in coda_mpeg2_parse_headers()
77 (size >= 25 && memcmp(buf + 22, u.start_code_prefix, 3) == 0)) && in coda_mpeg2_parse_headers()
78 memcmp(buf + 12, u.extension_start, 4) == 0) in coda_mpeg2_parse_headers()
82 (size > 89 && memcmp(buf + 86, u.start_code_prefix, 3) == 0)) && in coda_mpeg2_parse_headers()
83 memcmp(buf + 76, u.extension_start, 4) == 0) in coda_mpeg2_parse_headers()
H A Dcoda-mpeg4.c70 memcmp(buf, vos_start, 4) != 0 || in coda_mpeg4_parse_headers()
71 memcmp(buf + 5, u.vo_start, 4) != 0) in coda_mpeg4_parse_headers()
75 (size >= 33 && memcmp(buf + 30, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
79 (size >= 34 && memcmp(buf + 31, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
83 (size >= 35 && memcmp(buf + 32, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
/kernel/linux/linux-6.6/drivers/media/platform/chips-media/
H A Dcoda-mpeg2.c73 memcmp(buf, sequence_header_start, 4) != 0) in coda_mpeg2_parse_headers()
77 (size >= 25 && memcmp(buf + 22, u.start_code_prefix, 3) == 0)) && in coda_mpeg2_parse_headers()
78 memcmp(buf + 12, u.extension_start, 4) == 0) in coda_mpeg2_parse_headers()
82 (size > 89 && memcmp(buf + 86, u.start_code_prefix, 3) == 0)) && in coda_mpeg2_parse_headers()
83 memcmp(buf + 76, u.extension_start, 4) == 0) in coda_mpeg2_parse_headers()
H A Dcoda-mpeg4.c70 memcmp(buf, vos_start, 4) != 0 || in coda_mpeg4_parse_headers()
71 memcmp(buf + 5, u.vo_start, 4) != 0) in coda_mpeg4_parse_headers()
75 (size >= 33 && memcmp(buf + 30, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
79 (size >= 34 && memcmp(buf + 31, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
83 (size >= 35 && memcmp(buf + 32, u.start_code_prefix, 3) == 0)) in coda_mpeg4_parse_headers()
/third_party/libcoap/tests/
H A Dtest_pdu.c54 CU_ASSERT(memcmp(pdu->token, teststr + 4, 5) == 0); in t_parse_pdu2()
101 CU_ASSERT(memcmp(pdu->token, teststr + 4, 5) == 0); in t_parse_pdu5()
136 CU_ASSERT(memcmp(pdu->token, teststr + 4, 5) == 0); in t_parse_pdu7()
141 CU_ASSERT(memcmp(pdu->data, teststr + 13, 7) == 0); in t_parse_pdu7()
165 CU_ASSERT(memcmp(pdu->data, teststr + 5, 7) == 0); in t_parse_pdu8()
351 CU_ASSERT(memcmp(pdu->token - 4, teststr, sizeof(teststr)) == 0); in t_encode_pdu1()
441 CU_ASSERT(memcmp(pdu->token - 4, teststr, sizeof(teststr)) == 0); in t_encode_pdu4()
482 CU_ASSERT(memcmp(pdu->token - 4, teststr, sizeof(teststr)) == 0); in t_encode_pdu5()
504 CU_ASSERT(memcmp(pdu->token - 4, teststr, sizeof(teststr)) == 0); in t_encode_pdu6()
527 CU_ASSERT(memcmp(pd in t_encode_pdu7()
[all...]
/third_party/ltp/testcases/kernel/syscalls/memcmp/
H A Dmemcmp01.c57 if (memcmp(p, q, len)) { in verify_memcmp()
58 tst_res(TFAIL, "memcmp fails - should have succeeded."); in verify_memcmp()
64 if (memcmp(p, q, len) >= 0) { in verify_memcmp()
65 tst_res(TFAIL, "memcmp succeeded - should have failed."); in verify_memcmp()
72 if (memcmp(p, q, len) >= 0) { in verify_memcmp()
73 tst_res(TFAIL, "memcmp succeeded - should have failed."); in verify_memcmp()
80 if (memcmp(p, q, len) <= 0) { in verify_memcmp()
81 tst_res(TFAIL, "memcmp succeeded - should have failed."); in verify_memcmp()
88 if (memcmp(p, q, len) <= 0) { in verify_memcmp()
89 tst_res(TFAIL, "memcmp succeede in verify_memcmp()
[all...]
/kernel/linux/linux-5.10/drivers/acpi/
H A Dspcr.c32 if (memcmp(h->oem_id, "QCOM ", ACPI_OEM_ID_SIZE)) in qdf2400_erratum_44_present()
35 if (!memcmp(h->oem_table_id, "QDF2432 ", ACPI_OEM_TABLE_ID_SIZE)) in qdf2400_erratum_44_present()
38 if (!memcmp(h->oem_table_id, "QDF2400 ", ACPI_OEM_TABLE_ID_SIZE) && in qdf2400_erratum_44_present()
57 if (memcmp(tb->header.oem_id, "APMC0D", ACPI_OEM_ID_SIZE) && in xgene_8250_erratum_present()
58 memcmp(tb->header.oem_id, "HPE ", ACPI_OEM_ID_SIZE)) in xgene_8250_erratum_present()
61 if (!memcmp(tb->header.oem_table_id, "XGENESPC", in xgene_8250_erratum_present()
65 if (!memcmp(tb->header.oem_table_id, "ProLiant", in xgene_8250_erratum_present()
/kernel/linux/linux-5.10/block/partitions/
H A Datari.c29 return memcmp (s, "GEM", 3) == 0 || memcmp (s, "BGM", 3) == 0 || in OK_id()
30 memcmp (s, "LNX", 3) == 0 || memcmp (s, "SWP", 3) == 0 || in OK_id()
31 memcmp (s, "RAW", 3) == 0 ; in OK_id()
82 if (memcmp (pi->id, "XGM", 3) != 0) { in atari_partition()
118 if (memcmp( xrs->part[1].id, "XGM", 3 ) != 0) { in atari_partition()
/kernel/linux/linux-6.6/drivers/acpi/
H A Dspcr.c32 if (memcmp(h->oem_id, "QCOM ", ACPI_OEM_ID_SIZE)) in qdf2400_erratum_44_present()
35 if (!memcmp(h->oem_table_id, "QDF2432 ", ACPI_OEM_TABLE_ID_SIZE)) in qdf2400_erratum_44_present()
38 if (!memcmp(h->oem_table_id, "QDF2400 ", ACPI_OEM_TABLE_ID_SIZE) && in qdf2400_erratum_44_present()
57 if (memcmp(tb->header.oem_id, "APMC0D", ACPI_OEM_ID_SIZE) && in xgene_8250_erratum_present()
58 memcmp(tb->header.oem_id, "HPE ", ACPI_OEM_ID_SIZE)) in xgene_8250_erratum_present()
61 if (!memcmp(tb->header.oem_table_id, "XGENESPC", in xgene_8250_erratum_present()
65 if (!memcmp(tb->header.oem_table_id, "ProLiant", in xgene_8250_erratum_present()
/kernel/linux/linux-6.6/block/partitions/
H A Datari.c29 return memcmp (s, "GEM", 3) == 0 || memcmp (s, "BGM", 3) == 0 || in OK_id()
30 memcmp (s, "LNX", 3) == 0 || memcmp (s, "SWP", 3) == 0 || in OK_id()
31 memcmp (s, "RAW", 3) == 0 ; in OK_id()
82 if (memcmp (pi->id, "XGM", 3) != 0) { in atari_partition()
118 if (memcmp( xrs->part[1].id, "XGM", 3 ) != 0) { in atari_partition()
/third_party/lz4/ossfuzz/
H A Dround_trip_fuzzer.c42 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
52 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
63 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
74 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
85 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
96 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
107 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
/third_party/ffmpeg/libavformat/
H A Dnistspheredec.c60 if (!memcmp(buffer, "end_head", 8)) { in nist_read_header()
92 } else if (!memcmp(buffer, "channel_count", 13)) { in nist_read_header()
96 } else if (!memcmp(buffer, "sample_byte_format", 18)) { in nist_read_header()
109 } else if (!memcmp(buffer, "sample_coding", 13)) { in nist_read_header()
111 } else if (!memcmp(buffer, "sample_count", 12)) { in nist_read_header()
113 } else if (!memcmp(buffer, "sample_n_bytes", 14)) { in nist_read_header()
117 } else if (!memcmp(buffer, "sample_rate", 11)) { in nist_read_header()
119 } else if (!memcmp(buffer, "sample_sig_bits", 15)) { in nist_read_header()
H A Drtpenc_jpeg.c104 && !memcmp(buf + i + 2, ff_mjpeg_bits_dc_luminance + 1, 16) in ff_rtp_send_jpeg()
105 && !memcmp(buf + i + 18, ff_mjpeg_val_dc, 12)) { in ff_rtp_send_jpeg()
116 && !memcmp(buf + i + 2, ff_mjpeg_bits_dc_chrominance + 1, 16) in ff_rtp_send_jpeg()
117 && !memcmp(buf + i + 18, ff_mjpeg_val_dc, 12)) { in ff_rtp_send_jpeg()
128 && !memcmp(buf + i + 2, ff_mjpeg_bits_ac_luminance + 1, 16) in ff_rtp_send_jpeg()
129 && !memcmp(buf + i + 18, ff_mjpeg_val_ac_luminance, 162)) { in ff_rtp_send_jpeg()
140 && !memcmp(buf + i + 2, ff_mjpeg_bits_ac_chrominance + 1, 16) in ff_rtp_send_jpeg()
141 && !memcmp(buf + i + 18, ff_mjpeg_val_ac_chrominance, 162)) { in ff_rtp_send_jpeg()
/third_party/lwip/test/unit/ip6/
H A Dtest_ip6.c161 fail_unless(memcmp(&addr6, &addr_expected, 16) == 0); in START_TEST()
165 fail_unless(memcmp(&addr, &addr_expected, 16) == 0); in START_TEST()
171 fail_unless(memcmp(&addr6, &addr_expected, 16) == 0); in START_TEST()
175 fail_unless(memcmp(&addr, &addr_expected, 16) == 0); in START_TEST()
181 fail_unless(memcmp(&addr6, &addr_expected, 16) == 0); in START_TEST()
185 fail_unless(memcmp(&addr, &addr_expected, 16) == 0); in START_TEST()
191 fail_unless(memcmp(&addr6, &addr_expected, 16) == 0); in START_TEST()
195 fail_unless(memcmp(&addr, &addr_expected, 16) == 0); in START_TEST()
255 fail_unless(!memcmp(test_netif6.hwaddr, zeros, 6)); in START_TEST()
258 fail_unless(!memcmp(netif_ip6_add in START_TEST()
[all...]
/kernel/linux/linux-5.10/drivers/staging/rtl8192u/ieee80211/
H A Drtl819x_HTProc.c132 if (!memcmp(CapIE, EWC11NHTCap, sizeof(EWC11NHTCap))) { in HTDebugHTCapability()
167 if (!memcmp(InfoIE, EWC11NHTInfo, sizeof(EWC11NHTInfo))) { in HTDebugHTInfo()
274 if ((memcmp(net->bssid, BELKINF5D8233V1_RALINK, 3) == 0) || in IsHTHalfNmodeAPs()
275 (memcmp(net->bssid, BELKINF5D82334V3_RALINK, 3) == 0) || in IsHTHalfNmodeAPs()
276 (memcmp(net->bssid, PCI_RALINK, 3) == 0) || in IsHTHalfNmodeAPs()
277 (memcmp(net->bssid, EDIMAX_RALINK, 3) == 0) || in IsHTHalfNmodeAPs()
278 (memcmp(net->bssid, AIRLINK_RALINK, 3) == 0) || in IsHTHalfNmodeAPs()
281 else if ((memcmp(net->bssid, UNKNOWN_BORADCOM, 3) == 0) || in IsHTHalfNmodeAPs()
282 (memcmp(net->bssid, LINKSYSWRT330_LINKSYSWRT300_BROADCOM, 3) == 0) || in IsHTHalfNmodeAPs()
283 (memcmp(ne in IsHTHalfNmodeAPs()
[all...]

Completed in 13 milliseconds

12345678910>>...203