HomeSort by relevance Sort by last modified time
    Searched defs:ASSERT (Results 1 - 25 of 474) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libavc/common/
ih264_debug.h 57 #define ASSERT(x) assert((x))
  /external/libhevc/common/
ihevc_debug.h 55 #define ASSERT(x) assert((x))
56 //#define ASSERT(x) ihevcd_debug_ASSERT((x))
59 #define ASSERT(x) \
63 printf("ASSERT %s %d\n", __FILE__, __LINE__); \
  /external/linux-kselftest/tools/testing/selftests/sync/
synctest.h 34 #define ASSERT(cond, msg) do { \
  /external/skia/src/sksl/lex/
LexUtil.h 16 #define ASSERT(x) (void)((x) || (ABORT("failed assert(%s): %s:%d\n", #x, __FILE__, __LINE__), 0))
  /external/skqp/src/sksl/lex/
LexUtil.h 16 #define ASSERT(x) (void)((x) || (ABORT("failed assert(%s): %s:%d\n", #x, __FILE__, __LINE__), 0))
  /toolchain/binutils/binutils-2.27/ld/
ldmisc.h 35 #define ASSERT(x) \
  /external/skia/tests/
GrSKSLPrettyPrintTest.cpp 13 #define ASSERT(x) REPORTER_ASSERT(r, x)
108 ASSERT(output1 == test);
120 ASSERT(GrSKSLPrettyPrint::PrettyPrint(testStr.begin(), lengths.begin(), 1,
ColorPrivTest.cpp 12 #define ASSERT(expr) REPORTER_ASSERT(r, expr)
19 ASSERT(ag == 0x00A100C3);
20 ASSERT(rb == 0x00B200D4);
21 ASSERT(SkUnsplay(ag << 8, rb << 8) == color);
24 ASSERT(agrb == 0x00A100C300B200D4ULL);
25 ASSERT(SkUnsplay(agrb<<8) == color);
31 ASSERT(SkFourByteInterp256(src, dst, scale) == SkFastFourByteInterp256(src, dst, scale));
45 ASSERT(deltaA == 0 || deltaA == 1);
46 ASSERT(deltaR == 0 || deltaR == 1);
47 ASSERT(deltaG == 0 || deltaG == 1)
    [all...]
  /external/skqp/tests/
GrSKSLPrettyPrintTest.cpp 13 #define ASSERT(x) REPORTER_ASSERT(r, x)
108 ASSERT(output1 == test);
120 ASSERT(GrSKSLPrettyPrint::PrettyPrint(testStr.begin(), lengths.begin(), 1,
ColorPrivTest.cpp 12 #define ASSERT(expr) REPORTER_ASSERT(r, expr)
19 ASSERT(ag == 0x00A100C3);
20 ASSERT(rb == 0x00B200D4);
21 ASSERT(SkUnsplay(ag << 8, rb << 8) == color);
24 ASSERT(agrb == 0x00A100C300B200D4ULL);
25 ASSERT(SkUnsplay(agrb<<8) == color);
31 ASSERT(SkFourByteInterp256(src, dst, scale) == SkFastFourByteInterp256(src, dst, scale));
45 ASSERT(deltaA == 0 || deltaA == 1);
46 ASSERT(deltaR == 0 || deltaR == 1);
47 ASSERT(deltaG == 0 || deltaG == 1)
    [all...]
  /external/swiftshader/src/Common/
Debug.hpp 22 #include <assert.h>
37 #define UNIMPLEMENTED() {trace("\t! Unimplemented: %s(%d)\n", __FUNCTION__, __LINE__); ASSERT(false);}
43 #define ASSERT(expression) {if(!(expression)) trace("\t! Assert failed in %s(%d): " #expression "\n", __FUNCTION__, __LINE__); assert(expression);}
45 #define ASSERT assert
DebugAndroid.hpp 25 // third-party code that we cannot access. Aborting (cf. assert) on
44 #define ASSERT(E) do { \
52 #undef assert macro
53 #define assert(E) ASSERT(E) macro
  /external/swiftshader/src/OpenGL/compiler/
debug.h 26 #include <assert.h>
50 #undef ASSERT
51 #define ASSERT(expression) do { \
53 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
54 assert(expression); \
60 assert(false); \
66 assert(false); \
  /device/google/contexthub/firmware/os/algos/util/
nano_assert.h 8 // full filename for OS builds, where ASSERT should only be used for local
32 #include <assert.h>
33 #define ASSERT_IMPL(x) assert(x)
37 #ifndef ASSERT
39 #define ASSERT(x) ASSERT_IMPL(x)
41 #define ASSERT(x) ((void)(x))
43 #endif // ASSERT
47 #define ASSERT_NOT_NULL(ptr) ASSERT((ptr) != nullptr)
49 #define ASSERT_NOT_NULL(ptr) ASSERT((ptr) != NULL)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
CommonLib.h 169 #define ASSERT(x) assert(x)
  /external/emma/core/java12/com/vladium/util/asserts/
$assert.java 7 * $Id: \044assert.java,v 1.1.1.1 2004/05/09 16:57:57 vlad_r Exp $
16 abstract class $assert
33 public static void ASSERT (final boolean condition, final String msg)
41 public static void ASSERT (final boolean condition)
57 private $assert () {} // prevent subclassing
  /external/swiftshader/src/OpenGL/common/
debug.h 24 #include <assert.h>
47 #define FIXME(message, ...) do {es::trace("fixme: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__); assert(false);} while(false)
54 #define ERR(message, ...) do {es::trace("err: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__); assert(false);} while(false)
58 #undef ASSERT
60 #define ASSERT(expression) do { \
62 ERR("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
63 assert(expression); \
66 #define ASSERT(expression) (void(0))
74 assert(false); \
85 assert(false);
    [all...]
  /cts/tests/tests/graphics/jni/
NativeTestHelpers.h 24 #define ASSERT(condition, format, args...) \
30 #define ASSERT_TRUE(a) ASSERT((a), "assert failed on (" #a ") at " __FILE__ ":%d", __LINE__)
31 #define ASSERT_FALSE(a) ASSERT(!(a), "assert failed on (!" #a ") at " __FILE__ ":%d", __LINE__)
33 ASSERT((a) == (b), "assert failed on (" #a " == " #b ") at " __FILE__ ":%d", __LINE__)
35 ASSERT((a) != (b), "assert failed on (" #a " != " #b ") at " __FILE__ ":%d", __LINE__)
37 ASSERT((a) > (b), "assert failed on (" #a " > " #b ") at " __FILE__ ":%d", __LINE__
    [all...]
VulkanPreTransformTestHelpers.cpp 25 #define ASSERT(a) \
30 #define VK_CALL(a) ASSERT(VK_SUCCESS == (a))
128 ASSERT(jSurface);
131 ASSERT(mWindow);
134 ASSERT(enumerateInstanceExtensions(&supportedInstanceExtensions));
138 ASSERT(hasExtension(extension, supportedInstanceExtensions));
184 ASSERT(enumerateDeviceExtensions(mGpu, &supportedDeviceExtensions));
188 ASSERT(hasExtension(extension, supportedDeviceExtensions));
194 ASSERT(queueFamilyCount);
205 ASSERT(queueFamilyIndex < queueFamilyCount)
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenConsoleSerialPortLib/
XenConsoleSerialPortLib.c 31 #define ASSERT(Expression) \
75 // No point in ASSERT'ing here as we won't be seeing the output
87 If Buffer is NULL, then ASSERT().
108 ASSERT (Buffer != NULL);
144 If Buffer is NULL, then ASSERT().
164 ASSERT (Buffer != NULL);
  /external/eigen/bench/btl/generic_bench/utils/
utilities.h 62 # ifndef ASSERT
63 # define ASSERT(condition) if (!(condition)){ HERE ; cerr << "CONDITION " << #condition << " NOT VERIFIED"<< endl ; INTERRUPTION(1) ;}
64 # endif /* ASSERT */
79 # ifndef ASSERT
80 # define ASSERT(condition)
81 # endif /* ASSERT */
  /external/swiftshader/src/D3D8/
Debug.hpp 25 #include <assert.h>
36 #define ASSERT(expression) {if(!(expression)) trace("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); assert(expression);}
38 #define ASSERT assert
42 #define UNIMPLEMENTED() {trace("\t! Unimplemented: %s(%d)\n", __FUNCTION__, __LINE__); ASSERT(false);}
  /hardware/intel/common/libva/test/basic/
test.c 27 #include "assert.h"
33 #define ASSERT assert
43 ASSERT( dpy );
47 ASSERT( va_dpy );
51 ASSERT( VA_STATUS_SUCCESS == va_status );
60 ASSERT( VA_STATUS_SUCCESS == va_status );
61 ASSERT( -1 == surfaces[20] ); /* bounds check */
75 ASSERT( VA_STATUS_SUCCESS == va_status );
82 ASSERT(profiles)
    [all...]
  /cts/suite/audio_quality/lib/include/
Log.h 64 #define ASSERT(cond) if(!(cond)) { Log::Instance()->printf(Log::ELogE, \
  /cts/tests/sensor/jni/
nativeTestHelper.h 26 #define ASSERT(condition, format, args...) \
32 // gtest style assert
33 #define ASSERT_TRUE(a) ASSERT((a), "assert failed on (" #a ") at " __FILE__ ":%d", __LINE__)
34 #define ASSERT_FALSE(a) ASSERT(!(a), "assert failed on (!" #a ") at " __FILE__ ":%d", __LINE__)
36 ASSERT((a) == (b), "assert failed on (" #a " == " #b ") at " __FILE__ ":%d", __LINE__)
38 ASSERT((a) != (b), "assert failed on (" #a " != " #b ") at " __FILE__ ":%d", __LINE__
    [all...]

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>