Searched refs:Assert (Results 1 - 17 of 17) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp539 #define Assert(C, ...) \ macro
549 Assert(I.getOperand(i) != nullptr, "Operand is null", &I);
567 Assert(!GV.isDeclaration() || GV.hasValidDeclarationLinkage(),
570 Assert(GV.getAlignment() <= Value::MaximumAlignment,
572 Assert(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
577 Assert(GVar && GVar->getValueType()->isArrayTy(),
582 Assert(!GV.hasComdat(), "Declaration may not be in a Comdat!", &GV);
585 Assert(!GV.isDSOLocal(),
588 Assert((GV.isDeclaration() && GV.hasExternalLinkage()) ||
594 Assert(G
[all...]
H A DValue.cpp889 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
895 case Assert:
915 if (pImpl->ValueHandles[V]->getKind() == Assert)
941 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
947 case Assert:
/freebsd-11-stable/lib/libc/net/
H A Dbase64.c59 #define Assert(Cond) if (!(Cond)) abort() macro
145 Assert(output[0] < 64);
146 Assert(output[1] < 64);
147 Assert(output[2] < 64);
148 Assert(output[3] < 64);
168 Assert(output[0] < 64);
169 Assert(output[1] < 64);
170 Assert(output[2] < 64);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp196 // Assert - We know that cond should be true, if not print an error message.
197 #define Assert(C, ...) \ macro
219 Assert(F.hasName() || F.hasLocalLinkage(),
234 Assert(CS.getCallingConv() == F->getCallingConv(),
241 Assert(FT->isVarArg() ? FT->getNumParams() <= NumActualArgs
247 Assert(FT->getReturnType() == I.getType(),
260 Assert(Formal->getType() == Actual->getType(),
282 Assert(Result != MustAlias && Result != PartialAlias,
311 Assert(!isa<AllocaInst>(Obj),
343 Assert(A
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dtrees.c198 Assert(length > 0 && length <= 15, "invalid length");
267 Assert (length == 256, "tr_static_init: length != 256");
282 Assert (dist == 256, "tr_static_init: dist != 256");
290 Assert (dist == 256, "tr_static_init: 256+dist != 512");
335 Assert (header != NULL, "Can't open trees.h");
596 Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
779 Assert(count >= 3 && count <= 6, " 3_6?");
844 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
845 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
965 Assert(bu
[all...]
H A Ddeflate.c833 Assert(strm->avail_out > 0, "bug2");
1067 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1078 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1081 Assert(cur_match < s->strstart, "no future");
1108 Assert(scan[2] == match[2], "scan[2]?");
1119 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1139 Assert(*scan == *match, "match[2]?");
1151 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1193 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1195 Assert((ul
[all...]
H A Dzutil.h250 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
257 # define Assert(cond,msg) macro
H A Dzutil.c265 Assert(0, "zcfree: ptr not found");
/freebsd-11-stable/sys/contrib/zlib/
H A Dtrees.c192 Assert(length > 0 && length <= 15, "invalid length");
263 Assert (length == 256, "tr_static_init: length != 256");
278 Assert (dist == 256, "tr_static_init: dist != 256");
286 Assert (dist == 256, "tr_static_init: 256+dist != 512");
331 Assert (header != NULL, "Can't open trees.h");
592 Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
775 Assert(count >= 3 && count <= 6, " 3_6?");
840 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
841 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
955 Assert(bu
[all...]
H A Dzutil.h241 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
248 # define Assert(cond,msg) macro
H A Ddeflate.c1270 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1281 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1284 Assert(cur_match < s->strstart, "no future");
1311 Assert(scan[2] == match[2], "scan[2]?");
1322 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1342 Assert(*scan == *match, "match[2]?");
1354 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1397 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1399 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1401 Assert(cur_matc
[all...]
H A Dzutil.c264 Assert(0, "zcfree: ptr not found");
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm.h142 #define Assert() Fatal_(__LINE__,__FILE__,"Assert failed.") macro
143 #define WRONG {Assert(); return Exit_Mess;}
H A Dctm_input.c24 #define Assert() Fatal_(__LINE__,__FILE__,"Assert failed.") macro
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueHandle.h37 enum HandleBaseKind { Assert, Callback, Weak, WeakTracking }; enumerator in enum:llvm::ValueHandleBase::HandleBaseKind
280 AssertingVH() : ValueHandleBase(Assert) {}
281 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
282 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {}
/freebsd-11-stable/sys/sys/
H A Dzutil.h205 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
212 # define Assert(cond,msg) macro
/freebsd-11-stable/sys/libkern/
H A Dzlib.c241 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
248 # define Assert(cond,msg) macro
1103 Assert(strm->avail_out > 0, "bug2");
1314 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1325 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1328 Assert(cur_match < s->strstart, "no future");
1350 Assert(scan[2] == match[2], "scan[2]?");
1361 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1381 Assert(*scan == *match, "match[2]?");
1393 Assert(sca
[all...]

Completed in 216 milliseconds