| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
| D | TypeSize.h | 10 // which may be scalable vectors. It provides convenience operators so that 32 /// done on a scalable vector. This function may not return. 35 /// StackOffset holds a fixed and a scalable offset in bytes. 38 int64_t Scalable = 0; variable 40 StackOffset(int64_t Fixed, int64_t Scalable) in StackOffset() argument 41 : Fixed(Fixed), Scalable(Scalable) {} in StackOffset() 46 static StackOffset getScalable(int64_t Scalable) { return {0, Scalable}; } in getScalable() argument 47 static StackOffset get(int64_t Fixed, int64_t Scalable) { in get() argument 48 return {Fixed, Scalable}; in get() 54 /// Returns the scalable component of the stack. [all …]
|
| D | MachineValueType.h | 909 "scalable vector. Scalable flag may be dropped, use " in getVectorNumElements() 916 /// If the value type is a scalable vector type, the scalable property will 940 case nxv1i1: return TypeSize::Scalable(1); in getSizeInBits() 943 case nxv2i1: return TypeSize::Scalable(2); in getSizeInBits() 946 case nxv4i1: return TypeSize::Scalable(4); in getSizeInBits() 951 case nxv8i1: return TypeSize::Scalable(8); in getSizeInBits() 963 case nxv1f16: return TypeSize::Scalable(16); in getSizeInBits() 979 case nxv1f32: return TypeSize::Scalable(32); in getSizeInBits() 1003 case nxv1f64: return TypeSize::Scalable(64); in getSizeInBits() 1027 case nxv2f64: return TypeSize::Scalable(128); in getSizeInBits() [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/run_tests/performance/ |
| D | scenario_config.py | 24 SCALABLE = 'scalable' variable 28 DEFAULT_CATEGORIES = (SCALABLE, SMOKETEST) 316 categories=[SCALABLE]) 332 [SCALABLE]) 346 [SCALABLE]) 361 [SCALABLE]) 388 categories=inproc_categories + [SCALABLE], 404 categories=inproc_categories + [SCALABLE]) 428 categories=inproc_categories + [SCALABLE]) 439 categories=inproc_categories + [SCALABLE]) [all …]
|
| D | README.md | 29 the tests. Continuous runs will typically run tests in the `scalable` category. 31 The following example counts scenarios in the `scalable` category: 34 $ ./tools/run_tests/performance/scenario_config_exporter.py --count_scenarios --category=scalable 35 Scenario count for all languages (category: scalable): 37 77 c++ scalable 38 19 python_asyncio scalable 39 16 java scalable 40 12 go scalable 41 12 node node scalable 42 12 node_purejs node scalable [all …]
|
| D | scenario_config_exporter.py | 32 # --category=scalable 36 # scenario_config.py --count_scenarios --category=scalable 62 main_categories = ('scalable', 'smoketest') 100 # 'scalable' and 'smoketest'. This matches the behavior of 103 ['scalable', 'smoketest']) 172 choices=['all', 'inproc', 'scalable', 'smoketest', 'sweep'],
|
| /external/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 …]
|
| /external/grpc-grpc/tools/run_tests/performance/ |
| D | scenario_config.py | 25 SCALABLE = "scalable" variable 32 DEFAULT_CATEGORIES = (SCALABLE, SMOKETEST) 339 categories=[SCALABLE], 358 + [SCALABLE], 375 + [SCALABLE], 393 + [SCALABLE], 424 categories=inproc_categories + [SCALABLE], 442 categories=inproc_categories + [SCALABLE], 470 categories=inproc_categories + [SCALABLE], 483 categories=inproc_categories + [SCALABLE], [all …]
|
| D | README.md | 29 the tests. Continuous runs will typically run tests in the `scalable` category. 31 The following example counts scenarios in the `scalable` category: 34 $ ./tools/run_tests/performance/scenario_config_exporter.py --count_scenarios --category=scalable 35 Scenario count for all languages (category: scalable): 37 56 c++ scalable 38 19 python_asyncio scalable 39 16 java scalable 40 12 go scalable 41 12 node scalable 42 9 csharp scalable [all …]
|
| D | scenario_config_exporter.py | 32 # --category=scalable 36 # scenario_config.py --count_scenarios --category=scalable 67 main_categories = ("scalable", "smoketest") 107 # 'scalable' and 'smoketest'. This matches the behavior of 110 "CATEGORIES", ["scalable", "smoketest"] 194 "scalable",
|
| /external/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 …]
|
| /external/aws-sdk-java-v2/services/applicationautoscaling/src/main/resources/codegen-resources/ |
| D | examples-1.json | 40 …"description": "This example deregisters a scalable target for an Amazon ECS service called web-ap… 41 "id": "to-deregister-a-scalable-target-1470864164895", 42 "title": "To deregister a scalable target" 69 "description": "This example describes the scalable targets for the ecs service namespace.", 70 "id": "to-describe-scalable-targets-1470864286961", 71 "title": "To describe scalable targets" 104 "id": "to-describe-scaling-activities-for-a-scalable-target-1470864398629", 105 "title": "To describe scaling activities for a scalable target" 234 …"description": "This example registers a scalable target from an Amazon ECS service called web-app… 235 "id": "to-register-a-new-scalable-target-1470864910380", [all …]
|
| D | service-2.json | 30 …<p>Deletes the specified scaling policy for an Application Auto Scaling scalable target.</p> <p>De… 46 …>Deletes the specified scheduled action for an Application Auto Scaling scalable target.</p> <p>Fo… 62 …scalable target when you have finished using it. To see which resources have been registered, use … 78 …"documentation":"<p>Gets information about the scalable targets in the specified namespace.</p> <p… 140 …"documentation":"<p>Returns all the tags on the specified Application Auto Scaling scalable target… 158 …scalable target.</p> <p>Each scalable target is identified by a service namespace, resource ID, an… 175 …scalable target. </p> <p>Each scalable target is identified by a service namespace, resource ID, a… 191 …scalable target, which is the resource that you want to scale.</p> <p>Scalable targets are uniquel… 206 …scalable target.</p> <p>Each tag consists of a tag key and a tag value, which are both case-sensit… 220 … an Application Auto Scaling scalable target. To delete a tag, specify the tag key and the Applica… [all …]
|
| /external/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()
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
| D | TypeSize.cpp | 21 /// using the wrong interface on a scalable vector. 24 "treat-scalable-fixed-error-as-warning", cl::Hidden, in call() 27 "scalable type as a warning, instead of an error")); in call() 41 WithColor::warning() << "Invalid size request on a scalable vector; " << Msg in reportInvalidSizeRequest() 46 report_fatal_error("Invalid size request on a scalable vector."); in reportInvalidSizeRequest() 52 "Cannot implicitly convert a scalable size to a fixed-width size in " in operator TypeSize::ScalarTy()
|
| /external/skia/src/core/ |
| D | SkLatticeIter.cpp | 53 * Count the number of pixels that are in "scalable" patches. 91 // This is the "normal" case, where we scale the "scalable" patches and leave in set_points() 95 // In this case, we eliminate the "scalable" patches and scale the "fixed" patches. in set_points() 112 // Alternate between "scalable" and "fixed" patches. in set_points() 128 // In the x-dimension, the first rectangle always starts at x = 0 and is "scalable". in SkLatticeIter() 130 // first real rectangle "scalable" in the x-direction. in SkLatticeIter() 135 // "scalable" in the x-direction. Similarly, as move top to bottom, alternating in SkLatticeIter() 136 // patches will be "fixed" or "scalable" in the y-direction. in SkLatticeIter() 141 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() 148 // Once we've decided that the first patch is "scalable", we don't need the in SkLatticeIter() [all …]
|
| /external/aws-sdk-java-v2/services/autoscalingplans/src/main/resources/codegen-resources/ |
| D | docs-2.json | 3 …scalable AWS resources for your application and configure dynamic scaling for your scalable resour… 5 …ontains a set of instructions used to configure dynamic scaling for the scalable resources in your… 7 …"DescribeScalingPlanResources": "<p>Describes the scalable resources in the specified scaling plan… 35 …ore another scale out activity can start. This value is not used if the scalable resource is an Au… 36 …scalable resource is an Auto Scaling group.</p> <p>The cooldown period is used to block subsequent… 89 …apacity from the scalable resource. Otherwise, scale in is enabled and the target tracking policy … 121 …"DescribeScalingPlanResourcesRequest$MaxResults": "<p>The maximum number of scalable resources to … 122 …"DescribeScalingPlansRequest$MaxResults": "<p>The maximum number of scalable resources to return. … 234 …"ScalingInstruction$ScalableDimension": "<p>The scalable dimension associated with the resource.</… 235 …"ScalingPlanResource$ScalableDimension": "<p>The scalable dimension for the resource.</p> <ul> <li… [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/ |
| D | ValueTypes.h | 123 /// scalable type 259 "Comparison between scalable and fixed types"); in bitsGT() 267 "Comparison between scalable and fixed types"); in bitsGE() 275 "Comparison between scalable and fixed types"); in bitsLT() 283 "Comparison between scalable and fixed types"); in bitsLE() 314 "scalable vector. Scalable flag may be dropped, use " in getVectorNumElements() 321 // Given a (possibly scalable) vector type, return the ElementCount 337 /// If the value type is a scalable vector type, the scalable property will 347 /// function will assert if the type is scalable. 359 /// If the value type is a scalable vector type, the scalable property will [all …]
|
| /external/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
|
| /external/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()
|
| /external/accessibility-test-framework/src/main/resources/resources-en-rGB/ |
| D | strings.xml | 312 …_with_scaled_text">This <tt>TextView</tt> has a fixed width and scalable text.</string> 314 …h_scaled_text_compose">This <tt>Text</tt> has a fixed width and scalable text.</string> 316 …with_scaled_text">This <tt>TextView</tt> has a fixed height and scalable text.</string> 318 …_scaled_text_compose">This <tt>Text</tt> has a fixed height and scalable text.</string> 320 …w_with_scaled_text">This <tt>TextView</tt> has a fixed size and scalable text.</string> 322 …th_scaled_text_compose">This <tt>Text</tt> has a fixed size and scalable text.</string> 324 …/tt> has a fixed width and contains a <tt>TextView</tt> with scalable text.</string> 326 …ent has a fixed width and contains a <tt>Text</tt> element with scalable text.</string> 328 …tt> has a fixed height and contains a <tt>TextView</tt> with scalable text.</string> 330 …nt has a fixed height and contains a <tt>Text</tt> element with scalable text.</string> [all …]
|
| /external/trusty/lk/include/arch/ |
| D | ops.h | 101 * arch_sve_supported - indicates if Scalable Vector Extension (SVE) is supported. 108 * arch_enable_sve - Enables Scalable Vector Extension (SVE). 115 * arch_disable_sve - Disables Scalable Vector Extension (SVE).
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testdata/src/test/assets/media/ad-responses/ |
| D | preroll_midroll6s_postroll.xml | 18 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs… 49 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs… 80 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs…
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testdata/src/test/assets/media/ad-responses/ |
| D | preroll_midroll6s_postroll.xml | 18 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs… 49 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs… 80 …y="progressive" width="640" height="360" type="video/mp4" bitrate="450" scalable="true" maintainAs…
|
| /external/cpu_features/include/ |
| D | cpuinfo_aarch64.h | 140 int sve : 1; // Scalable Vector Extension. 151 int sve2 : 1; // Scalable Vector Extension (version 2). 173 int sme : 1; // Scalable Matrix Extension. 186 int sve2p1 : 1; // Scalable Vector Extension (version 2.1). 187 int sme2 : 1; // Scalable Matrix Extension (version 2). 188 int sme2p1 : 1; // Scalable Matrix Extension (version 2.1).
|