| /netbsd-src/external/bsd/nsd/dist/contrib/bind2nsd/scripts/ |
| H A D | nsd-sync | 60 % (conf.getValue('version')) 74 xlate = conf.getValue('bind2nsd') 85 tmpdir = conf.getValue('tmpdir') # must have trailing '/' 104 cmd += ' ' + conf.getValue('destuser') + '@' 105 cmd += conf.getValue('dest-ip') + ':' 108 if len(conf.getValue('dnspw')) > 0: 110 child.sendline(conf.getValue('dnspw')) 111 child.expect('.*' + conf.getValue('nsd_conf') + '.*') 124 tmpdir = conf.getValue('tmpdir') # must have trailing '/' 129 if conf.getValue('DEMO-MODE'): [all …]
|
| H A D | s64-sync | 60 % (conf.getValue('version')) 74 xlate = conf.getValue('bind2nsd') 85 tmpdir = conf.getValue('tmpdir') # must have trailing '/' 107 cmd += ' ' + conf.getValue('destuser') + '@' 108 cmd += conf.getValue('dest-ip') + ':' 111 if len(conf.getValue('dnspw')) > 0: 113 child.sendline(conf.getValue('dnspw')) 114 child.expect('.*' + conf.getValue('nsd_conf') + '.*') 127 tmpdir = conf.getValue('tmpdir') # must have trailing '/' 132 if conf.getValue('DEMO-MODE'): [all …]
|
| H A D | bind2nsd | 46 DEBUG = conf.getValue('DEBUG') 51 (conf.getValue('version')) 64 named_root = conf.getValue('named_root') 65 named_fname = conf.getValue('named_conf') 87 tmpdir = conf.getValue('tmpdir') 92 nsd_fname = conf.getValue('nsd_conf')
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
| H A D | OpenCLOptions.cpp | 22 auto &OptInfo = OptMap.find(Ext)->getValue(); in isAvailableOption() 31 return I != OptMap.end() && I->getValue().Enabled; in isEnabled() 42 return I != OptMap.end() && I->getValue().Supported && in isSupported() 43 I->getValue().isAvailableIn(LO); in isSupported() 49 return I != OptMap.end() && I->getValue().Supported && in isSupportedCore() 50 I->getValue().isCoreIn(LO); in isSupportedCore() 56 return I != OptMap.end() && I->getValue().Supported && in isSupportedOptionalCore() 57 I->getValue().isOptionalCoreIn(LO); in isSupportedOptionalCore() 68 return I != OptMap.end() && I->getValue().Supported && in isSupportedExtension() 69 I->getValue().isAvailableIn(LO) && in isSupportedExtension() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | BasicValueFactory.cpp | 84 I.getValue().~APSInt(); in ~BasicValueFactory() 90 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APSInt& X) { in getValue() function in BasicValueFactory 108 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APInt& X, in getValue() function in BasicValueFactory 111 return getValue(V); in getValue() 114 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, unsigned BitWidth, in getValue() function in BasicValueFactory 118 return getValue(V); in getValue() 121 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, QualType T) { in getValue() function in BasicValueFactory 122 return getValue(getAPSIntType(T).getValue(X)); in getValue() 257 return &getValue( V1 * V2 ); in evalAPSInt() 262 return &getValue( V1 / V2 ); in evalAPSInt() [all …]
|
| H A D | SVals.cpp | 175 return getValue()->begin(); in begin() 179 return getValue()->end(); in end() 206 return LV->getValue() == I; in isConstant() 208 return NV->getValue() == I; in isConstant() 224 svalBuilder.getBasicValueFactory().evalAPSInt(Op, getValue(), R.getValue()); in evalBinOp() 234 return svalBuilder.makeIntVal(~getValue()); in evalComplement() 239 return svalBuilder.makeIntVal(-getValue()); in evalMinus() 251 const llvm::APSInt *X = BasicVals.evalAPSInt(Op, getValue(), R.getValue()); in evalBinOp() 294 const auto &Value = castAs<nonloc::ConcreteInt>().getValue(); in dumpToStream() 360 os << castAs<loc::ConcreteInt>().getValue().getZExtValue() << " (Loc)"; in dumpToStream()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfStringPool.cpp | 48 if (!MapEntry.getValue().isIndexed()) in getIndexedEntry() 49 MapEntry.getValue().Index = NumIndexedStrings++; in getIndexedEntry() 92 return A->getValue().Offset < B->getValue().Offset; in emit() 96 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) && in emit() 101 Asm.OutStreamer->emitLabel(Entry->getValue().Symbol); in emit() 105 Twine(Entry->getValue().Offset)); in emit() 116 if (Entry.getValue().isIndexed()) in emit() 117 Entries[Entry.getValue().Index] = &Entry; in emit() 124 Asm.emitDwarfStringOffset(Entry->getValue()); in emit() 126 Asm.OutStreamer->emitIntValue(Entry->getValue().Offset, size); in emit()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | SwitchLoweringUtils.cpp | 26 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange() 27 const APInt &HighCase = Clusters[Last].High->getValue(); in getJumpTableRange() 57 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables() 75 const APInt &Hi = Clusters[i].High->getValue(); in findJumpTables() 76 const APInt &Lo = Clusters[i].Low->getValue(); in findJumpTables() 209 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable() 210 const APInt &High = Clusters[I].High->getValue(); in buildJumpTable() 214 const APInt &PreviousHigh = Clusters[I - 1].High->getValue(); in buildJumpTable() 228 Clusters[First].Low->getValue(), in buildJumpTable() 229 Clusters[Last].High->getValue(), *DL)) { in buildJumpTable() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckPlacementNew.cpp | 114 if ((SizeOfPlaceCI->getValue() < SizeOfTargetCI->getValue()) || in checkPlaceCapacityIsSufficient() 116 SizeOfPlaceCI->getValue() >= SizeOfTargetCI->getValue())) { in checkPlaceCapacityIsSufficient() 121 SizeOfPlaceCI->getValue() > SizeOfTargetCI->getValue()) in checkPlaceCapacityIsSufficient() 126 SizeOfPlaceCI->getValue(), SizeOfTargetCI->getValue(), in checkPlaceCapacityIsSufficient() 127 SizeOfPlaceCI->getValue() - SizeOfTargetCI->getValue())); in checkPlaceCapacityIsSufficient() 129 SizeOfPlaceCI->getValue() == SizeOfTargetCI->getValue()) in checkPlaceCapacityIsSufficient() 134 SizeOfPlaceCI->getValue(), SizeOfTargetCI->getValue())); in checkPlaceCapacityIsSufficient() 139 SizeOfPlaceCI->getValue(), SizeOfTargetCI->getValue())); in checkPlaceCapacityIsSufficient()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | BasicValueFactory.h | 125 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned); 136 const llvm::APSInt& getValue(const llvm::APSInt& X); 137 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned); 138 const llvm::APSInt& getValue(uint64_t X, QualType T); 161 return getValue(TargetType.convert(From)); in Convert() 173 return getValue(TargetType.convert(From)); in Convert() 178 return getValue(X, T); in getIntValue() 182 return getValue(APSIntType(v).getMaxValue()); in getMaxValue() 186 return getValue(APSIntType(v).getMinValue()); in getMinValue() 198 return getValue(T.getMaxValue()); in getMaxValue() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/ |
| H A D | CostAllocator.h | 41 const ValueT &getValue() const { return Value; } in getValue() function 62 return getHashValue(P->getValue()); in getHashValue() 66 return getHashValue(P->getValue()); in getHashValue() 78 return isEqual(C, P->getValue()); in isEqual() 84 return isEqual(P1->getValue(), P2); in isEqual() 95 template <typename ValueKeyT> PoolRef getValue(ValueKeyT ValueKey) { in getValue() function 99 return PoolRef((*I)->shared_from_this(), &(*I)->getValue()); in getValue() 103 return PoolRef(std::move(P), &P->getValue()); in getValue() 119 return VectorPool.getValue(std::move(v)); in getVector() 123 return MatrixPool.getValue(std::move(m)); in getMatrix()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | Record.cpp | 311 return IntInit::get(getValue()); in convertInitializerTo() 370 Result |= static_cast<int64_t>(Bit->getValue()) << i; in convertInitializerTo() 471 int64_t Val = getValue(); in convertInitializerTo() 477 int64_t Value = getValue(); in convertInitializerTo() 747 D = CurRec->getRecords().getDef(Name->getValue()); in Fold() 752 Name->getValue() + "'\n"); in Fold() 776 return IntInit::get(LHSi->getValue() ? 0 : 1); in Fold() 801 return IntInit::get(LHSs->getValue().size()); in Fold() 810 return IntInit::get(LHSs->getValue().empty()); in Fold() 885 SmallString<80> Concat(I0->getValue()); in ConcatStringInits() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SymbolRewriter.cpp | 307 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); in parseEntry() 309 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); in parseEntry() 313 RewriteType = Key->getValue(KeyStorage); in parseEntry() 347 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteFunctionDescriptor() 349 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteFunctionDescriptor() 353 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor() 357 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor() 363 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor() 365 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor() 369 Undecorated = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | Optional.h | 95 T &getValue() LLVM_LVALUE_FUNCTION noexcept { in getValue() function 99 constexpr T const &getValue() const LLVM_LVALUE_FUNCTION noexcept { in getValue() function 104 T &&getValue() && noexcept { in getValue() function 195 T &getValue() LLVM_LVALUE_FUNCTION noexcept { in getValue() function 199 constexpr T const &getValue() const LLVM_LVALUE_FUNCTION noexcept { in getValue() function 204 T &&getValue() && noexcept { in getValue() function 280 constexpr const T *getPointer() const { return &Storage.getValue(); } in getPointer() 281 T *getPointer() { return &Storage.getValue(); } in getPointer() 282 constexpr const T &getValue() const LLVM_LVALUE_FUNCTION { in getValue() function 283 return Storage.getValue(); in getValue() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | WebAssemblyDisassemblerEmitter.cpp | 34 if (!Def.getValue("Inst")) in emitWebAssemblyDisassemblerTables() 39 ->getValue()); in emitWebAssemblyDisassemblerTables() 55 Def.getValue("StackBased")->getValue()->getCastTo(StringRecTy::get()); in emitWebAssemblyDisassemblerTables() 58 reinterpret_cast<const StringInit *>(StackString)->getValue() == "true"; in emitWebAssemblyDisassemblerTables() 66 auto IsCanonicalExisting = CGIP.second->TheDef->getValue("IsCanonical") in emitWebAssemblyDisassemblerTables() 67 ->getValue() in emitWebAssemblyDisassemblerTables() 73 Def.getValue("IsCanonical")->getValue()->getAsString() == "1"; in emitWebAssemblyDisassemblerTables()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APFixedPoint.cpp | 65 APSInt ThisVal = getValue(); in compare() 66 APSInt OtherVal = Other.getValue(); in compare() 138 APSInt MaxInt = APFixedPoint::getMax(*this).getValue(); in fitsInFloatSemantics() 145 APSInt MinInt = APFixedPoint::getMin(*this).getValue(); in fitsInFloatSemantics() 181 APSInt ThisVal = ConvertedThis.getValue(); in add() 182 APSInt OtherVal = ConvertedOther.getValue(); in add() 205 APSInt ThisVal = ConvertedThis.getValue(); in sub() 206 APSInt OtherVal = ConvertedOther.getValue(); in sub() 229 APSInt ThisVal = ConvertedThis.getValue(); in mul() 230 APSInt OtherVal = ConvertedOther.getValue(); in mul() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/ |
| H A D | DeltaTree.cpp | 95 const SourceDelta &getValue(unsigned i) const { in getValue() function in __anonb6a907500111::DeltaTreeNode 100 SourceDelta &getValue(unsigned i) { in getValue() function in __anonb6a907500111::DeltaTreeNode 191 while (i != e && FileIndex > getValue(i).FileLoc) in DoInsertion() 196 if (i != e && getValue(i).FileLoc == FileIndex) { in DoInsertion() 276 while (i != e && SubSplit.FileLoc > InsertSide->getValue(i).FileLoc) in DoInsertion() 353 assert(N->getValue(i-1).FileLoc < N->getValue(i).FileLoc); in VerifyTree() 354 FullDelta += N->getValue(i).Delta; in VerifyTree() 364 const SourceDelta &IVal = N->getValue(i); in VerifyTree() 367 assert(IN->getValue(i-1).FileLoc < IVal.FileLoc); in VerifyTree() 372 assert(IChild->getValue(IChild->getNumValuesUsed()-1).FileLoc < in VerifyTree() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Testing/Support/ |
| H A D | Annotations.cpp | 70 require(I != Points.end() && I->getValue().size() == 1, in point() 72 return I->getValue()[0]; in point() 79 return {I->getValue().begin(), I->getValue().end()}; in points() 84 require(I != Ranges.end() && I->getValue().size() == 1, in range() 86 return I->getValue()[0]; in range() 94 return {I->getValue().begin(), I->getValue().end()}; in ranges()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 346 *DAG.getContext(), CallConv.getValue(), ValueVT, IntermediateVT, in getCopyFromPartsVector() 699 *DAG.getContext(), CallConv.getValue(), ValueVT, IntermediateVT, in getCopyToPartsVector() 722 *DAG.getContext(), IntermediateVT.getScalarType(), DestEltCnt.getValue()); in getCopyToPartsVector() 792 ? TLI.getNumRegistersForCallingConv(Context, CC.getValue(), ValueVT) in RegsForValue() 796 ? TLI.getRegisterTypeForCallingConv(Context, CC.getValue(), ValueVT) in RegsForValue() 825 CallConv.getValue(), RegVTs[Value]) in getCopyFromRegs() 835 *Flag = P.getValue(2); in getCopyFromRegs() 838 Chain = P.getValue(1); in getCopyFromRegs() 908 CallConv.getValue(), RegVTs[Value]) in getCopyToRegs() 914 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), &Parts[Part], in getCopyToRegs() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAndOrXor.cpp | 192 bool IsAPow2 = (ACst && !ACst->isZero() && ACst->getValue().isPowerOf2()); in getMaskedICmpType() 193 bool IsBPow2 = (BCst && !BCst->isZero() && BCst->getValue().isPowerOf2()); in getMaskedICmpType() 427 if (BCst->getValue() == 0 || DCst->getValue() == 0) in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 434 if ((BCst->getValue() & DCst->getValue()) == 0) in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 453 if ((((BCst->getValue() & DCst->getValue()) & ECst->getValue()) == 0) && in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 454 (BCst->getValue() & (BCst->getValue() ^ DCst->getValue())).isPowerOf2()) { in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 455 APInt BorD = BCst->getValue() | DCst->getValue(); in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 456 APInt BandBxorDorE = (BCst->getValue() & (BCst->getValue() ^ DCst->getValue())) | in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 457 ECst->getValue(); in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() 465 return (C1->getValue() & C2->getValue()) == C1->getValue(); in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | SymbolStringPool.h | 61 ++S->getValue(); 66 assert(S->getValue() && "Releasing SymbolStringPtr with zero ref count"); 67 --S->getValue(); 71 ++S->getValue(); 81 assert(S->getValue() && "Releasing SymbolStringPtr with zero ref count"); 82 --S->getValue(); 91 assert(S->getValue() && "Releasing SymbolStringPtr with zero ref count"); 92 --S->getValue(); 122 ++S->getValue();
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| H A D | ConfigManager.cpp | 326 MachineInfo MI = Iter->getValue(); in getOutputTargetInfoByTargetName() 696 Positional.push_back(Arg->getValue()); in parseObjcopyOptions() 810 Config.ExtractPartition = Arg->getValue(); in parseObjcopyOptions() 813 if (!StringRef(Arg->getValue()).contains('=')) in parseObjcopyOptions() 816 auto Old2New = StringRef(Arg->getValue()).split('='); in parseObjcopyOptions() 825 Arg->getValue())) in parseObjcopyOptions() 830 parseRenameSectionValue(StringRef(Arg->getValue())); in parseObjcopyOptions() 840 parseSetSectionAlignment(Arg->getValue()); in parseObjcopyOptions() 847 parseSetSectionFlagValue(Arg->getValue()); in parseObjcopyOptions() 876 Arg->getValue(), SectionMatchStyle, ErrorCallback))) in parseObjcopyOptions() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| H A D | dwarf2yaml.cpp | 249 auto Form = FormValue.getValue().getForm(); in dumpDebugInfo() 256 if (auto Val = FormValue.getValue().getAsAddress()) in dumpDebugInfo() 257 NewValue.Value = Val.getValue(); in dumpDebugInfo() 266 if (auto Val = FormValue.getValue().getAsReferenceUVal()) in dumpDebugInfo() 267 NewValue.Value = Val.getValue(); in dumpDebugInfo() 274 if (auto Val = FormValue.getValue().getAsBlock()) { in dumpDebugInfo() 275 auto BlockData = Val.getValue(); in dumpDebugInfo() 290 if (auto Val = FormValue.getValue().getAsUnsignedConstant()) in dumpDebugInfo() 291 NewValue.Value = Val.getValue(); in dumpDebugInfo() 294 if (auto Val = FormValue.getValue().getAsCString()) in dumpDebugInfo() [all …]
|
| /netbsd-src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/ |
| H A D | NsdConf.py | 213 self.database = config.getValue('database') 214 self.difffile = config.getValue('difffile') 215 self.identity = config.getValue('identity') 216 self.ip_address = config.getValue('ip-address') 217 self.logfile = config.getValue('logfile') 218 self.pidfile = config.getValue('pidfile') 219 self.port = config.getValue('port') 220 self.statistics = config.getValue('statistics') 221 self.username = config.getValue('username') 222 self.xfrd_reload_timeout = config.getValue('xfrd-reload-timeout') [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ProfileSummaryInfo.cpp | 128 TotalCallCount += CallCount.getValue(); in isFunctionHotInCallGraph() 157 TotalCallCount += CallCount.getValue(); in isFunctionColdInCallGraph() 191 TotalCallCount += CallCount.getValue(); in isFunctionHotOrColdInCallGraphNthPercentile() 283 return HasHugeWorkingSetSize && HasHugeWorkingSetSize.getValue(); in hasHugeWorkingSetSize() 287 return HasLargeWorkingSetSize && HasLargeWorkingSetSize.getValue(); in hasLargeWorkingSetSize() 291 return HotCountThreshold && C >= HotCountThreshold.getValue(); in isHotCount() 295 return ColdCountThreshold && C <= ColdCountThreshold.getValue(); in isColdCount() 303 return CountThreshold && C >= CountThreshold.getValue(); in isHotOrColdCountNthPercentile() 305 return CountThreshold && C <= CountThreshold.getValue(); in isHotOrColdCountNthPercentile() 319 return HotCountThreshold ? HotCountThreshold.getValue() : UINT64_MAX; in getOrCompHotCountThreshold() [all …]
|