Home
last modified time | relevance | path

Searched full:condition (Results 1 – 25 of 8130) sorted by relevance

12345678910>>...326

/external/vixl/src/aarch32/
Ddisasm-aarch32.h43 Condition first_condition_;
44 Condition condition_;
50 condition_ = Condition((condition_.GetCondition() & 0xe) | (it_mask_ >> 3)); in Advance()
59 void Set(Condition first_condition, uint16_t mask) { in Set()
63 Condition GetFirstCondition() const { return first_condition_; } in GetFirstCondition()
64 Condition GetCurrentCondition() const { return condition_; } in GetCurrentCondition()
100 Condition cond_;
103 ConditionPrinter(const ITBlock& it_block, Condition cond) in ConditionPrinter()
106 Condition GetCond() const { return cond_; } in GetCond()
287 virtual DisassemblerStream& operator<<(Condition cond) {
[all …]
Dassembler-aarch32.h40 Condition first_condition_;
50 // Check that the condition of the current instruction is consistent with the
52 void CheckIT(Condition condition) { in CheckIT() argument
54 PerformCheckIT(condition); in CheckIT()
56 USE(condition); in CheckIT()
60 void PerformCheckIT(Condition condition);
64 Condition((first_condition_.GetCondition() & 0xe) | (it_mask_ >> 3)); in AdvanceIT()
174 void SetIT(Condition first_condition, uint16_t it_mask) { in SetIT()
182 bool OutsideITBlockAndAlOrLast(Condition cond) { in OutsideITBlockAndAlOrLast()
227 void it(Condition cond) { it(cond, 0x8); } in it()
[all …]
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_where_op.py31 def where_v2(condition: ragged_tensor.RaggedOrDense,
35 """Return the elements where `condition` is `True`.
39 Returns the coordinates of true elements of `condition`. The coordinates
41 `[num_true_values, dim_size(condition)]`, where `result[i]` is the
46 Choose an output shape from the shapes of `condition`, `x`, and `y` that
48 `condition` tensor as a mask that chooses whether the corredsponding element
49 in the output should be taken from `x` (if `condition` is true) or `y` (if
50 `condition` is false).
63 condition: A potentially ragged tensor of type `bool`
71 A `Tensor` with shape `(num_true, rank(condition))`.
[all …]
/external/cronet/net/third_party/quiche/src/quiche/common/platform/default/quiche_platform_impl/
Dquiche_logging_impl.h36 #define QUICHE_LOG_IF_IMPL(severity, condition) \ argument
37 QUICHE_LOG_IF_IMPL_##severity(condition)
38 #define QUICHE_LOG_IF_IMPL_FATAL(condition) ABSL_LOG_IF(FATAL, condition) argument
39 #define QUICHE_LOG_IF_IMPL_ERROR(condition) ABSL_LOG_IF(ERROR, condition) argument
40 #define QUICHE_LOG_IF_IMPL_WARNING(condition) ABSL_LOG_IF(WARNING, condition) argument
41 #define QUICHE_LOG_IF_IMPL_INFO(condition) ABSL_LOG_IF(INFO, condition) argument
43 #define QUICHE_PLOG_IF_IMPL(severity, condition) \ argument
44 QUICHE_PLOG_IF_IMPL_##severity(condition)
45 #define QUICHE_PLOG_IF_IMPL_FATAL(condition) ABSL_PLOG_IF(FATAL, condition) argument
46 #define QUICHE_PLOG_IF_IMPL_ERROR(condition) ABSL_PLOG_IF(ERROR, condition) argument
[all …]
/external/angle/
DDEPS419 'condition': 'not build_with_chromium',
424 'condition': 'not build_with_chromium',
429 'condition': 'not build_with_chromium',
440 'condition': 'not build_with_chromium and host_os == "linux"',
451 'condition': 'not build_with_chromium and host_os == "mac"',
462 'condition': 'not build_with_chromium and not (host_os == "linux" and host_cpu == "arm64")',
473 'condition': 'not build_with_chromium and host_os == "win"',
478 'condition': 'not build_with_chromium',
483 'condition': 'not build_with_chromium',
488 'condition': 'checkout_android and not build_with_chromium',
[all …]
/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/retry/conditions/
DTokenBucketRetryConditionTest.java38 TokenBucketRetryCondition condition = create(3, e -> 1); in maximumTokensCannotBeExceeded() local
40 condition.requestSucceeded(context(null)); in maximumTokensCannotBeExceeded()
41 assertThat(condition.tokensAvailable()).isEqualTo(3); in maximumTokensCannotBeExceeded()
49 TokenBucketRetryCondition condition = create(11, e -> e == EXCEPTION ? 1 : 3); in releasingMoreCapacityThanAvailableSetsCapacityToMax() local
50 assertThat(condition.shouldRetry(context(EXCEPTION, attributes))).isTrue(); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
51 assertThat(condition.tokensAvailable()).isEqualTo(10); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
52 assertThat(condition.shouldRetry(context(EXCEPTION_2, attributes))).isTrue(); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
53 assertThat(condition.tokensAvailable()).isEqualTo(7); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
54 condition.requestSucceeded(context(EXCEPTION_2, attributes)); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
55 assertThat(condition.tokensAvailable()).isEqualTo(10); in releasingMoreCapacityThanAvailableSetsCapacityToMax()
[all …]
/external/aws-sdk-java-v2/test/test-utils/src/main/java/software/amazon/awssdk/core/auth/policy/
DCondition.java24 * that allows access to an Amazon SQS queue could use a condition to only apply
34 * A condition is composed of three parts:
36 * <li><b>Condition Key</b> - The condition key declares which value of a
41 * <li><b>Comparison Type</b> - Most condition types allow several ways to
42 * compare the value obtained from the condition key and the comparison value.
54 * should use the many available conditions and condition factories in the
58 public class Condition { class
64 * Returns the type of this condition.
66 * @return The type of this condition.
73 * Sets the type of this condition.
[all …]
/external/python/cpython3/PCbuild/
Dpython.props5 <Platform Condition="'$(Platform)' == ''">Win32</Platform>
6 <Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
14 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '17…
15 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '16…
16 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and ('$(MSBuildToolsVersion)' == '1…
17 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''">v14…
18 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v12…
19 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''">v11…
20 …<BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''">v10…
22 <PlatformToolset Condition="'$(PlatformToolset)' == ''">$(BasePlatformToolset)</PlatformToolset>
[all …]
/external/libyuv/
DDEPS50 'condition': 'host_os == "linux"',
61 'condition': 'host_os == "mac"',
72 'condition': 'host_os == "win"',
93 'condition': 'checkout_android',
101 'condition': 'checkout_fuchsia',
126 'condition': 'checkout_android or checkout_linux',
137 'condition': 'checkout_android',
148 'condition': 'checkout_android',
158 'condition': 'checkout_android',
166 'condition': 'checkout_android',
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/vstudio/vc11/
Dtestzlib.vcxproj47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
53 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Config…
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
64 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
69 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Conf…
74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
78 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
83 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configur…
88 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
95 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/vstudio/vc10/
Dtestzlib.vcxproj47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
52 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Config…
57 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
61 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
66 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Conf…
71 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
75 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
79 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configur…
83 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
89 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/vstudio/vc14/
Dtestzlib.vcxproj47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
53 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Config…
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
64 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
70 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Conf…
76 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
86 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configur…
91 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
98 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
[all …]
/external/rust/crates/libz-sys/src/zlib/contrib/vstudio/vc12/
Dtestzlib.vcxproj47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
53 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Config…
59 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
64 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
70 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Conf…
76 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
86 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configur…
91 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
98 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
[all …]
/external/mbedtls/library/
Dconstant_time_internal.h254 * condition ? if1 : if0.
256 * \param condition Condition to test.
257 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
258 * \param if0 Value to use if \p condition == MBEDTLS_CT_FALSE.
260 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
262 static inline size_t mbedtls_ct_size_if(mbedtls_ct_condition_t condition,
270 * condition ? if1 : if0.
272 * \param condition Condition to test.
273 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
274 * \param if0 Value to use if \p condition == MBEDTLS_CT_FALSE.
[all …]
/external/cronet/net/third_party/quiche/overrides/quiche_platform_impl/
Dquiche_logging_impl.h22 #define QUICHE_DLOG_IF_IMPL(severity, condition) \ argument
23 QUICHE_CHROMIUM_DLOG_IF_##severity(condition)
24 #define QUICHE_LOG_IF_IMPL(severity, condition) \ argument
25 QUICHE_CHROMIUM_LOG_IF_##severity(condition)
39 #define QUICHE_CHROMIUM_LOG_IF_INFO(condition) VLOG_IF(1, condition) argument
40 #define QUICHE_CHROMIUM_LOG_IF_WARNING(condition) DLOG_IF(WARNING, condition) argument
41 #define QUICHE_CHROMIUM_LOG_IF_ERROR(condition) DLOG_IF(ERROR, condition) argument
42 #define QUICHE_CHROMIUM_LOG_IF_FATAL(condition) LOG_IF(FATAL, condition) argument
43 #define QUICHE_CHROMIUM_LOG_IF_DFATAL(condition) LOG_IF(DFATAL, condition) argument
45 #define QUICHE_CHROMIUM_DLOG_IF_INFO(condition) DVLOG_IF(1, condition) argument
[all …]
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/log/internal/
Dlog_impl.h44 #define ABSL_LOG_IF_IMPL(severity, condition) \ argument
45 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
47 #define ABSL_PLOG_IF_IMPL(severity, condition) \ argument
48 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
53 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
54 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
57 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
58 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, false && (condition)) \
137 #define ABSL_LOG_IF_EVERY_N_IMPL(severity, condition, n) \ argument
138 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, condition)(EveryN, n) \
[all …]
/external/libtextclassifier/abseil-cpp/absl/log/internal/
Dlog_impl.h44 #define ABSL_LOG_INTERNAL_LOG_IF_IMPL(severity, condition) \ argument
45 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
47 #define ABSL_LOG_INTERNAL_PLOG_IF_IMPL(severity, condition) \ argument
48 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
53 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
54 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
57 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
58 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, false && (condition)) \
137 #define ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_IMPL(severity, condition, n) \ argument
138 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, condition)(EveryN, n) \
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/log/internal/
Dlog_impl.h44 #define ABSL_LOG_IF_IMPL(severity, condition) \ argument
45 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
47 #define ABSL_PLOG_IF_IMPL(severity, condition) \ argument
48 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
53 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
54 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
57 #define ABSL_DLOG_IF_IMPL(severity, condition) \ argument
58 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, false && (condition)) \
137 #define ABSL_LOG_IF_EVERY_N_IMPL(severity, condition, n) \ argument
138 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, condition)(EveryN, n) \
[all …]
/external/cronet/third_party/abseil-cpp/absl/log/internal/
Dlog_impl.h44 #define ABSL_LOG_INTERNAL_LOG_IF_IMPL(severity, condition) \ argument
45 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
47 #define ABSL_LOG_INTERNAL_PLOG_IF_IMPL(severity, condition) \ argument
48 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
53 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
54 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, condition) \
57 #define ABSL_LOG_INTERNAL_DLOG_IF_IMPL(severity, condition) \ argument
58 ABSL_LOG_INTERNAL_CONDITION##severity(STATELESS, false && (condition)) \
137 #define ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_IMPL(severity, condition, n) \ argument
138 ABSL_LOG_INTERNAL_CONDITION##severity(STATEFUL, condition)(EveryN, n) \
[all …]
/external/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.h36 S = 1 << 20, // set condition code (or leave unchanged)
437 void and_(Register rd, Register rn, Operand o, Condition cond = AL);
440 void eor(Register rd, Register rn, Operand o, Condition cond = AL);
443 void sub(Register rd, Register rn, Operand o, Condition cond = AL);
444 void subs(Register rd, Register rn, Operand o, Condition cond = AL);
447 void rsb(Register rd, Register rn, Operand o, Condition cond = AL);
448 void rsbs(Register rd, Register rn, Operand o, Condition cond = AL);
451 void add(Register rd, Register rn, Operand o, Condition cond = AL);
453 void adds(Register rd, Register rn, Operand o, Condition cond = AL);
456 void adc(Register rd, Register rn, Operand o, Condition cond = AL);
[all …]
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2alpha/src/main/java/com/google/cloud/retail/v2alpha/
DCondition.java25 * Metadata that is used to define a condition that triggers an action.
26 * A valid condition must specify at least one of 'query_terms' or
27 * 'products_filter'. If multiple fields are specified, the condition is met if
33 * Protobuf type {@code google.cloud.retail.v2alpha.Condition}
35 public final class Condition extends com.google.protobuf.GeneratedMessageV3 class
37 // @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.Condition)
40 // Use Condition.newBuilder() to construct.
41 private Condition(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Condition() method in Condition
45 private Condition() { in Condition() method in Condition
53 return new Condition(); in newInstance()
[all …]
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2beta/src/main/java/com/google/cloud/retail/v2beta/
DCondition.java25 * Metadata that is used to define a condition that triggers an action.
26 * A valid condition must specify at least one of 'query_terms' or
27 * 'products_filter'. If multiple fields are specified, the condition is met if
33 * Protobuf type {@code google.cloud.retail.v2beta.Condition}
35 public final class Condition extends com.google.protobuf.GeneratedMessageV3 class
37 // @@protoc_insertion_point(message_implements:google.cloud.retail.v2beta.Condition)
40 // Use Condition.newBuilder() to construct.
41 private Condition(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Condition() method in Condition
45 private Condition() { in Condition() method in Condition
53 return new Condition(); in newInstance()
[all …]
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2/src/main/java/com/google/cloud/retail/v2/
DCondition.java25 * Metadata that is used to define a condition that triggers an action.
26 * A valid condition must specify at least one of 'query_terms' or
27 * 'products_filter'. If multiple fields are specified, the condition is met if
33 * Protobuf type {@code google.cloud.retail.v2.Condition}
35 public final class Condition extends com.google.protobuf.GeneratedMessageV3 class
37 // @@protoc_insertion_point(message_implements:google.cloud.retail.v2.Condition)
40 // Use Condition.newBuilder() to construct.
41 private Condition(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Condition() method in Condition
45 private Condition() { in Condition() method in Condition
53 return new Condition(); in newInstance()
[all …]
DConditionOrBuilder.java23 // @@protoc_insertion_point(interface_extends:google.cloud.retail.v2.Condition)
32 * If many query terms are specified, the condition
36 * <code>repeated .google.cloud.retail.v2.Condition.QueryTerm query_terms = 1;</code>
38 java.util.List<com.google.cloud.retail.v2.Condition.QueryTerm> getQueryTermsList(); in getQueryTermsList()
45 * If many query terms are specified, the condition
49 * <code>repeated .google.cloud.retail.v2.Condition.QueryTerm query_terms = 1;</code>
51 com.google.cloud.retail.v2.Condition.QueryTerm getQueryTerms(int index); in getQueryTerms()
58 * If many query terms are specified, the condition
62 * <code>repeated .google.cloud.retail.v2.Condition.QueryTerm query_terms = 1;</code>
71 * If many query terms are specified, the condition
[all …]
/external/webrtc/
DDEPS52 'condition': 'checkout_android',
56 'condition': 'checkout_ios',
71 'condition': 'checkout_linux',
81 'condition': 'checkout_mac',
91 'condition': 'checkout_win',
129 'condition': 'checkout_android',
149 'condition': 'checkout_android',
160 'condition': 'checkout_android',
189 'condition': 'checkout_linux',
208 'condition': 'checkout_android',
[all …]

12345678910>>...326