got 236 lib/torture/torture.h #define torture_assert_werr_equal(torture_ctx, got, expected, cmt) \
got 237 lib/torture/torture.h do { WERROR __got = got, __expected = expected; \
got 239 lib/torture/torture.h torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", win_errstr(__got), win_errstr(__expected), cmt); \
got 244 lib/torture/torture.h #define torture_assert_ntstatus_equal(torture_ctx,got,expected,cmt) \
got 245 lib/torture/torture.h do { NTSTATUS __got = got, __expected = expected; \
got 247 lib/torture/torture.h torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", nt_errstr(__got), nt_errstr(__expected), cmt); \
got 252 lib/torture/torture.h #define torture_assert_ndr_err_equal(torture_ctx,got,expected,cmt) \
got 253 lib/torture/torture.h do { enum ndr_err_code __got = got, __expected = expected; \
got 255 lib/torture/torture.h torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %d, expected %d (%s): %s", __got, __expected, __STRING(expected), cmt); \
got 260 lib/torture/torture.h #define torture_assert_casestr_equal(torture_ctx,got,expected,cmt) \
got 261 lib/torture/torture.h do { const char *__got = (got), *__expected = (expected); \
got 263 lib/torture/torture.h torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", __got, __expected, cmt); \
got 268 lib/torture/torture.h #define torture_assert_str_equal(torture_ctx,got,expected,cmt)\
got 269 lib/torture/torture.h do { const char *__got = (got), *__expected = (expected); \
got 272 lib/torture/torture.h __location__": "#got" was %s, expected %s: %s", \
got 278 lib/torture/torture.h #define torture_assert_mem_equal(torture_ctx,got,expected,len,cmt)\
got 279 lib/torture/torture.h do { const void *__got = (got), *__expected = (expected); \
got 282 lib/torture/torture.h __location__": "#got" of len %d did not match"#expected": %s", (int)len, cmt); \
got 287 lib/torture/torture.h #define torture_assert_data_blob_equal(torture_ctx,got,expected,cmt)\
got 288 lib/torture/torture.h do { const DATA_BLOB __got = (got), __expected = (expected); \
got 291 lib/torture/torture.h __location__": "#got".len %d did not match "#expected" len %d: %s", \
got 297 lib/torture/torture.h __location__": "#got" of len %d did not match"#expected": %s", (int)__got.length, cmt); \
got 339 lib/torture/torture.h #define torture_assert_int_equal(torture_ctx,got,expected,cmt)\
got 340 lib/torture/torture.h do { int __got = (got), __expected = (expected); \
got 343 lib/torture/torture.h __location__": "#got" was %d, expected %d: %s", \
got 349 lib/torture/torture.h #define torture_assert_u64_equal(torture_ctx,got,expected,cmt)\
got 350 lib/torture/torture.h do { uint64_t __got = (got), __expected = (expected); \
got 353 lib/torture/torture.h __location__": "#got" was %llu, expected %llu: %s", \
got 1244 lib/zlib/inflate.c unsigned got;
got 1247 lib/zlib/inflate.c got = *have;
got 1249 lib/zlib/inflate.c while (next < len && got < 4) {
got 1250 lib/zlib/inflate.c if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
got 1251 lib/zlib/inflate.c got++;
got 1253 lib/zlib/inflate.c got = 0;
got 1255 lib/zlib/inflate.c got = 4 - got;
got 1258 lib/zlib/inflate.c *have = got;