Home
last modified time | relevance | path

Searched refs:VN (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-12-stable/sys/dev/videomode/
Dvideomode.c25 #define VN VID_NVSYNC macro
33 M("640x350x85",640,350,31500,672,736,832,382,385,445,HP|VN),
37 M("720x400x87",720,400,35500,738,846,900,421,423,449,HN|VN),
38 M("640x480x60",640,480,25175,656,752,800,490,492,525,HN|VN),
39 M("640x480x72",640,480,31500,664,704,832,489,492,520,HN|VN),
40 M("640x480x75",640,480,31500,656,720,840,481,484,500,HN|VN),
41 M("640x480x85",640,480,36000,696,752,832,481,484,509,HN|VN),
48 M("1024x768x60",1024,768,65000,1048,1184,1344,771,777,806,HN|VN),
49 M("1024x768x70",1024,768,75000,1048,1184,1328,771,777,806,HN|VN),
73 M("832x624x74",832,624,57284,864,928,1152,625,628,667,HN|VN),
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DGVNHoist.cpp144 VNType VN; member
152 bool operator==(const CHIArg &A) const { return VN == A.VN; } in operator ==()
172 void insert(Instruction *I, GVN::ValueTable &VN) { in insert() argument
174 unsigned V = VN.lookupOrAdd(I); in insert()
187 void insert(LoadInst *Load, GVN::ValueTable &VN) { in insert() argument
189 unsigned V = VN.lookupOrAdd(Load->getPointerOperand()); in insert()
204 void insert(StoreInst *Store, GVN::ValueTable &VN) { in insert() argument
210 VNtoStores[{VN.lookupOrAdd(Ptr), VN.lookupOrAdd(Val)}].push_back(Store); in insert()
224 void insert(CallInst *Call, GVN::ValueTable &VN) { in insert() argument
228 unsigned V = VN.lookupOrAdd(Call); in insert()
[all …]
DGVN.cpp1493 VN.lookupOrAdd(I); in PerformLoadPRE()
1848 uint32_t LVN = VN.lookupOrAdd(CmpLHS); in processAssumeIntrinsic()
1849 uint32_t RVN = VN.lookupOrAdd(CmpRHS); in processAssumeIntrinsic()
2175 uint32_t LVN = VN.lookupOrAdd(LHS); in propagateEquality()
2180 uint32_t RVN = VN.lookupOrAdd(RHS); in propagateEquality()
2259 uint32_t NextNum = VN.getNextUnusedValueNumber(); in propagateEquality()
2260 uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1); in propagateEquality()
2332 unsigned Num = VN.lookupOrAdd(Load); in processInstruction()
2395 uint32_t NextNum = VN.getNextUnusedValueNumber(); in processInstruction()
2396 unsigned Num = VN.lookupOrAdd(I); in processInstruction()
[all …]
DGVNSink.cpp580 ValueTable VN; member in __anonb76f54cb0111::GVNSink
644 uint32_t N = VN.lookupOrAdd(I); in analyzeInstructionForSinking()
668 if (VN.lookup(I) != VNumToSink) in analyzeInstructionForSinking()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DValueSymbolTable.cpp89 ValueName *VN = makeUniqueName(V, UniqueName); in reinsertValue() local
90 V->setValueName(VN); in reinsertValue()
DValue.cpp280 void Value::setValueName(ValueName *VN) { in setValueName() argument
286 if (!VN) { in setValueName()
294 Ctx.pImpl->ValueNames[this] = VN; in setValueName()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
DGVN.h132 VN.erase(I); in markInstructionForDeletion()
137 AAResults *getAliasAnalysis() const { return VN.getAliasAnalysis(); } in getAliasAnalysis()
228 ValueTable VN;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DELF.h1001 VerNeed &VN = *Ret.emplace(Ret.end()); in getVersionDependencies() local
1002 VN.Version = Verneed->vn_version; in getVersionDependencies()
1003 VN.Cnt = Verneed->vn_cnt; in getVersionDependencies()
1004 VN.Offset = VerneedBuf - Start; in getVersionDependencies()
1007 VN.File = std::string(StrTab.drop_front(Verneed->vn_file)); in getVersionDependencies()
1009 VN.File = ("<corrupt vn_file: " + Twine(Verneed->vn_file) + ">").str(); in getVersionDependencies()
1028 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end()); in getVersionDependencies()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dbioinformatics45 >>&0x00 regex =^[@]HD\t.*VN: \b, with SAM header
150 >4 search VN: Sequence Alignment/Map (SAM), with header
177 >>>>>>>>>>>0 regex =^[@]HD\t.*VN: \b, with header
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVRegisterInfo.td465 def "VN" # n # "M" # m # "NoV0": RegisterTuples<
468 def "VN" # n # "M" # m # "V0" : RegisterTuples<
548 …(add !cast<RegisterTuples>("VN" # nf # "M" # m # "V0"), !cast<RegisterTuples>("VN" # nf # "M" # m …
551 (add !cast<RegisterTuples>("VN" # nf # "M" # m # "NoV0")),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
DRecord.h1075 explicit VarInit(Init *VN, RecTy *T) in VarInit() argument
1076 : TypedInit(IK_VarInit, T), VarName(VN) {} in VarInit()
1086 static VarInit *get(StringRef VN, RecTy *T);
1087 static VarInit *get(Init *VN, RecTy *T);
1316 DagInit(Init *V, StringInit *VN, unsigned NumArgs, unsigned NumArgNames) in DagInit() argument
1317 : TypedInit(IK_DagInit, DagRecTy::get()), Val(V), ValName(VN), in DagInit()
1330 static DagInit *get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange,
1332 static DagInit *get(Init *V, StringInit *VN,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIWholeQuadMode.cpp368 if (const VNInfo *VN = LR.getVNInfoBefore(LIS->getMBBEndIdx(*PI))) { in markDefs() local
369 if (!Visited.count(VisitKey(VN, DefinedLanes))) in markDefs()
370 NextValue = VN; in markDefs()
405 if (const VNInfo *VN = LRQ.valueIn()) { in markDefs() local
406 if (!Visited.count(VisitKey(VN, DefinedLanes))) in markDefs()
407 NextValue = VN; in markDefs()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
DRecord.cpp1677 VarInit *VarInit::get(StringRef VN, RecTy *T) { in get() argument
1678 Init *Value = StringInit::get(VN); in get()
1682 VarInit *VarInit::get(Init *VN, RecTy *T) { in get() argument
1686 Key TheKey(std::make_pair(T, VN)); in get()
1690 I = new(Allocator) VarInit(VN, T); in get()
2100 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, StringInit *VN, in ProfileDagInit() argument
2104 ID.AddPointer(VN); in ProfileDagInit()
2117 DagInit::get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange, in get() argument
2122 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get()
2129 DagInit *I = new(Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get()
[all …]
/freebsd-12-stable/contrib/dialog/po/
Dvi.po14 "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
/freebsd-12-stable/contrib/tzdata/
Dzone1970.tab306 TH,CX,KH,LA,VN +1345+10031 Asia/Bangkok north Vietnam
349 VN +1045+10640 Asia/Ho_Chi_Minh south Vietnam
Dzone.tab440 VN +1045+10640 Asia/Ho_Chi_Minh
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DValue.h264 void setValueName(ValueName *VN);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp4575 for (const VerNeed &VN : *V) { in printVersionDependencySection()
4576 OS << format(" 0x%04x: Version: %u File: %s Cnt: %u\n", VN.Offset, in printVersionDependencySection()
4577 VN.Version, VN.File.data(), VN.Cnt); in printVersionDependencySection()
4578 for (const VernAux &Aux : VN.AuxV) in printVersionDependencySection()
6696 for (const VerNeed &VN : *V) { in printVersionDependencySection()
6698 W.printNumber("Version", VN.Version); in printVersionDependencySection()
6699 W.printNumber("Count", VN.Cnt); in printVersionDependencySection()
6700 W.printString("FileName", VN.File.c_str()); in printVersionDependencySection()
6703 for (const VernAux &Aux : VN.AuxV) { in printVersionDependencySection()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DLiveIntervals.cpp883 VNInfo *VN = Interval.getNextValue( in addSegmentToEndOfBlock() local
887 getMBBEndIdx(startInst.getParent()), VN); in addSegmentToEndOfBlock()
/freebsd-12-stable/share/misc/
Diso3166263 VN VNM 704 Viet Nam
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp1604 const VTSDNode *VN = dyn_cast<const VTSDNode>(N->getOperand(1)); in isPositiveHalfWord() local
1605 return VN->getVT().getSizeInBits() <= 16; in isPositiveHalfWord()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaDecl.cpp11694 operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) { in operator <<() argument
11695 return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name; in operator <<()
11709 VarDeclOrName VN{VDecl, Name}; in deduceVarTypeFromInitializer() local
11761 << VN << Type << Range; in deduceVarTypeFromInitializer()
11769 << VN << Type << Range; in deduceVarTypeFromInitializer()
11778 << isa<InitListExpr>(Init) << VN << Type << Range; in deduceVarTypeFromInitializer()
11810 << VN in deduceVarTypeFromInitializer()
11816 << VN << TSI->getType() in deduceVarTypeFromInitializer()
11830 Diag(Loc, diag::warn_auto_var_is_id) << VN << Range; in deduceVarTypeFromInitializer()
DSemaTemplateInstantiateDecl.cpp3501 DeclarationName VN = D->getVarName(); in VisitOMPDeclareMapperDecl() local
3506 D->getLocation(), VN))); in VisitOMPDeclareMapperDecl()
3527 /*S=*/nullptr, SubstMapperTy, D->getLocation(), VN); in VisitOMPDeclareMapperDecl()
3568 VN, D->getAccess(), MapperVarRef.get(), Clauses, PrevDeclInScope); in VisitOMPDeclareMapperDecl()
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp711 SmallDenseSet<ElementCount> VN, WN; in EnforceSameNumElts() local
713 VN.insert(T.isVector() ? T.getVectorElementCount() in EnforceSameNumElts()
720 Changed |= berase_if(WS, std::bind(NoLength, VN, std::placeholders::_1)); in EnforceSameNumElts()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZInstrVector.td504 def VN : BinaryVRRc<"vn", 0xE768, null_frag, v128any, v128any>;
875 def : Pat<(type (and VR128:$x, VR128:$y)), (VN VR128:$x, VR128:$y)>;

12