/aosp_15_r20/external/erofs-utils/include/erofs/ |
H A D | defs.h | 90 #define BUILD_BUG_ON(condition) static_assert(!(condition)) argument 92 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2 * !!(condition)])) argument 94 #define BUILD_BUG_ON(condition) assert(!(condition)) argument 173 #define DBG_BUGON(condition) ((void)(condition)) argument 175 #define DBG_BUGON(condition) BUG_ON(condition) argument 189 #define __put_unaligned_t(type, val, ptr) do { \ argument 195 #define put_unaligned(val, ptr) __put_unaligned_t(typeof(*(ptr)), (val), (ptr)) argument 202 static inline void put_unaligned_le32(u32 val, void *p) in put_unaligned_le32() 335 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtim.tv_nsec = (val) argument 341 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimensec = (val) argument [all …]
|
/aosp_15_r20/external/pytorch/c10/util/ |
H A D | logging_is_not_google_glog.h | 99 #define LOG_IF(n, condition) \ argument 102 #define VLOG_IF(n, condition) \ argument 115 #define FATAL_IF(condition) \ argument 121 #define CHECK(condition) FATAL_IF(condition) << "Check failed: " #condition " " argument 125 #define DCHECK(condition) FATAL_IF(condition) << "Check failed: " #condition " " argument 129 #define DCHECK(condition) \ argument 182 #define TORCH_CHECK_NOTNULL(val) \ argument 188 #define TORCH_DCHECK_NOTNULL(val) \ argument 193 #define TORCH_DCHECK_NOTNULL(val) \ argument
|
H A D | Logging.cpp | 50 const char* condition, in ThrowEnforceNotMet() 63 const char* condition, in ThrowEnforceNotMet() 72 const char* condition, in ThrowEnforceFiniteNotMet() 82 const char* condition, in ThrowEnforceFiniteNotMet() 125 const char* val = getenv("PYTORCH_API_USAGE_STDERR"); in IsAPIUsageDebugMode() local
|
/aosp_15_r20/external/webp/src/utils/ |
H A D | thread_utils.c | 68 #define THREAD_RETURN(val) (unsigned int)((DWORD_PTR)val) argument 131 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy() 143 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) { in pthread_cond_init() 161 static int pthread_cond_signal(pthread_cond_t* const condition) { in pthread_cond_signal() 178 static int pthread_cond_wait(pthread_cond_t* const condition, in pthread_cond_wait() 199 # define THREAD_RETURN(val) val argument
|
/aosp_15_r20/packages/apps/Messaging/src/com/android/messaging/util/ |
D | Assert.java | 82 public static void isTrue(final boolean condition) { in isTrue() 91 public static void isFalse(final boolean condition) { in isFalse() 100 public static void isTrueReleaseCheck(final boolean condition) { in isTrueReleaseCheck() 135 final int val, final int rangeMinInclusive, final int rangeMaxInclusive) { in inRange() 143 final long val, final long rangeMinInclusive, final long rangeMaxInclusive) { in inRange()
|
/aosp_15_r20/external/double-conversion/test/cctest/ |
H A D | checks.h | 60 bool condition) { in CheckHelper() 68 #define CHECK(condition) CheckHelper(__FILE__, __LINE__, #condition, condition) argument 194 volatile double* val = new double[1]; in CheckEqualsHelper() local 215 volatile double* val = new double[1]; in CheckNonEqualsHelper() local 286 #define DOUBLE_CONVERSION_ASSERT(condition) CHECK(condition) argument 290 #define SLOW_DOUBLE_CONVERSION_ASSERT(condition) if (FLAG_enable_slow_asserts) CHECK(condition) argument 293 #define DOUBLE_CONVERSION_ASSERT(condition) ((void) 0) argument 297 #define SLOW_DOUBLE_CONVERSION_ASSERT(condition) ((void) 0) argument
|
/aosp_15_r20/external/swiftshader/src/Reactor/ |
H A D | SubzeroReactor.cpp | 1708 static Value *createIntCompare(Ice::InstIcmp::ICond condition, Value *lhs, Value *rhs) in createIntCompare() 1779 static Value *createFloatCompare(Ice::InstFcmp::FCond condition, Value *lhs, Value *rhs) in createFloatCompare() 2254 static RValue<Byte> Extract(RValue<Byte8> val, int i) in Extract() 2259 static RValue<Byte8> Insert(RValue<Byte8> val, RValue<Byte> element, int i) in Insert() 2304 RValue<SByte> Extract(RValue<SByte8> val, int i) in Extract() 2310 RValue<SByte8> Insert(RValue<SByte8> val, RValue<SByte> element, int i) in Insert() 2539 Ice::Variable *condition = ::function->makeVariable(Ice::IceType_v8i1); in Max() local 2553 Ice::Variable *condition = ::function->makeVariable(Ice::IceType_v8i1); in Min() local 2759 RValue<UShort> Extract(RValue<UShort4> val, int i) in Extract() 2793 Ice::Variable *condition = ::function->makeVariable(Ice::IceType_v8i1); in Max() local [all …]
|
H A D | Reactor.hpp | 385 Value *const val; member in rr::RValue 392 explicit Argument(Value *val) in Argument() 399 Value *const val; member in rr::Argument 2946 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse() 2953 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse() 2962 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse() 2971 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse() 3013 RValue<T> ReinterpretCast(RValue<S> val) in ReinterpretCast() 3023 Value *val = var.loadValue(); in ReinterpretCast() local 3035 RValue<T> As(Value *val) in As() [all …]
|
/aosp_15_r20/external/skia/src/gpu/ganesh/effects/ |
H A D | GrSkSLFP.h | 81 static GrSpecializedUniform<T> SpecializeIf(bool condition, const T& value) { in SpecializeIf() 90 static GrOptionalUniform<T> When(bool condition, const T& value) { in When() 262 const GrSpecializedUniform<T>& val, in appendArgs() 279 const GrOptionalUniform<T>& val, in appendArgs() 295 SkSpan<T> val, in appendArgs() 308 const T& val, in appendArgs() 373 const GrSpecializedUniform<T>& val, in checkArgs() 384 const GrOptionalUniform<T>& val, in checkArgs() 415 SkSpan<T> val, in checkArgs() 426 const T& val, in checkArgs()
|
/aosp_15_r20/external/webrtc/rtc_base/ |
H A D | checks.h | 148 T val; member 157 std::string val; member 400 #define RTC_CHECK(condition) \ argument 413 #define RTC_CHECK(condition) \ argument 443 #define RTC_DCHECK(condition) RTC_CHECK(condition) argument 451 #define RTC_DCHECK(condition) RTC_EAT_STREAM_PARAMETERS(condition) argument 490 #define RTC_CHECK(condition) \ argument 505 #define RTC_DCHECK(condition) \ argument
|
/aosp_15_r20/external/libtraceevent/include/linux/ |
H A D | compiler.h | 14 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 21 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 24 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 36 #define compiletime_assert(condition, msg) \ argument 189 #define WRITE_ONCE(x, val) \ argument
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/tensorexpr/ |
H A D | stmt.h | 471 static LetPtr make(const VarHandle& var, const ExprHandle& val) { in make() 475 Let(VarPtr var, ExprPtr val) : var_(std::move(var)), val_(std::move(val)) {} in Let() 489 void set_val(ExprPtr val) { in set_val() 501 const ExprHandle& condition, in make() 507 ExprPtr condition() const { in condition() function 519 void set_condition(ExprPtr condition) { in set_condition() 545 Cond(ExprPtr condition, StmtPtr true_stmt, StmtPtr false_stmt) in Cond()
|
/aosp_15_r20/hardware/interfaces/broadcastradio/common/utilsaidl/src/ |
H A D | Utils.cpp | 53 bool maybeGetId(const ProgramSelector& sel, const IdentifierType& type, int64_t* val) { in maybeGetId() 165 int64_t val; in getId() local 206 uint64_t val = static_cast<uint64_t>(id.value); in isValid() local 209 auto expect = [&valid](bool condition, const std::string& message) { in isValid() 534 int64_t val = 0; in makeHdRadioStationName() local 591 auto expect = [&valid](bool condition, const std::string& message) { in isValidMetadata()
|
/aosp_15_r20/external/junit-params/lib/ |
HD | assertj-core-1.7.1.jar | ... is (org.assertj.core.api.Condition)
org.assertj.core.api.Condition ... |
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/conjure3/ |
D | compiler.cpp | 330 value llvm_compiler::val(unsigned int x) in val() function in client::code_gen::llvm_compiler 337 value llvm_compiler::val(int x) in val() function in client::code_gen::llvm_compiler 344 value llvm_compiler::val(bool x) in val() function in client::code_gen::llvm_compiler 351 value llvm_compiler::val(llvm::Value* v) in val() function in client::code_gen::llvm_compiler 875 value condition = (*this)(x.condition); in operator ()() local 947 value condition = (*this)(x.condition); in operator ()() local
|
/aosp_15_r20/prebuilts/tools/common/m2/repository/org/assertj/assertj-core/2.0.0/ |
HD | assertj-core-2.0.0.jar | ... is (org.assertj.core.api.Condition)
org.assertj.core.api.Condition ... |
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/android.test.base.impl_intermediates/ |
D | classes.jar | ... extends junit.framework.TestCase {
final synthetic String val$message
void <init> (java.lang ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/test-base/android.test.base.impl/android_common/repackaged-jarjar/javac/ |
D | android.test.base.jar | ... extends junit.framework.TestCase {
final synthetic String val$message
void <init> (java.lang ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/test-base/android.test.base.impl/android_common/javac/ |
D | android.test.base.jar | ... implements java.lang.Runnable {
final synthetic Runnable val$r
final synthetic Throwable[] val$exceptions ... |
/aosp_15_r20/external/tensorflow/tensorflow/tsl/platform/default/ |
H A D | logging.h | 208 #define LOGGING_INTERNAL_STATEFUL_CONDITION(kind, condition, arg) \ argument 263 #define CHECK(condition) \ argument 463 #define CHECK_NOTNULL(val) \ argument 469 #define DCHECK(condition) CHECK(condition) argument 479 #define DCHECK(condition) \ argument 500 #define QCHECK(condition) CHECK(condition) argument
|
/aosp_15_r20/prebuilts/misc/common/ub-uiautomator/ |
HD | ub-uiautomator.jar | ... )
android.support.test.uiautomator.UiObject2Condition condition
long timeout
public java.lang.Object wait ( ... |
/aosp_15_r20/hardware/interfaces/broadcastradio/common/utils2x/ |
H A D | Utils.cpp | 136 static bool maybeGetId(const ProgramSelector& sel, const IdentifierType type, uint64_t* val) { in maybeGetId() 161 uint64_t val; in getId() local 200 auto val = id.value; in isValid() local 203 auto expect = [&valid](bool condition, std::string message) { in isValid() 408 uint64_t val = 0; in make_hdradio_station_name() local
|
/aosp_15_r20/external/bcc/examples/cpp/ |
H A D | UseExternalMap.cc | 24 #define CHECK(condition, msg) \ argument 82 uint32_t val; in main() local
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
H A D | np_array_ops.py | 146 def _array_internal(val, dtype=None, copy=True, ndmin=0): # pylint: disable=redefined-outer-name argument 196 def array(val, dtype=None, copy=True, ndmin=0): # pylint: disable=redefined-outer-name argument 379 def compress(condition, a, axis=None): # pylint: disable=redefined-outer-name,missing-function-doc… argument 458 def imag(val): argument 684 def real(val): argument 930 def where(condition, x=None, y=None): argument
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/tools/clang_tidy_checks/ |
H A D | proper_version_checks.cpp | 35 std::string_view condition = clang::Lexer::getSourceText( in check_condition() local 53 std::ranges::none_of(std::array{"14", "17", "20", "23", "26"}, [&](auto val) { in check_condition()
|