| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | TypeSize.h | 10 // which may be scalable vectors. It provides convenience operators so that 26 bool Scalable; // If true, NumElements is a multiple of 'Min' determined variable 29 ElementCount(unsigned Min, bool Scalable) in ElementCount() argument 30 : Min(Min), Scalable(Scalable) {} in ElementCount() 33 return { Min * RHS, Scalable }; 36 return { Min / RHS, Scalable }; 40 return Min == RHS.Min && Scalable == RHS.Scalable; 48 // size, it will represent the exact size. If the type is a scalable vector, 56 constexpr TypeSize(uint64_t MinSize, bool Scalable) in TypeSize() argument 57 : MinSize(MinSize), IsScalable(Scalable) {} in TypeSize() [all …]
|
| D | MachineValueType.h | 676 /// If the value type is a scalable vector type, the scalable property will 700 case nxv1i1: return TypeSize::Scalable(1); in getSizeInBits() 702 case nxv2i1: return TypeSize::Scalable(2); in getSizeInBits() 704 case nxv4i1: return TypeSize::Scalable(4); in getSizeInBits() 709 case nxv8i1: return TypeSize::Scalable(8); in getSizeInBits() 717 case nxv1i16: return TypeSize::Scalable(16); in getSizeInBits() 731 case nxv1f32: return TypeSize::Scalable(32); in getSizeInBits() 751 case nxv1f64: return TypeSize::Scalable(64); in getSizeInBits() 773 case nxv2f64: return TypeSize::Scalable(128); in getSizeInBits() 789 case nxv4f64: return TypeSize::Scalable(256); in getSizeInBits() [all …]
|
| /third_party/grpc/tools/run_tests/performance/ |
| D | scenario_config.py | 24 SCALABLE = 'scalable' variable 27 DEFAULT_CATEGORIES = [SCALABLE, SMOKETEST] 257 categories=[INPROC] + [SCALABLE]) 271 categories=[SMOKETEST] + [INPROC] + [SCALABLE]) 287 categories=[SCALABLE]) 303 [SCALABLE]) 315 [SCALABLE]) 330 [SCALABLE]) 357 categories=inproc_categories + [SCALABLE], 373 categories=inproc_categories + [SCALABLE]) [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| D | ValueTypes.cpp | 234 return VectorType::get(Type::getInt1Ty(Context), 1, /*Scalable=*/ true); in getTypeForEVT() 236 return VectorType::get(Type::getInt1Ty(Context), 2, /*Scalable=*/ true); in getTypeForEVT() 238 return VectorType::get(Type::getInt1Ty(Context), 4, /*Scalable=*/ true); in getTypeForEVT() 240 return VectorType::get(Type::getInt1Ty(Context), 8, /*Scalable=*/ true); in getTypeForEVT() 242 return VectorType::get(Type::getInt1Ty(Context), 16, /*Scalable=*/ true); in getTypeForEVT() 244 return VectorType::get(Type::getInt1Ty(Context), 32, /*Scalable=*/ true); in getTypeForEVT() 246 return VectorType::get(Type::getInt8Ty(Context), 1, /*Scalable=*/ true); in getTypeForEVT() 248 return VectorType::get(Type::getInt8Ty(Context), 2, /*Scalable=*/ true); in getTypeForEVT() 250 return VectorType::get(Type::getInt8Ty(Context), 4, /*Scalable=*/ true); in getTypeForEVT() 252 return VectorType::get(Type::getInt8Ty(Context), 8, /*Scalable=*/ true); in getTypeForEVT() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
| D | AArch64StackOffset.h | 10 // describe scalable and non-scalable offsets during frame lowering. 22 /// StackOffset is a wrapper around scalable and non-scalable offsets and is 98 /// Returns the scalable part of the offset in bytes. 101 /// Returns the non-scalable part of the offset in bytes. 106 /// For non-scalable offsets this is simply its byte size. 129 // The smallest scalable element supported by scaled SVE addressing in isValid() 130 // modes are predicates, which are 2 scalable bytes in size. So the scalable in isValid()
|
| /third_party/flutter/skia/src/core/ |
| D | SkLatticeIter.cpp | 47 * Count the number of pixels that are in "scalable" patches. 85 // This is the "normal" case, where we scale the "scalable" patches and leave in set_points() 89 // In this case, we eliminate the "scalable" patches and scale the "fixed" patches. in set_points() 106 // Alternate between "scalable" and "fixed" patches. in set_points() 122 // In the x-dimension, the first rectangle always starts at x = 0 and is "scalable". in SkLatticeIter() 124 // first real rectangle "scalable" in the x-direction. in SkLatticeIter() 129 // "scalable" in the x-direction. Similarly, as move top to bottom, alternating in SkLatticeIter() 130 // patches will be "fixed" or "scalable" in the y-direction. in SkLatticeIter() 135 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() 142 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() [all …]
|
| /third_party/skia/src/core/ |
| D | SkLatticeIter.cpp | 47 * Count the number of pixels that are in "scalable" patches. 85 // This is the "normal" case, where we scale the "scalable" patches and leave in set_points() 89 // In this case, we eliminate the "scalable" patches and scale the "fixed" patches. in set_points() 106 // Alternate between "scalable" and "fixed" patches. in set_points() 122 // In the x-dimension, the first rectangle always starts at x = 0 and is "scalable". in SkLatticeIter() 124 // first real rectangle "scalable" in the x-direction. in SkLatticeIter() 129 // "scalable" in the x-direction. Similarly, as move top to bottom, alternating in SkLatticeIter() 130 // patches will be "fixed" or "scalable" in the y-direction. in SkLatticeIter() 135 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() 142 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() [all …]
|
| /third_party/ffmpeg/libavcodec/ |
| D | profiles.c | 103 { FF_PROFILE_MPEG2_SS, "Spatially Scalable" }, 104 { FF_PROFILE_MPEG2_SNR_SCALABLE, "SNR Scalable" }, 113 { FF_PROFILE_MPEG4_SIMPLE_SCALABLE, "Simple Scalable Profile" }, 117 { FF_PROFILE_MPEG4_SCALABLE_TEXTURE, "Scalable Texture Profile" }, 122 { FF_PROFILE_MPEG4_CORE_SCALABLE, "Code Scalable Profile" }, 125 { FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE, "Advanced Scalable Texture Profile" },
|
| D | mpeg4audio.h | 92 AOT_AAC_SSR, ///< N (code in SoC repo) Scalable Sample Rate 95 AOT_AAC_SCALABLE, ///< N Scalable 106 AOT_ER_AAC_SCALABLE, ///< N Error Resilient Scalable 123 AOT_SLS, ///< N Scalable LosslesS 124 AOT_SLS_NON_CORE, ///< N Scalable LosslesS (non core)
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| D | ValueTypes.h | 79 assert(!IsScalable && "We don't support extended scalable types yet"); 89 assert (!EC.Scalable && "We don't support extended scalable types yet"); in getVectorVT() 99 "We don't support extended scalable types yet"); in changeVectorElementTypeToInteger() 158 // FIXME: We don't support extended scalable types yet, because the in isScalableVector() 282 // Given a (possibly scalable) vector type, return the ElementCount 289 "We don't support extended scalable types yet"); in getVectorElementCount() 295 /// If the value type is a scalable vector type, the scalable property will 311 /// If the value type is a scalable vector type, the scalable property will 322 /// If the value type is a scalable vector type, the scalable property will
|
| /third_party/gstreamer/gstplugins_good/sys/v4l2/ |
| D | gstv4l2h264codec.c | 61 } else if (g_str_equal (profile, "scalable-baseline")) { in v4l2_profile_from_string() 63 } else if (g_str_equal (profile, "scalable-high")) { in v4l2_profile_from_string() 65 } else if (g_str_equal (profile, "scalable-high-intra")) { in v4l2_profile_from_string() 109 return "scalable-baseline"; in v4l2_profile_to_string() 111 return "scalable-high"; in v4l2_profile_to_string() 113 return "scalable-high-intra"; in v4l2_profile_to_string()
|
| D | gstv4l2mpeg4codec.c | 39 else if (g_str_equal (profile, "simple-scalable")) in v4l2_profile_from_string() 60 return "simple-scalable"; in v4l2_profile_to_string()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
| D | DataLayout.h | 440 /// If Ty is a scalable vector type, the scalable property will be set and 450 /// If Ty is a scalable vector type, the scalable property will be set and 462 /// If Ty is a scalable vector type, the scalable property will be set and 481 /// If Ty is a scalable vector type, the scalable property will be set and 494 /// If Ty is a scalable vector type, the scalable property will be set and 661 return TypeSize(MinBits, EltCnt.Scalable); in getTypeSizeInBits()
|
| D | DerivedTypes.h | 396 /// For scalable vectors, this will return the minimum number of elements 446 VectorType(Type *ElType, unsigned NumEl, bool Scalable = false); 452 bool Scalable; variable 461 bool Scalable = false) { 462 return VectorType::get(ElementType, {NumElements, Scalable}); 540 /// Return an ElementCount instance to represent the (possibly scalable) 545 return { (unsigned)MinimumEltCnt, Scalable }; in getElementCount() 548 /// Returns whether or not this is a scalable vector (meaning the total 551 return Scalable; in isScalable()
|
| /third_party/grpc/tools/internal_ci/linux/ |
| D | grpc_full_performance_release.sh | 26 --category scalable \ 40 --category scalable \
|
| D | grpc_full_performance_master.sh | 26 --category scalable \ 40 --category scalable \
|
| /third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
| D | NOTES | 31 This script will use gnuplot to create a png file named scalable.png. 35 set output "scalable.png"
|
| /third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/ |
| D | descriptions.c | 254 {"image/svg+xml", "Scalable Vector Graphics (SVG)", FLAG_IMAGE, "svg"}, 368 "simple-scalable\000Simple Scalable\000" in pbutils_desc_get_mpeg4v_profile_name_from_nick() 372 "scalable\000Scalable\000" in pbutils_desc_get_mpeg4v_profile_name_from_nick() 375 "core-scalable\000Core-Scalable\000" in pbutils_desc_get_mpeg4v_profile_name_from_nick() 378 "advanced-scalable-texture\000Advanced Scalable Texture\000" in pbutils_desc_get_mpeg4v_profile_name_from_nick() 384 "fine-granularity-scalable\000Fine Granularity Scalable\000" in pbutils_desc_get_mpeg4v_profile_name_from_nick() 408 "scalable-constrained-baseline\000Scalable Constrained Baseline\000" in pbutils_desc_get_h264_profile_name_from_nick() 409 "scalable-baseline\000Scalable Baseline\000" in pbutils_desc_get_h264_profile_name_from_nick() 410 "scalable-high\000Scalable High\000"; in pbutils_desc_get_h264_profile_name_from_nick()
|
| D | codec-utils.c | 661 profile = "scalable-constrained-baseline"; in gst_codec_utils_h264_get_profile() 663 profile = "scalable-baseline"; in gst_codec_utils_h264_get_profile() 667 profile = "scalable-high-intra"; in gst_codec_utils_h264_get_profile() 669 profile = "scalable-constrained-high"; in gst_codec_utils_h264_get_profile() 671 profile = "scalable-high"; in gst_codec_utils_h264_get_profile() 1111 {"scalable-main", 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0}, in utils_get_scalable_profile() 1112 {"scalable-main-10", 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1}, in utils_get_scalable_profile() 1168 /* Rec. ITU-T H.265 Table H.4 scalable range extensions profiles */ in utils_get_scalable_format_range_extensions_profile() 1170 {"scalable-monochrome", 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0}, in utils_get_scalable_format_range_extensions_profile() 1171 {"scalable-monochrome-12", 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1}, in utils_get_scalable_format_range_extensions_profile() [all …]
|
| /third_party/boost/libs/geometry/doc/html/geometry/reference/io/ |
| D | svg.html | 4 <title>SVG (Scalable Vector Graphics)</title> 27 …io.svg"></a><a class="link" href="svg.html" title="SVG (Scalable Vector Graphics)">SVG (Scalable V…
|
| /third_party/boost/libs/graph_parallel/doc/html/ |
| D | scalable_rmat_generator.html | 7 <title>Parallel BGL Scalable R-MAT generator</title> 11 <div class="document" id="logo-scalable-r-mat-generator"> 12 …dle" alt="Parallel BGL" class="align-middle" src="pbgl-logo.png" /></a> Scalable R-MAT generator</…
|
| /third_party/node/tools/rpm/ |
| D | node.spec | 21 Summary: Node.js is a platform for building fast, scalable network applications. 41 building fast, scalable network applications.
|
| /third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
| D | gstmpegvideoparser.h | 85 * @GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_SCALABLE: Sequence Scalable extension code 136 * @GST_MPEG_VIDEO_PROFILE_SPATIALLY_SCALABLE: Spatially Scalable profile (Spatial) 137 * @GST_MPEG_VIDEO_PROFILE_SNR_SCALABLE: SNR Scalable profile (SNR) 327 * The Sequence Scalable Extension structure.
|
| /third_party/grpc/test/cpp/qps/ |
| D | gen_build_yaml.py | 132 if 'scalable' in scenario_json.get('CATEGORIES', [])] + 196 if 'scalable' in scenario_json.get('CATEGORIES', [])]
|
| /third_party/mesa3d/docs/drivers/ |
| D | openswr.rst | 4 The Gallium OpenSWR driver is a high performance, highly scalable
|