Home
last modified time | relevance | path

Searched refs:Tp (Results 1 – 25 of 253) sorted by relevance

1234567891011

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp208 Constant *getRandomConstant(Type *Tp) { in getRandomConstant()
209 if (Tp->isIntegerTy()) { in getRandomConstant()
211 return ConstantInt::getAllOnesValue(Tp); in getRandomConstant()
212 return ConstantInt::getNullValue(Tp); in getRandomConstant()
213 } else if (Tp->isFloatingPointTy()) { in getRandomConstant()
215 return ConstantFP::getAllOnesValue(Tp); in getRandomConstant()
216 return ConstantFP::getNullValue(Tp); in getRandomConstant()
218 return UndefValue::get(Tp); in getRandomConstant()
222 Value *getRandomValue(Type *Tp) { in getRandomValue()
226 if (V->getType() == Tp) in getRandomValue()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dlog.h19 template <class Tp>
20 friend LogType& operator<<(LogType&, Tp const&);
29 template <class Tp>
30 LogType& operator<<(LogType& log, Tp const& value) {
H A Dsysinfo.cc179 template <class Tp,
180 class = typename std::enable_if<std::is_integral<Tp>::value>::type>
181 bool GetSysctl(std::string const& Name, Tp* Out) { in GetSysctl()
185 *Out = static_cast<Tp>(Buff.GetAsUnsigned()); in GetSysctl()
189 template <class Tp, size_t N>
190 bool GetSysctl(std::string const& Name, std::array<Tp, N>* Out) { in GetSysctl() argument
193 *Out = Buff.GetAsArray<Tp, N>(); in GetSysctl()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dlog.h19 template <class Tp>
20 friend LogType& operator<<(LogType&, Tp const&);
29 template <class Tp>
30 LogType& operator<<(LogType& log, Tp const& value) {
H A Dsysinfo.cc181 template <class Tp,
182 class = typename std::enable_if<std::is_integral<Tp>::value>::type>
183 bool GetSysctl(std::string const& Name, Tp* Out) { in GetSysctl()
187 *Out = static_cast<Tp>(Buff.GetAsUnsigned()); in GetSysctl()
191 template <class Tp, size_t N>
192 bool GetSysctl(std::string const& Name, std::array<Tp, N>* Out) { in GetSysctl() argument
195 *Out = Buff.GetAsArray<Tp, N>(); in GetSysctl()
/netbsd-src/external/gpl2/groff/dist/font/devdvi/
H A DTBIEC2455 Tp e -61734
2456 Tp u0065_030C -61734
2457 Tp u0065_0328 -61734
2458 Tp `e -61734
2459 Tp 'e -61734
2460 Tp ^e -61734
2461 Tp :e -61734
2462 Tp a -61734
2463 Tp u0061_0306 -61734
2464 Tp u0061_0328 -61734
[all …]
H A DTIEC2455 Tp e -53581
2456 Tp u0065_030C -53581
2457 Tp u0065_0328 -53581
2458 Tp `e -53581
2459 Tp 'e -53581
2460 Tp ^e -53581
2461 Tp :e -53581
2462 Tp a -53581
2463 Tp u0061_0306 -53581
2464 Tp u0061_0328 -53581
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DIVDescriptors.cpp793 Constant *RecurrenceDescriptor::getRecurrenceIdentity(RecurKind K, Type *Tp, in getRecurrenceIdentity() argument
800 return ConstantInt::get(Tp, 0); in getRecurrenceIdentity()
803 return ConstantInt::get(Tp, 1); in getRecurrenceIdentity()
806 return ConstantInt::get(Tp, -1, true); in getRecurrenceIdentity()
809 return ConstantFP::get(Tp, 1.0L); in getRecurrenceIdentity()
818 return ConstantFP::get(Tp, 0.0L); in getRecurrenceIdentity()
819 return ConstantFP::get(Tp, -0.0L); in getRecurrenceIdentity()
821 return ConstantInt::get(Tp, -1); in getRecurrenceIdentity()
823 return ConstantInt::get(Tp, 0); in getRecurrenceIdentity()
825 return ConstantInt::get(Tp, in getRecurrenceIdentity()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/ce/fuc/
H A Dcom.fuc520 // Offset calculation is performed as follows (Tp/Th/Td from TILE_MODE):
521 // nTx = round_up(w * cpp, 1 << Tp) >> Tp
523 // Txo = (x * cpp) & ((1 << Tp) - 1)
524 // Tx = (x * cpp) >> Tp
530 // off = (Tzo << Tp << Th) + (Tyo << Tp) + Txo
531 // off += ((Tz * nTy * nTx)) + (Ty * nTx) + Tx) << Td << Th << Tp;
539 // translate TILE_MODE into Tp, Th, Td shift values
560 // Op = (x * cpp) & ((1 << Tp) - 1)
561 // Tx = (x * cpp) >> Tp
590 // Op += Tyo << Tp
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
H A Dbenchmark.h317 template <class Tp>
319 void DoNotOptimize(Tp const& value) { in DoNotOptimize()
323 template <class Tp>
324 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp& value) { in DoNotOptimize()
338 template <class Tp>
339 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp const& value) { in DoNotOptimize()
348 template <class Tp>
349 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp const& value) { in DoNotOptimize()
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
H A Dbenchmark.h314 template <class Tp>
315 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp const& value) { in DoNotOptimize()
319 template <class Tp>
320 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp& value) { in DoNotOptimize()
334 template <class Tp>
335 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp const& value) { in DoNotOptimize()
342 template <class Tp>
343 inline BENCHMARK_ALWAYS_INLINE void DoNotOptimize(Tp const& value) { in DoNotOptimize()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp497 const Type *Tp = ConversionDec->getConversionType().getTypePtrOrNull(); in isMoveSafeMethod() local
498 if (!Tp) in isMoveSafeMethod()
500 if (Tp->isBooleanType() || Tp->isVoidType() || Tp->isVoidPointerType()) in isMoveSafeMethod()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h117 InstructionCost getAddressComputationCost(Type *Tp, ScalarEvolution *SE,
127 InstructionCost getShuffleCost(TTI::ShuffleKind Kind, Type *Tp,
/netbsd-src/external/gpl2/groff/dist/font/devX75/
H A DNR212 Tp 5,8,2 0 0376
H A DNBI212 Tp 7,8,2 0 0376
/netbsd-src/external/gpl2/groff/dist/font/devX100/
H A DTBI212 Tp 7,10,3 0 0376
H A DNBI212 Tp 8,11,3 0 0376
/netbsd-src/external/gpl2/groff/dist/font/devX75-12/
H A DHR212 Tp 7,9,3 0 0376
H A DNR212 Tp 7,9,3 0 0376
H A DCR212 Tp 7,9,3 0 0376
H A DNI212 Tp 7,9,3 0 0376
/netbsd-src/external/gpl2/groff/dist/font/devX100-12/
H A DHR212 Tp 9,12,4 0 0376
H A DHB212 Tp 10,12,4 0 0376
H A DHBI212 Tp 10,12,4 0 0376
H A DTR212 Tp 8,11,4 0 0376

1234567891011