/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 383 BloomFilter<String> bf2 = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100); in testEquals() local 384 bf2.put("1"); in testEquals() 385 bf2.put("2"); in testEquals() 387 new EqualsTester().addEqualityGroup(bf1, bf2).testEquals(); in testEquals() 389 bf2.put("3"); in testEquals() 391 new EqualsTester().addEqualityGroup(bf1).addEqualityGroup(bf2).testEquals(); in testEquals() 396 BloomFilter<Long> bf2 = BloomFilter.create(new CustomFunnel(), 100); in testEqualsWithCustomFunnel() local 397 assertEquals(bf1, bf2); in testEqualsWithCustomFunnel() 442 BloomFilter<Integer> bf2 = BloomFilter.create(Funnels.integerFunnel(), 100); in testPutAll() local 443 bf2.put(element2); in testPutAll() [all …]
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 399 BloomFilter<String> bf2 = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100); in testEquals() local 400 bf2.put("1"); in testEquals() 401 bf2.put("2"); in testEquals() 403 new EqualsTester().addEqualityGroup(bf1, bf2).testEquals(); in testEquals() 405 bf2.put("3"); in testEquals() 407 new EqualsTester().addEqualityGroup(bf1).addEqualityGroup(bf2).testEquals(); in testEquals() 412 BloomFilter<Long> bf2 = BloomFilter.create(new CustomFunnel(), 100); in testEqualsWithCustomFunnel() local 413 assertEquals(bf1, bf2); in testEqualsWithCustomFunnel() 458 BloomFilter<Integer> bf2 = BloomFilter.create(Funnels.integerFunnel(), 100); in testPutAll() local 459 bf2.put(element2); in testPutAll() [all …]
|
/external/llvm-project/compiler-rt/test/asan/TestCases/Windows/ |
D | bitfield_uaf.cpp | 8 unsigned int bf2:2; member 14 s->bf2 = 2; in make_access()
|
D | bitfield.cpp | 8 unsigned int bf2:2; member 16 s->bf2 = 2; in main()
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | bitfield_uaf.cc | 8 unsigned int bf2:2; member 14 s->bf2 = 2; in make_access()
|
D | bitfield.cc | 8 unsigned int bf2:2; member 16 s->bf2 = 2; in main()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | copy-constructor-synthesis.cpp | 26 X() : f1(1.0), d1(2.0), i1(3), name("HELLO"), bf1(0xff), bf2(0xabcd), in X() 33 printf("bf1 = %x bf2 = %x\n", bf1, bf2); in pr() 44 unsigned bf2 : 16; member
|
/external/clang/test/CodeGenCXX/ |
D | copy-constructor-synthesis.cpp | 26 X() : f1(1.0), d1(2.0), i1(3), name("HELLO"), bf1(0xff), bf2(0xabcd), in X() 33 printf("bf1 = %x bf2 = %x\n", bf1, bf2); in pr() 44 unsigned bf2 : 16; member
|
/external/fmtlib/test/ |
D | os-test.cc | 187 buffered_file bf2(std::move(bf)); in TEST() local 188 EXPECT_EQ(fp, bf2.get()); in TEST() 196 buffered_file bf2; in TEST() local 197 bf2 = std::move(bf); in TEST() 198 EXPECT_EQ(fp, bf2.get()); in TEST() 204 buffered_file bf2 = open_buffered_file(); in TEST() local 205 int old_fd = bf2.fileno(); in TEST() 206 bf2 = std::move(bf); in TEST()
|
/external/llvm-project/llvm/test/CodeGen/BPF/CORE/ |
D | field-reloc-bitfield-1-bpfeb.ll | 12 ; bf2:1; 16 ; return __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_OFFSET) + 17 ; __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_SIZE) + 18 ; __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_LSHIFT_U64); 116 !28 = !DIDerivedType(tag: DW_TAG_member, name: "bf2", scope: !18, file: !1, line: 8, baseType: !4, …
|
D | field-reloc-bitfield-1.ll | 12 ; bf2:1; 16 ; return __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_OFFSET) + 17 ; __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_SIZE) + 18 ; __builtin_preserve_field_info(arg->bf2, FIELD_TYPE_LSHIFT_U64); 116 !28 = !DIDerivedType(tag: DW_TAG_member, name: "bf2", scope: !18, file: !1, line: 8, baseType: !4, …
|
D | field-reloc-bitfield-2.ll | 8 ; bf2:2, 112 !23 = !DIDerivedType(tag: DW_TAG_member, name: "bf2", scope: !18, file: !1, line: 4, baseType: !21,…
|
D | field-reloc-bitfield-2-bpfeb.ll | 8 ; bf2:2, 112 !23 = !DIDerivedType(tag: DW_TAG_member, name: "bf2", scope: !18, file: !1, line: 4, baseType: !21,…
|
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-unsequenced.cpp | 453 unsigned bf2 : 2; member 484 ++bf1 + ++bf2; // no-warning TODO {{multiple unsequenced modifications to}} in member_f() 485 bf1 + ++bf2; // no-warning TODO {{unsequenced modification and access to}} in member_f() 490 ++s.bf1 + ++s.bf2; // no-warning TODO {{multiple unsequenced modifications to}} in member_f() 491 s.bf1 + ++s.bf2; // no-warning TODO {{unsequenced modification and access to}} in member_f() 495 ++bf1 + ++s.bf2; // no-warning in member_f() 496 bf1 + ++s.bf2; // no-warning in member_f()
|
/external/guava/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 348 (bf1, bf2) -> { in toBloomFilter() 349 bf1.putAll(bf2); in toBloomFilter()
|
/external/llvm-project/compiler-rt/lib/asan/tests/ |
D | asan_test.cpp | 243 int bf2:1; member 252 EXPECT_DEATH(x->bf2 = 0, "use-after-free"); in TEST()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_test.cc | 224 int bf2:1; member 233 EXPECT_DEATH(x->bf2 = 0, "use-after-free"); in TEST()
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | arc-captured-32bit-block-var-layout.m | 210 void bf2() { function
|
D | arc-captured-block-var-layout.m | 209 void bf2() { function
|
/external/clang/test/CodeGenObjC/ |
D | arc-captured-32bit-block-var-layout.m | 210 void bf2() { function
|
D | arc-captured-block-var-layout.m | 209 void bf2() { function
|
/external/elfutils/tests/ |
D | run-strings-test.sh | 114 testfile4: bf2 __ti13bad_exception
|
/external/llvm/test/CodeGen/AArch64/ |
D | bitfield-insert.ll | 181 ; (e.g. result of str.bf1 = str.bf2)
|
/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | bitfield-insert.ll | 218 ; (e.g. result of str.bf1 = str.bf2)
|
/external/llvm-project/llvm/test/MC/X86/AlignedBundling/ |
D | autogen-inst-offset-align-to-end.s | 2536 # CHECK: 1bf2: incl
|