/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | bit.h | 105 uint16_t UV = V; in byteswap() 109 return _byteswap_ushort(UV); 111 uint16_t Hi = UV << 8; in has_single_bit() 112 uint16_t Lo = UV >> 8; in has_single_bit() 116 uint32_t UV = V; in count() 118 return __builtin_bswap32(UV); in count() 120 return _byteswap_ulong(UV); in count() 122 uint32_t Byte0 = UV & 0x000000FF; in count() 123 uint32_t Byte1 = UV & 0x0000FF00; in count() 124 uint32_t Byte2 = UV in count() 69 uint16_t UV = V; byteswap() local 80 uint32_t UV = V; byteswap() local 93 uint64_t UV = V; byteswap() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanValue.h | 66 VPValue(const unsigned char SC, Value *UV = nullptr, VPDef *Def = nullptr); 88 VPValue(Value *UV = nullptr) : VPValue(VPValueSC, UV, nullptr) {} in VPValue() argument 90 VPValue(VPDef *Def, Value *UV = nullptr) : VPValue(VPVRecipeSC, UV, Def) {} in VPValue() argument 92 VPValue(Value *UV, VPDef *Def) : VPValue(VPValueSC, UV, Def) {} in VPValue() argument
|
H A D | VPlan.cpp | 83 VPValue::VPValue(const unsigned char SC, Value *UV, VPDef *Def) in VPValue() argument 84 : SubclassID(SC), UnderlyingVal(UV), Def(Def) { in VPValue() 1518 auto *UV = V->getUnderlyingValue(); in assignName() local 1519 if (!UV) { in assignName() 1529 UV->printAsOperand(S, false); in assignName() 1537 if (V->isLiveIn() && isa<ConstantInt, ConstantFP>(UV)) in assignName() 1590 if (auto *UV = V->getUnderlyingValue()) { in getOrCreateName() local 1593 UV->printAsOperand(S, false); in getOrCreateName()
|
H A D | VPlan.h | 902 VPSingleDefRecipe(const unsigned char SC, IterT Operands, Value *UV, 904 : VPRecipeBase(SC, Operands, DL), VPValue(this, UV) {} in VPRecipeBase() 1462 if (auto *UV = getUnderlyingValue()) in clone() local 1464 *cast<CastInst>(UV)); in clone() 1538 VPWidenCallRecipe(Value *UV, iterator_range<IterT> CallArguments, 1541 : VPSingleDefRecipe(VPDef::VPWidenCallSC, CallArguments, UV, DL), in VPSingleDefRecipe() argument
|
H A D | VPlanTransforms.cpp | 1127 auto *UV = dyn_cast_or_null<Instruction>(Op->getUnderlyingValue()); in truncateToMinimalBitwidths() local 1128 if (UV && MinBWs.contains(UV) && !ProcessedTruncs.contains(Op) && in truncateToMinimalBitwidths()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LiveDebugVariables.cpp | 779 UserValue *&UV = userVarMap[ID]; in getUserValue() local 780 if (!UV) { in getUserValue() 783 UV = userValues.back().get(); in getUserValue() 785 return UV; in getUserValue() 795 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) in lookupVirtReg() local 796 return UV->getLeader(); in lookupVirtReg() 858 UserValue *UV = getUserValue(Var, Expr->getFragmentInfo(), MI.getDebugLoc()); in handleDebugValue() local 860 UV->addDef(Idx, in handleDebugValue() 871 UV->addDef(Idx, UndefMOs, false, IsList, *Expr); in handleDebugValue() 1257 for (const auto &UV : userValues) { in computeIntervals() local [all …]
|
/freebsd/bin/dd/ |
H A D | ref.pareven | 6 00000050 50 d1 d2 53 d4 55 56 d7 d8 59 5a db 5c dd de 5f |P..S.UV..YZ.\.._| 14 000000d0 50 d1 d2 53 d4 55 56 d7 d8 59 5a db 5c dd de 5f |P..S.UV..YZ.\.._|
|
/freebsd/contrib/libfido2/ |
H A D | NEWS | 113 ** Support for FIDO 2.1 UV token permissions. 162 ** fido2-{assert,cred}: new options to explicitly toggle UP, UV.
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | OpenMPOpt.cpp | 354 std::shared_ptr<UseVector> &UV = UsesMap[F]; in getOrCreateUseVector() local 355 if (!UV) in getOrCreateUseVector() 356 UV = std::make_shared<UseVector>(); in getOrCreateUseVector() 357 return *UV; in getOrCreateUseVector() 392 UseVector &UV = getOrCreateUseVector(F); in foreachUse() local 394 for (Use *U : UV) { in foreachUse() 404 UV[Idx] = UV.back(); in foreachUse() 405 UV.pop_back(); in foreachUse() 1820 auto *UV = RFI.getUseVector(F); in deduplicateRuntimeCalls() local 1821 if (!UV || UV->size() + (ReplVal != nullptr) < 2) in deduplicateRuntimeCalls() [all …]
|
H A D | AttributorAttributes.cpp | 4354 UndefValue &UV = *UndefValue::get(U->getType()); in manifest() local 4355 if (A.changeUseAfterManifest(U, UV)) in manifest() 4444 UndefValue &UV = *UndefValue::get(getAssociatedFunction()->getReturnType()); in manifest() local 4448 AnyChange |= A.changeUseAfterManifest(RI.getOperandUse(0), UV); in manifest()
|
/freebsd/secure/caroot/trusted/ |
H A D | Certum_Trusted_Network_CA.pem | 81 UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM
|
/freebsd/contrib/libfido2/tools/ |
H A D | test.sh | 176 if [ "x${UV}" != "x" ]; then 265 if [ "x${UV}" != "x" ]; then
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | GlobalsModRef.cpp | 858 const Value *UV = GV1 ? UV2 : UV1; in alias() local 859 if (isNonEscapingGlobalNoAlias(GV, UV)) in alias()
|
H A D | MemoryBuiltins.cpp | 768 if (UndefValue *UV = dyn_cast<UndefValue>(V)) in computeValue() local 769 return visitUndefValue(*UV); in computeValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVGlobalRegistry.cpp | 1436 UndefValue *UV = UndefValue::get(const_cast<Type *>(LLVMTy)); in getOrCreateUndef() local 1437 Register Res = DT.find(UV, CurMF); in getOrCreateUndef() 1444 DT.add(UV, CurMF, Res); in getOrCreateUndef()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Constants.cpp | 451 if (const auto *UV = dyn_cast<UndefValue>(this)) in getAggregateElement() local 452 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr; in getAggregateElement()
|
H A D | AsmWriter.cpp | 2045 auto *UV = cast<ConstantInt>(UE->getValue()); in writeDISubrange() local 2046 Printer.printInt("upperBound", UV->getSExtValue(), in writeDISubrange()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | mail.local.linux | 192 MF0@48;$_C*PZYD]15=*I63""7)C3`JE,\R-,&UV"+)7A`9PA'8#&3EV#ZV+"
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | riscv_vector.td | 2575 defvar UV = VString<nf, /*signed=*/false>.S; 2579 def : RVVBuiltin<T # "Uv", T # "Uv" # UV, "csil">;
|
/freebsd/share/misc/ |
H A D | usb_vendors | 9321 0100 ARC SpectraPro UV/VIS/IR Monochromator/Spectrograph 10331 5001 Trigger UV-002BD[Startech USBVGAE] 17492 8085 CCS150 UV Spectrometer
|
H A D | pci_vendors | 28407 8814 86c767 [Trio 64UV+] 30098 10a9 8028 UV-BaseIO dual-port GbE
|