Home
last modified time | relevance | path

Searched refs:Combine (Results 1 – 25 of 37) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCombine.td1 //=- MipsCombine.td - Define Mips Combine Rules --------------*- tablegen -*-=//
9 include "llvm/Target/GlobalISel/Combine.td"
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVCombine.td1 //=- SPIRVCombine.td - Define SPIRV Combine Rules -------------*-tablegen -*-=//
8 include "llvm/Target/GlobalISel/Combine.td"
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVCombine.td1 //=- RISCVCombine.td - Define RISC-V Combine Rules -----------*- tablegen -*-=//
12 include "llvm/Target/GlobalISel/Combine.td"
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-test.cc59 using ::testing::Combine;
413 Combine(Values(foo, bar), Values(3, 4)); in TEST()
424 Combine(Values(0, 1), Values(3, 4), Values(5, 6)); in TEST()
438 Combine(Values(42), Values(0, 1)); in TEST()
450 Combine(Values(0, 1), Values(42)); in TEST()
461 Combine(Range(0, 0), Values(0, 1)); in TEST()
469 Combine(Values(0, 1), Range(1, 1)); in TEST()
481 Combine(Values(foo, bar), Values(1), Values(2), Values(3), Values(4), in TEST()
508 Combine(Values(0, 1), Values(NonDefaultConstructAssignString("A"), in TEST()
554 Combine(Values(foo, bar), Values(3, 4))); in TEST()
[all …]
/freebsd/contrib/googletest/googletest/samples/
H A Dsample8_unittest.cc83 using ::testing::Combine;
152 Combine(Bool(), Values(1, 10)));
/freebsd/tests/sys/fs/fusefs/
H A Dio.cc588 Combine(Bool(), /* async read */
596 Combine(Bool(), /* async read */
604 Combine(Values(true), /* async read */
H A Dcache.cc199 Combine(
/freebsd/contrib/googletest/docs/
H A Dsamples.md18 * Sample #8 shows using `Combine()` in value-parameterized tests.
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCombine.td1 //=- AMDGPUCombine.td - Define AMDGPU Combine Rules ----------*- tablegen -*-=//
9 include "llvm/Target/GlobalISel/Combine.td"
/freebsd/contrib/ntp/
H A DTODO117 - Combine enable-step-slew and enable-ntpdate-step
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-param-test.h407 internal::CartesianProductHolder<Generator...> Combine(const Generator&... g) { in Combine() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Combine.td1 //=- AArch64Combine.td - Define AArch64 Combine Rules ---------*-tablegen -*-=//
12 include "llvm/Target/GlobalISel/Combine.td"
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td1 //===- Combine.td - Combine rule definitions ---------------*- tablegen -*-===//
368 // Combine bitreverse(shl (bitreverse x), y)) -> (lshr x, y)
379 // Combine bitreverse(lshr (bitreverse x), y)) -> (shl x, y)
390 // Combine (shl (add x, c1), c2) -> (add (shl x, c2), c1 << c2)
391 // Combine (shl (or x, c1), c2) -> (or (shl x, c2), c1 << c2)
1612 // Combine v8i8 (buildvector i8 (trunc(unmerge)), i8 (trunc), i8 (trunc), i8 (trunc), undef, undef,…
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonIntrinsicsV5.td233 // Combine Words Into Doublewords.
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md112 | `Combine(g1, g2, ..., gN)` | Yields as `std::tuple` *n*-tuples all combinations (Cartesian prod…
181 ConvertGenerator<std::tuple<int, bool>>(Combine(Values(0.1, 1.2), Bool())));
184 In this example `Combine` supports the generation of `std::tuple<int, bool>>`
205 ConvertGenerator(Combine(Values(1, 1.2), Bool()),
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def89 " Combine with ASAN_OPTIONS=dedup_token_length=3 (or similar) to ensure that"
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.td115 // Combine the low and high GR32s into a single class. This can only be
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp947 CurDAG->Combine(BeforeLegalizeTypes, getBatchAA(), OptLevel); in CodeGenAndEmitDAG()
993 CurDAG->Combine(AfterLegalizeTypes, getBatchAA(), OptLevel); in CodeGenAndEmitDAG()
1047 CurDAG->Combine(AfterLegalizeVectorOps, getBatchAA(), OptLevel); in CodeGenAndEmitDAG()
1087 CurDAG->Combine(AfterLegalizeDAG, getBatchAA(), OptLevel); in CodeGenAndEmitDAG()
/freebsd/usr.sbin/bsdconfig/share/media/
H A Dwlan.subr1063 # Combine description with existing help
1159 # Combine flags into existing help
/freebsd/contrib/llvm-project/lld/COFF/
H A DOptions.td87 def merge : P<"merge", "Combine sections">;
/freebsd/stand/forth/
H A Dmenusets.4th289 \ Combine strings
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1206 const bool Combine = IsAnd ? (Res1.isTrue() && Res2.isTrue()) in checkIncorrectLogicOperator() local
1209 AlwaysTrue &= Combine; in checkIncorrectLogicOperator()
1210 AlwaysFalse &= !Combine; in checkIncorrectLogicOperator()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp10723 IntRange (*Combine)(IntRange, IntRange) = IntRange::join; in TryGetExprRange() local
10767 Combine = IntRange::bit_and; in TryGetExprRange()
10816 Combine = IntRange::sum; in TryGetExprRange()
10823 Combine = IntRange::difference; in TryGetExprRange()
10828 Combine = IntRange::product; in TryGetExprRange()
10864 Combine = IntRange::rem; in TryGetExprRange()
10887 IntRange C = Combine(*L, *R); in TryGetExprRange()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1502 bool Combine = !MS.TrackOrigins; in materializeInstructionChecks() local
1527 if (!Combine) { in materializeInstructionChecks()
1543 assert(Combine); in materializeInstructionChecks()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h610 LLVM_ABI void Combine(CombineLevel Level, BatchAAResults *BatchAA,

12