/third_party/boost/boost/metaparse/v1/util/ |
D | in_range.hpp | 25 class LowerBound = boost::mpl::na, 31 boost::mpl::less_equal<LowerBound, Item>::type::value 36 template <class LowerBound, class UpperBound> 37 struct in_range<LowerBound, UpperBound, boost::mpl::na> 42 struct apply : in_range<LowerBound, UpperBound, Item> {}; 45 template <class LowerBound> 46 struct in_range<LowerBound, boost::mpl::na, boost::mpl::na> 54 struct apply : in_range<LowerBound, UpperBound, Item> {}; 63 class LowerBound = boost::mpl::na, 67 struct apply : in_range<LowerBound, UpperBound, Item> {};
|
D | in_range_c.hpp | 19 template <class T, T LowerBound, T UpperBound> 27 LowerBound <= Item::type::value
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LibCallsShrinkWrap.cpp | 343 float UpperBound, LowerBound; in generateTwoRangeCond() local 347 LowerBound = -710.0f; in generateTwoRangeCond() 352 LowerBound = -89.0f; in generateTwoRangeCond() 357 LowerBound = -11357.0f; in generateTwoRangeCond() 361 LowerBound = -745.0f; in generateTwoRangeCond() 365 LowerBound = -103.0f; in generateTwoRangeCond() 369 LowerBound = -11399.0f; in generateTwoRangeCond() 373 LowerBound = -323.0f; in generateTwoRangeCond() 377 LowerBound = -45.0f; in generateTwoRangeCond() 381 LowerBound = -4950.0f; in generateTwoRangeCond() [all …]
|
D | LowerSwitch.cpp | 107 ConstantInt *LowerBound, ConstantInt *UpperBound, 112 ConstantInt *LowerBound, ConstantInt *UpperBound, 249 LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, in switchConvert() argument 254 assert(LowerBound && UpperBound && "Bounds must be initialized"); in switchConvert() 262 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert() 264 NumMergedCases = UpperBound->getSExtValue() - LowerBound->getSExtValue(); in switchConvert() 268 return newLeafBlock(*Begin, Val, LowerBound, UpperBound, OrigBlock, in switchConvert() 302 LLVM_DEBUG(dbgs() << "LHS Bounds ==> [" << LowerBound->getSExtValue() << ", " in switchConvert() 315 BasicBlock *LBranch = switchConvert(LHS.begin(), LHS.end(), LowerBound, in switchConvert() 334 ConstantInt *LowerBound, in newLeafBlock() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ScheduleDAG.cpp | 549 int UpperBound, LowerBound; in AddPred() local 550 LowerBound = Node2Index[Y->NodeNum]; in AddPred() 554 if (LowerBound < UpperBound) { in AddPred() 560 Shift(Visited, LowerBound, UpperBound); in AddPred() 602 int LowerBound = Node2Index[StartSU.NodeNum]; in GetSubGraph() local 608 if (LowerBound > UpperBound) { in GetSubGraph() 662 if (Node2Index[s] == LowerBound) { in GetSubGraph() 679 void ScheduleDAGTopologicalSort::Shift(BitVector& Visited, int LowerBound, in Shift() argument 685 for (i = LowerBound; i <= UpperBound; ++i) { in Shift() 721 int UpperBound, LowerBound; in IsReachable() local [all …]
|
/third_party/boost/libs/metaparse/doc/ |
D | in_range_c.qbk | 8 template <class T, T LowerBound, T UpperBound> 21 [[`LowerBound`] [value of type `T`]] 28 Metafunction class verifying that `U` is in the `[LowerBound..UpperBound]` range
|
D | in_range.qbk | 8 template <class LowerBound, class UpperBound, class Item> 17 [[`LowerBound`] [[link boxed_value boxed integral value]]] 25 range `[LowerBound..UpperBound]` and `false` otherwise. `boost::mpl::less_equal`
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCFrameLowering.cpp | 1936 int64_t LowerBound = 0; in processFunctionBeforeFrameFinalized() local 1942 LowerBound = TCSPDelta; in processFunctionBeforeFrameFinalized() 1951 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 1954 LowerBound -= (31 - TRI->getEncodingValue(MinFPR) + 1) * 8; in processFunctionBeforeFrameFinalized() 1962 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 1970 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 1980 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 2000 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 2009 MFI.setObjectOffset(FI, LowerBound + MFI.getObjectOffset(FI)); in processFunctionBeforeFrameFinalized() 2018 LowerBound -= (31 - MinReg + 1) * 8; in processFunctionBeforeFrameFinalized() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | InstructionSelectorImpl.h | 159 int64_t LowerBound = MatchTable[CurrentIdx++]; in executeMatchTable() local 168 << LowerBound << ", " << UpperBound << "), Default=" << Default in executeMatchTable() 171 if (Opcode < LowerBound || UpperBound <= Opcode) { in executeMatchTable() 175 CurrentIdx = MatchTable[CurrentIdx + (Opcode - LowerBound)]; in executeMatchTable() 187 int64_t LowerBound = MatchTable[CurrentIdx++]; in executeMatchTable() local 196 << "]->getOperand(" << OpIdx << "), [" << LowerBound << ", " in executeMatchTable() 215 if (TypeID < LowerBound || UpperBound <= TypeID) { in executeMatchTable() 219 CurrentIdx = MatchTable[CurrentIdx + (TypeID - LowerBound)]; in executeMatchTable()
|
/third_party/ffmpeg/libavfilter/ |
D | af_ladspa.c | 127 av_log(ctx, level, ", min: %i", (int)h->LowerBound); in print_ctl_info() 140 av_log(ctx, level, ", min: %f", h->LowerBound); in print_ctl_info() 283 const LADSPA_Data lower = h->LowerBound; in set_default_ctl_value() 430 value < h->LowerBound) { in set_control() 433 label, port, h->LowerBound); in set_control()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 328 int64_t LowerBound; 330 MDNodeKeyImpl(Metadata *CountNode, int64_t LowerBound) 331 : CountNode(CountNode), LowerBound(LowerBound) {} 334 LowerBound(N->getLowerBound()) {} 337 if (LowerBound != RHS->getLowerBound()) 352 LowerBound); 353 return hash_combine(CountNode, LowerBound);
|
/third_party/alsa-lib/src/pcm/ |
D | ladspa.h | 345 LADSPA_Data LowerBound; member
|
D | pcm_ladspa.c | 513 *val = desc->PortRangeHints[port].LowerBound; in snd_pcm_ladspa_get_default_cvalue() 517 *val = exp(log(desc->PortRangeHints[port].LowerBound) in snd_pcm_ladspa_get_default_cvalue() 522 *val = (desc->PortRangeHints[port].LowerBound * 0.75) + in snd_pcm_ladspa_get_default_cvalue() 528 *val = sqrt(desc->PortRangeHints[port].LowerBound * in snd_pcm_ladspa_get_default_cvalue() 532 (desc->PortRangeHints[port].LowerBound + in snd_pcm_ladspa_get_default_cvalue() 538 *val = exp(log(desc->PortRangeHints[port].LowerBound) in snd_pcm_ladspa_get_default_cvalue() 543 *val = (desc->PortRangeHints[port].LowerBound * 0.25) + in snd_pcm_ladspa_get_default_cvalue()
|
/third_party/pulseaudio/src/modules/ |
D | ladspa.h | 344 LADSPA_Data LowerBound; member
|
D | module-ladspa-sink.c | 854 LADSPA_Data lower = d->PortRangeHints[p].LowerBound; in validate_control_parameters() 915 lower = d->PortRangeHints[p].LowerBound; in write_control_parameters()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 1294 unsigned long LowerBound; member 1387 LocInfo.LowerBound = 0; in optimizeUsesInBlock() 1406 assert(LocInfo.LowerBound < VersionStack.size() && in optimizeUsesInBlock() 1413 if (UpperBound - LocInfo.LowerBound > MaxCheckLimit) { in optimizeUsesInBlock() 1417 << UpperBound - LocInfo.LowerBound in optimizeUsesInBlock() 1426 while (UpperBound > LocInfo.LowerBound) { in optimizeUsesInBlock() 1474 LocInfo.LowerBound = VersionStack.size() - 1; in optimizeUsesInBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 290 int64_t LowerBound; variable 293 int64_t LowerBound, ArrayRef<Metadata *> Ops) in DISubrange() argument 295 LowerBound(LowerBound) {} in DISubrange() 300 int64_t LowerBound, StorageType Storage, 304 int64_t LowerBound, StorageType Storage, 312 DEFINE_MDNODE_GET(DISubrange, (int64_t Count, int64_t LowerBound = 0), 313 (Count, LowerBound)) 315 DEFINE_MDNODE_GET(DISubrange, (Metadata *CountNode, int64_t LowerBound = 0), 316 (CountNode, LowerBound)) 320 int64_t getLowerBound() const { return LowerBound; } in getLowerBound()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ScheduleDAG.h | 714 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 1047 int64_t LowerBound = 0; in getTypeSize() local 1049 LowerBound = LowerBoundAttr->getAsSignedConstant().getValueOr(0); in getTypeSize() 1050 Size *= *UpperBound - LowerBound + 1; in getTypeSize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 1336 int64_t LowerBound = SR->getLowerBound(); in constructSubrangeDIE() local 1342 if (DefaultLowerBound == -1 || LowerBound != DefaultLowerBound) in constructSubrangeDIE() 1343 addUInt(DW_Subrange, dwarf::DW_AT_lower_bound, None, LowerBound); in constructSubrangeDIE()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | DebugInfo.h | 1062 int64_t LowerBound,
|
/third_party/gstreamer/gstplugins_bad/ext/ladspa/ |
D | gstladspautils.c | 372 lower = desc->PortRangeHints[portnum].LowerBound; in gst_ladspa_object_class_get_param_spec()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui.cpp | 1827 static ImGuiStorage::Pair* LowerBound(ImVector<ImGuiStorage::Pair>& data, ImGuiID key) in LowerBound() function 1868 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetInt() 1881 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetFloat() 1889 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetVoidPtr() 1898 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetIntRef() 1911 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetFloatRef() 1919 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetVoidPtrRef() 1928 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetInt() 1944 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetFloat() 1955 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetVoidPtr()
|
/third_party/mesa3d/src/imgui/ |
D | imgui.cpp | 1865 static ImGuiStorage::Pair* LowerBound(ImVector<ImGuiStorage::Pair>& data, ImGuiID key) in LowerBound() function 1906 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetInt() 1919 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetFloat() 1927 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetVoidPtr() 1936 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetIntRef() 1949 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetFloatRef() 1957 ImGuiStorage::Pair* it = LowerBound(Data, key); in GetVoidPtrRef() 1966 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetInt() 1982 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetFloat() 1993 ImGuiStorage::Pair* it = LowerBound(Data, key); in SetVoidPtr()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.cpp | 1916 static ImGuiStorage::ImGuiStoragePair* LowerBound(ImVector<ImGuiStorage::ImGuiStoragePair>& data, I… in LowerBound() function 1957 ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key); in GetInt() 1970 ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key); in GetFloat() 1978 ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key); in GetVoidPtr() 1987 ImGuiStoragePair* it = LowerBound(Data, key); in GetIntRef() 2000 ImGuiStoragePair* it = LowerBound(Data, key); in GetFloatRef() 2008 ImGuiStoragePair* it = LowerBound(Data, key); in GetVoidPtrRef() 2017 ImGuiStoragePair* it = LowerBound(Data, key); in SetInt() 2033 ImGuiStoragePair* it = LowerBound(Data, key); in SetFloat() 2044 ImGuiStoragePair* it = LowerBound(Data, key); in SetVoidPtr()
|