/external/libaom/libaom/av1/encoder/ |
D | av1_fwd_txfm1d.c | 22 int32_t *bf0, *bf1; in av1_fdct4() local 30 bf1 = output; in av1_fdct4() 31 bf1[0] = input[0] + input[3]; in av1_fdct4() 32 bf1[1] = input[1] + input[2]; in av1_fdct4() 33 bf1[2] = -input[2] + input[1]; in av1_fdct4() 34 bf1[3] = -input[3] + input[0]; in av1_fdct4() 35 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct4() 41 bf1 = step; in av1_fdct4() 42 bf1[0] = half_btf(cospi[32], bf0[0], cospi[32], bf0[1], cos_bit); in av1_fdct4() 43 bf1[1] = half_btf(-cospi[32], bf0[1], cospi[32], bf0[0], cos_bit); in av1_fdct4() [all …]
|
/external/libaom/libaom/av1/common/ |
D | av1_inv_txfm1d.c | 23 int32_t *bf0, *bf1; in av1_idct4() local 30 bf1 = output; in av1_idct4() 31 bf1[0] = input[0]; in av1_idct4() 32 bf1[1] = input[2]; in av1_idct4() 33 bf1[2] = input[1]; in av1_idct4() 34 bf1[3] = input[3]; in av1_idct4() 35 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_idct4() 40 bf1 = step; in av1_idct4() 41 bf1[0] = half_btf(cospi[32], bf0[0], cospi[32], bf0[1], cos_bit); in av1_idct4() 42 bf1[1] = half_btf(cospi[32], bf0[0], -cospi[32], bf0[1], cos_bit); in av1_idct4() [all …]
|
/external/libaom/libaom/av1/common/x86/ |
D | highbd_inv_txfm_avx2.c | 280 __m256i *bf1, const __m256i *cospim8, const __m256i *cospi56, in idct32_stage4_avx2() argument 285 temp1 = half_btf_avx2(cospim8, &bf1[17], cospi56, &bf1[30], rounding, bit); in idct32_stage4_avx2() 286 bf1[30] = half_btf_avx2(cospi56, &bf1[17], cospi8, &bf1[30], rounding, bit); in idct32_stage4_avx2() 287 bf1[17] = temp1; in idct32_stage4_avx2() 289 temp2 = half_btf_avx2(cospim56, &bf1[18], cospim8, &bf1[29], rounding, bit); in idct32_stage4_avx2() 290 bf1[29] = half_btf_avx2(cospim8, &bf1[18], cospi56, &bf1[29], rounding, bit); in idct32_stage4_avx2() 291 bf1[18] = temp2; in idct32_stage4_avx2() 293 temp1 = half_btf_avx2(cospim40, &bf1[21], cospi24, &bf1[26], rounding, bit); in idct32_stage4_avx2() 294 bf1[26] = half_btf_avx2(cospi24, &bf1[21], cospi40, &bf1[26], rounding, bit); in idct32_stage4_avx2() 295 bf1[21] = temp1; in idct32_stage4_avx2() [all …]
|
D | highbd_inv_txfm_sse4.c | 183 __m128i *bf1, const __m128i *cospim8, const __m128i *cospi56, in idct32_stage4_sse4_1() argument 188 temp1 = half_btf_sse4_1(cospim8, &bf1[17], cospi56, &bf1[30], rounding, bit); in idct32_stage4_sse4_1() 189 bf1[30] = half_btf_sse4_1(cospi56, &bf1[17], cospi8, &bf1[30], rounding, bit); in idct32_stage4_sse4_1() 190 bf1[17] = temp1; in idct32_stage4_sse4_1() 192 temp2 = half_btf_sse4_1(cospim56, &bf1[18], cospim8, &bf1[29], rounding, bit); in idct32_stage4_sse4_1() 193 bf1[29] = in idct32_stage4_sse4_1() 194 half_btf_sse4_1(cospim8, &bf1[18], cospi56, &bf1[29], rounding, bit); in idct32_stage4_sse4_1() 195 bf1[18] = temp2; in idct32_stage4_sse4_1() 197 temp1 = half_btf_sse4_1(cospim40, &bf1[21], cospi24, &bf1[26], rounding, bit); in idct32_stage4_sse4_1() 198 bf1[26] = in idct32_stage4_sse4_1() [all …]
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 380 BloomFilter<String> bf1 = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100); in testCollector() local 381 bf1.put("1"); in testCollector() 382 bf1.put("2"); in testCollector() 385 bf1, in testCollector() 389 bf1, in testCollector() 395 BloomFilter<String> bf1 = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100); in testEquals() local 396 bf1.put("1"); in testEquals() 397 bf1.put("2"); in testEquals() 403 new EqualsTester().addEqualityGroup(bf1, bf2).testEquals(); in testEquals() 407 new EqualsTester().addEqualityGroup(bf1).addEqualityGroup(bf2).testEquals(); in testEquals() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 379 BloomFilter<String> bf1 = BloomFilter.create(Funnels.unencodedCharsFunnel(), 100); in testEquals() local 380 bf1.put("1"); in testEquals() 381 bf1.put("2"); in testEquals() 387 new EqualsTester().addEqualityGroup(bf1, bf2).testEquals(); in testEquals() 391 new EqualsTester().addEqualityGroup(bf1).addEqualityGroup(bf2).testEquals(); in testEquals() 395 BloomFilter<Long> bf1 = BloomFilter.create(new CustomFunnel(), 100); in testEqualsWithCustomFunnel() local 397 assertEquals(bf1, bf2); in testEqualsWithCustomFunnel() 437 BloomFilter<Integer> bf1 = BloomFilter.create(Funnels.integerFunnel(), 100); in testPutAll() local 438 bf1.put(element1); in testPutAll() 439 assertTrue(bf1.mightContain(element1)); in testPutAll() [all …]
|
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-unsequenced.cpp | 452 unsigned bf1 : 2; member 480 ++bf1 + ++bf1; // cxx11-warning {{multiple unsequenced modifications to 'bf1'}} in member_f() 482 bf1 + ++bf1; // cxx11-warning {{unsequenced modification and access to 'bf1'}} in member_f() 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() 488 ++s.bf1 + ++s.bf1; // no-warning TODO {{multiple unsequenced modifications to}} in member_f() 489 s.bf1 + ++s.bf1; // 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() 493 ++bf1 + ++s.bf1; // no-warning in member_f() [all …]
|
/external/llvm-project/compiler-rt/test/asan/TestCases/Windows/ |
D | bitfield.cpp | 7 unsigned int bf1:1; member 15 s->bf1 = 1; in main()
|
D | bitfield_uaf.cpp | 7 unsigned int bf1:1; member
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | bitfield.cc | 7 unsigned int bf1:1; member 15 s->bf1 = 1; in main()
|
D | bitfield_uaf.cc | 7 unsigned int bf1:1; member
|
/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() 43 unsigned bf1 : 8; 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() 43 unsigned bf1 : 8; member
|
/external/llvm-project/llvm/test/CodeGen/BPF/CORE/ |
D | field-reloc-bitfield-2.ll | 7 ; char bf1:6, 19 ; bf1, bf1, bf3 and bf4 and the ABI alignment is 1 byte. So for bf4 access, 111 !22 = !DIDerivedType(tag: DW_TAG_member, name: "bf1", scope: !18, file: !1, line: 3, baseType: !21,…
|
D | field-reloc-bitfield-2-bpfeb.ll | 7 ; char bf1:6, 19 ; bf1, bf1, bf3 and bf4 and the ABI alignment is 1 byte. So for bf4 access, 111 !22 = !DIDerivedType(tag: DW_TAG_member, name: "bf1", scope: !18, file: !1, line: 3, baseType: !21,…
|
D | field-reloc-bitfield-1-bpfeb.ll | 11 ; unsigned bf1:5, 115 !27 = !DIDerivedType(tag: DW_TAG_member, name: "bf1", scope: !18, file: !1, line: 7, baseType: !4, …
|
/external/llvm-project/clang/test/CodeGen/ |
D | le32-arguments.c | 61 void f8(bitfield1 bf1) {} in f8() argument
|
D | lanai-arguments.c | 75 void f10(bitfield1 bf1) {} in f10() argument
|
/external/clang/test/CodeGen/ |
D | le32-arguments.c | 61 void f8(bitfield1 bf1) {} in f8() argument
|
D | lanai-arguments.c | 75 void f10(bitfield1 bf1) {} in f10() argument
|
D | wasm-arguments.c | 93 void f10(bitfield1 bf1) {} in f10() argument
|
/external/guava/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 348 (bf1, bf2) -> { in toBloomFilter() 349 bf1.putAll(bf2); in toBloomFilter() 350 return bf1; in toBloomFilter()
|
/external/llvm-project/clang/test/CodeGen/WebAssembly/ |
D | wasm-arguments.c | 129 void bitfield_arg(bitfield1 bf1) {} in bitfield_arg() argument
|
/external/python/pybind11/tests/ |
D | test_factory_constructors.cpp | 345 py::class_<BadF1, PyBadF1, std::shared_ptr<BadF1>> bf1(m, "BadF1"); in TEST_SUBMODULE() 347 bf1.def(py::init([]() { return 3; })); in TEST_SUBMODULE() 349 bf1.def(py::init([]() { static int three = 3; return &three; })); in TEST_SUBMODULE() 352 bf1.def(py::init([]() { return std::shared_ptr<BadF1Base>(new BadF1()); })); in TEST_SUBMODULE()
|
/external/llvm-project/clang/test/CodeGen/arc/ |
D | arguments.c | 81 void f10(bitfield1 bf1) {} in f10() argument
|