/external/llvm-project/lldb/tools/intel-features/intel-mpx/ |
D | cli-wrapper-mpxtable.cpp | 60 static void PrintBTEntry(lldb::addr_t lbound, lldb::addr_t ubound, in PrintBTEntry() argument 66 if ((lbound == one_cmpl64 || one_cmpl32) && ubound == 0) { in PrintBTEntry() 70 result.Printf(" ubound = 0x%lx", ubound); in PrintBTEntry() 178 lldb::addr_t ubound; in GetBTEntry() local 185 ubound = data.GetAddress(error, size * 1); in GetBTEntry() 190 ubound = (~ubound) & 0x00000000FFFFFFFF; in GetBTEntry() 192 ubound = ~ubound; in GetBTEntry() 200 PrintBTEntry(lbound, ubound, value, meta, result); in GetBTEntry() 216 lldb::addr_t ubound, lldb::SBTarget &target, in SetBTEntry() argument 234 std::vector<uint8_t> ubound_v = uIntToU8(~ubound, size); in SetBTEntry() [all …]
|
/external/llvm-project/flang/include/flang/Semantics/ |
D | type.h | 207 Bound &ubound() { return ub_; } in ubound() function 208 const Bound &ubound() const { return ub_; } in ubound() function 389 return CheckAll([](const ShapeSpec &x) { return x.ubound().isExplicit(); }); in IsExplicitShape() 392 return CheckAll([](const ShapeSpec &x) { return x.ubound().isDeferred(); }); in IsAssumedShape() 396 return x.lbound().isDeferred() && x.ubound().isDeferred(); in IsDeferredShape() 401 CheckAll([](const ShapeSpec &x) { return x.ubound().isAssumed(); }); in IsImpliedShape() 404 return !empty() && !IsAssumedRank() && back().ubound().isAssumed() && in IsAssumedSize() 406 [](const ShapeSpec &x) { return x.ubound().isExplicit(); }); in IsAssumedSize()
|
/external/fonttools/Lib/fontTools/colorLib/ |
D | builder.py | 403 for ubound in range( 406 yield (lbound, ubound) 491 for lbound, ubound in ranges: 493 self._as_tuple(layers[lbound:ubound]), -1 499 new_slice.NumLayers = ubound - lbound 501 layers = layers[:lbound] + [new_slice] + layers[ubound:] 530 for lbound, ubound in _reuse_ranges(len(layers)): 531 self.reusePool[self._as_tuple(layers[lbound:ubound])] = (
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_conv.c | 277 unsigned long long ubound; in lp_build_clamped_float_to_unsigned_norm() local 282 ubound = (1ULL << dst_width); in lp_build_clamped_float_to_unsigned_norm() 283 mask = ubound - 1; in lp_build_clamped_float_to_unsigned_norm() 284 scale = (double)mask/ubound; in lp_build_clamped_float_to_unsigned_norm() 394 unsigned long long ubound; in lp_build_unsigned_norm_to_float() local 424 ubound = ((unsigned long long)1 << n); in lp_build_unsigned_norm_to_float() 425 mask = ubound - 1; in lp_build_unsigned_norm_to_float() 426 scale = (double)ubound/mask; in lp_build_unsigned_norm_to_float()
|
/external/perfetto/src/trace_processor/importers/common/ |
D | clock_tracker.cc | 291 auto ubound = it + 1; in ConvertSlowpath() local 292 cache_entry.max_ts_ns = ubound == ts_vec.end() ? kInt64Max : *ubound; in ConvertSlowpath()
|
/external/llvm-project/flang/lib/Semantics/ |
D | type.cpp | 330 if (dim.ubound().isExplicit()) { in InstantiateComponent() 331 dim.ubound().SetExplicit(Fold(std::move(dim.ubound().GetExplicit()))); in InstantiateComponent() 338 if (dim.ubound().isExplicit()) { in InstantiateComponent() 339 dim.ubound().SetExplicit(Fold(std::move(dim.ubound().GetExplicit()))); in InstantiateComponent()
|
D | compute-offsets.cpp | 276 auto ubound{[&](std::size_t i) { in ComputeOffset() local 277 return *ToInt64(shape[i].ubound().GetExplicit()); in ComputeOffset() 285 offset *= ubound(i) - lbound(i) + 1; in ComputeOffset()
|
D | mod-file.cpp | 483 CHECK(x.ubound().isAssumed()); in PutShapeSpec() 490 if (!x.ubound().isDeferred()) { in PutShapeSpec() 491 PutBound(os, x.ubound()); in PutShapeSpec() 896 DoBound(spec.ubound()); in DoSymbol() 900 DoBound(spec.ubound()); in DoSymbol()
|
D | tools.cpp | 630 if (const auto &ub{dim.ubound().GetExplicit()}) { in IsAutomatic() 697 auto &ubound{spec.ubound().GetExplicit()}; in IsAutomaticObject() local 699 (ubound && !evaluate::ToInt64(*ubound))) { in IsAutomaticObject()
|
D | check-declarations.cpp | 43 Check(spec.ubound()); in Check()
|
/external/llvm-project/flang/lib/Evaluate/ |
D | shape.cpp | 270 if (shapeSpec.ubound().isExplicit()) { in GetExtent() 271 if (const auto &ubound{shapeSpec.ubound().GetExplicit()}) { in GetExtent() local 274 common::Clone(ubound.value()) - in GetExtent() 277 return Fold(context, common::Clone(ubound.value())); in GetExtent() 344 if (const auto &bound{shapeSpec.ubound().GetExplicit()}) { in GetUpperBound() 374 if (const auto &bound{shapeSpec.ubound().GetExplicit()}) { in GetUpperBounds()
|
D | type.cpp | 43 const auto &ub{shapeSpec.ubound().GetExplicit()}; in IsDescriptor()
|
D | characteristics.cpp | 202 if (dim.ubound().GetExplicit()) { in AcquireShape() 203 Expr<SubscriptInteger> extent{*dim.ubound().GetExplicit()}; in AcquireShape()
|
/external/guava/guava/src/com/google/common/collect/ |
D | GeneralRange.java | 163 T ubound = getUpperEndpoint(); in tooHigh() local 164 int cmp = comparator.compare(t, ubound); in tooHigh()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | GeneralRange.java | 163 T ubound = getUpperEndpoint(); in tooHigh() local 164 int cmp = comparator.compare(t, ubound); in tooHigh()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFramebufferBlitTests.cpp | 747 …const tcu::IVec2 ubound = (m_blitDir == BLIT_DEFAULT_TO_TARGET) ? (tcu::IVec2(128, 128)) : (tcu::I… in init() local 750 m_dstRect = ubound.swizzle(0, 1, 0, 1) + IVec4(-75, -99, 8, 16); in init() 751 m_interestingArea = IVec4(ubound.x() - 128, ubound.y() - 128, ubound.x(), ubound.y()); in init()
|
/external/rust/crates/rand/src/seq/ |
D | mod.rs | 659 fn gen_index<R: Rng + ?Sized>(rng: &mut R, ubound: usize) -> usize { in gen_index() 660 if ubound <= (core::u32::MAX as usize) { in gen_index() 661 rng.gen_range(0..ubound as u32) as usize in gen_index() 663 rng.gen_range(0..ubound) in gen_index()
|
/external/fonttools/Lib/fontTools/varLib/instancer/ |
D | __init__.py | 1285 ubound = lbound 1287 ubound = strToFixedToFloat(match.group(4), precisionBits=16) 1288 if lbound != ubound: 1289 result[tag] = AxisRange(lbound, ubound)
|
/external/llvm-project/flang/lib/Lower/ |
D | PFTBuilder.cpp | 1016 doExplicit(subs.ubound()); in analyze() 1021 doExplicit(subs.ubound()); in analyze()
|
D | ConvertType.cpp | 438 auto ub = ss.ubound(); in seqShapeHelper()
|