代码搜索:assertion

找到约 1,246 项符合「assertion」的源代码

代码结果 1,246
www.eeworm.com/read/378992/2677731

s fpu-28-108.s

/* Test 28 and 108 byte loads and stores. (Just make sure program runs without any assertion failures from V.) */ /* Useful listing: gcc -o tests/fpu_28_108 tests/fpu_28_108.S -Wa,-a */ .data
www.eeworm.com/read/375613/2724005

h assert.h

/* assert.h Copyright 1995 Philip Homburg */ #ifndef INET_ASSERT_H #define INET_ASSERT_H #if !NDEBUG void bad_assertion(char *file, int line, char *what) _NORETURN; void bad_compare(char *file, int
www.eeworm.com/read/365785/2895355

h assert.h

/* assert.h Copyright 1995 Philip Homburg */ #ifndef INET_ASSERT_H #define INET_ASSERT_H #if !NDEBUG void bad_assertion(char *file, int line, char *what) _NORETURN; void bad_compare(char *file, int
www.eeworm.com/read/362762/2927331

h assert.h

/* assert.h Copyright 1995 Philip Homburg */ #ifndef INET_ASSERT_H #define INET_ASSERT_H #if !NDEBUG void bad_assertion(char *file, int line, char *what) _NORETURN; void bad_compare(char *file, int
www.eeworm.com/read/254664/4381346

c assert.c

#include #include void _assert(char *s, char *f, int l) { #if !defined(_M8C) printf("assertion error: \"%s\" on file %s line %d\n", s, f, l); #endif exit(1); }
www.eeworm.com/read/288910/8594690

c main3.c

// #include #include #include "Array.Cpp" #include "ArrayRC.Cpp" // 演示范围检查数组模板,系统提出断言错误 /** ** swap() with Array ia1 swap() with ArrayRC ia2 Assertion
www.eeworm.com/read/209211/4984744

c _assert.c

#include #include #include void _assert(char *f, unsigned line) { char buf[20], *p, *s = &buf[20]; write(2, "assertion failed: file ", 23); for(p = f; *p; p++) con
www.eeworm.com/read/313796/3641331

java uispecassert.java

package org.uispec4j.assertion; import junit.framework.AssertionFailedError; import junit.framework.TestCase; import org.uispec4j.UISpec4J; import org.uispec4j.UISpecTestCase; import org.uispec
www.eeworm.com/read/395929/2427311

c assert.c

#include #include static char rcsid[] = "$Id: assert.c,v 1.1 1995/07/25 20:34:24 cwf Exp $"; int _assert(char *e, char *file, int line) { fprintf(stderr, "assertion failed:");