/freebsd/sys/dev/videomode/ |
H A D | videomode.c | 22 #define VN VID_NVSYNC macro 30 M("640x350x85",640,350,31500,672,736,832,382,385,445,HP|VN), 34 M("720x400x87",720,400,35500,738,846,900,421,423,449,HN|VN), 35 M("640x480x60",640,480,25175,656,752,800,490,492,525,HN|VN), 36 M("640x480x72",640,480,31500,664,704,832,489,492,520,HN|VN), 37 M("640x480x75",640,480,31500,656,720,840,481,484,500,HN|VN), 38 M("640x480x85",640,480,36000,696,752,832,481,484,509,HN|VN), 45 M("1024x768x60",1024,768,65000,1048,1184,1344,771,777,806,HN|VN), 46 M("1024x768x70",1024,768,75000,1048,1184,1328,771,777,806,HN|VN), 70 M("832x624x74",832,624,57284,864,928,1152,625,628,667,HN|VN), [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | GVNHoist.cpp | 139 VNType VN; member 147 bool operator==(const CHIArg &A) const { return VN == A.VN; } in operator ==() 167 void insert(Instruction *I, GVNPass::ValueTable &VN) { in insert() argument 169 unsigned V = VN.lookupOrAdd(I); in insert() 182 void insert(LoadInst *Load, GVNPass::ValueTable &VN) { in insert() argument 184 unsigned V = VN.lookupOrAdd(Load->getPointerOperand()); in insert() 201 void insert(StoreInst *Store, GVNPass::ValueTable &VN) { in insert() argument 207 VNtoStores[{VN.lookupOrAdd(Ptr), VN.lookupOrAdd(Val)}].push_back(Store); in insert() 221 void insert(CallInst *Call, GVNPass::ValueTable &VN) { in insert() argument 225 unsigned V = VN.lookupOrAdd(Call); in insert() [all …]
|
H A D | GVN.cpp | 1532 if (uint32_t ValNo = VN.lookup(OldLoad, false)) in eliminatePartiallyRedundantLoad() 1534 VN.erase(OldLoad); in eliminatePartiallyRedundantLoad() 1802 VN.lookupOrAdd(I); in PerformLoadPRE() 2162 uint32_t LVN = VN.lookupOrAdd(CmpLHS); in processAssumeIntrinsic() 2163 uint32_t RVN = VN.lookupOrAdd(CmpRHS); in processAssumeIntrinsic() 2487 uint32_t LVN = VN.lookupOrAdd(LHS); in propagateEquality() 2492 uint32_t RVN = VN.lookupOrAdd(RHS); in propagateEquality() 2580 uint32_t NextNum = VN.getNextUnusedValueNumber(); in propagateEquality() 2581 uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1); in propagateEquality() 2653 unsigned Num = VN.lookupOrAdd(Load); in processInstruction() [all …]
|
H A D | GVNSink.cpp | 610 VN.setReachableBBs(BasicBlocksSet(RPOT.begin(), RPOT.end())); in run() 628 ValueTable VN; member in __anonac6bc9b30111::GVNSink 696 uint32_t N = VN.lookupOrAdd(I); in analyzeInstructionForSinking() 714 if (VN.lookup(I) != VNumToSink) in analyzeInstructionForSinking()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ValueSymbolTable.cpp | 100 ValueName *VN = makeUniqueName(V, UniqueName); in reinsertValue() local 101 V->setValueName(VN); in reinsertValue()
|
H A D | Value.cpp | 292 void Value::setValueName(ValueName *VN) { in setValueName() argument 298 if (!VN) { in setValueName() 306 Ctx.pImpl->ValueNames[this] = VN; in setValueName()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A D | GVN.h | 134 VN.erase(I); in markInstructionForDeletion() 139 AAResults *getAliasAnalysis() const { return VN.getAliasAnalysis(); } in getAliasAnalysis() 231 ValueTable VN;
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | bioinformatics | 45 >>&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/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELF.h | 1162 VerNeed &VN = *Ret.emplace(Ret.end()); in getVersionDependencies() local 1163 VN.Version = Verneed->vn_version; in getVersionDependencies() 1164 VN.Cnt = Verneed->vn_cnt; in getVersionDependencies() 1165 VN.Offset = VerneedBuf - Start; in getVersionDependencies() 1168 VN.File = std::string(StrTab.data() + Verneed->vn_file); in getVersionDependencies() 1170 VN.File = ("<corrupt vn_file: " + Twine(Verneed->vn_file) + ">").str(); in getVersionDependencies() 1189 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end()); in getVersionDependencies()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ELFDump.cpp | 374 for (const VerNeed &VN : *V) { in printSymbolVersionDependency() 375 OS << " required from " << VN.File << ":\n"; in printSymbolVersionDependency() 376 for (const VernAux &Aux : VN.AuxV) in printSymbolVersionDependency()
|
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | xilinx-xadc.txt | 47 0: VP/VN 74 0: VP/VN
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | Record.h | 1240 explicit VarInit(Init *VN, RecTy *T) in VarInit() argument 1241 : TypedInit(IK_VarInit, T), VarName(VN) {} in VarInit() 1251 static VarInit *get(StringRef VN, RecTy *T); 1252 static VarInit *get(Init *VN, RecTy *T); 1453 DagInit(Init *V, StringInit *VN, unsigned NumArgs, unsigned NumArgNames) in DagInit() argument 1455 ValName(VN), NumArgs(NumArgs), NumArgNames(NumArgNames) {} in DagInit() 1467 static DagInit *get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange, 1469 static DagInit *get(Init *V, StringInit *VN,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVRegisterInfo.td | 494 def "VN" # n # "M" # m # "NoV0": RegisterTuples< 497 def "VN" # n # "M" # m # "V0" : RegisterTuples< 615 (add !cast<RegisterTuples>("VN" # nf # "M" # m # "NoV0")), 619 (add !cast<RegisterTuples>("VN" # nf # "M" # m # "NoV0"), 620 !cast<RegisterTuples>("VN" # nf # "M" # m # "V0")),
|
/freebsd/contrib/dialog/po/ |
H A D | vi.po | 14 "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIWholeQuadMode.cpp | 367 if (const VNInfo *VN = LR.getVNInfoBefore(LIS->getMBBEndIdx(*PI))) { in markDefs() local 368 if (!Visited.count(VisitKey(VN, DefinedLanes))) in markDefs() 369 NextValue = VN; in markDefs() 404 if (const VNInfo *VN = LRQ.valueIn()) { in markDefs() local 405 if (!Visited.count(VisitKey(VN, DefinedLanes))) in markDefs() 406 NextValue = VN; in markDefs()
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | Record.cpp | 2157 VarInit *VarInit::get(StringRef VN, RecTy *T) { in get() argument 2158 Init *Value = StringInit::get(T->getRecordKeeper(), VN); in get() 2162 VarInit *VarInit::get(Init *VN, RecTy *T) { in get() argument 2164 VarInit *&I = RK.TheVarInitPool[std::make_pair(T, VN)]; in get() 2166 I = new (RK.Allocator) VarInit(VN, T); in get() 2545 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, StringInit *VN, in ProfileDagInit() argument 2549 ID.AddPointer(VN); in ProfileDagInit() 2561 DagInit *DagInit::get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange, in get() argument 2565 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get() 2575 DagInit *I = new (Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get() [all …]
|
/freebsd/contrib/tzdata/ |
H A D | zone1970.tab | 305 TH,CX,KH,LA,VN +1345+10031 Asia/Bangkok north Vietnam 348 VN +1045+10640 Asia/Ho_Chi_Minh south Vietnam
|
H A D | zone.tab | 439 VN +1045+10640 Asia/Ho_Chi_Minh
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 288 SourceLocation StartLoc, DeclarationName VN, AccessSpecifier AS, 295 DeclarationName VN);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Value.h | 263 void setValueName(ValueName *VN);
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 5148 for (const VerNeed &VN : *V) { in printVersionDependencySection() 5149 OS << format(" 0x%04x: Version: %u File: %s Cnt: %u\n", VN.Offset, in printVersionDependencySection() 5150 VN.Version, VN.File.data(), VN.Cnt); in printVersionDependencySection() 5151 for (const VernAux &Aux : VN.AuxV) in printVersionDependencySection() 7619 for (const VerNeed &VN : *V) { in printVersionDependencySection() 7621 W.printNumber("Version", VN.Version); in printVersionDependencySection() 7622 W.printNumber("Count", VN.Cnt); in printVersionDependencySection() 7623 W.printString("FileName", VN.File.c_str()); in printVersionDependencySection() 7626 for (const VernAux &Aux : VN.AuxV) { in printVersionDependencySection()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LiveIntervals.cpp | 891 VNInfo *VN = Interval.getNextValue( in addSegmentToEndOfBlock() local 895 getMBBEndIdx(startInst.getParent()), VN); in addSegmentToEndOfBlock()
|
H A D | TwoAddressInstructionPass.cpp | 2066 auto *VN = in eliminateRegSequence() local 2068 if (DefVN != VN) in eliminateRegSequence()
|
/freebsd/share/misc/ |
H A D | iso3166 | 262 VN VNM 704 Viet Nam
|
/freebsd/usr.sbin/tzsetup/ |
H A D | baseline | 652 VN:Viet Nam
|