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

/freebsd-10-stable/lib/libc/net/
H A Dbase64.c60 #define Assert(Cond) if (!(Cond)) abort() macro
146 Assert(output[0] < 64);
147 Assert(output[1] < 64);
148 Assert(output[2] < 64);
149 Assert(output[3] < 64);
169 Assert(output[0] < 64);
170 Assert(output[1] < 64);
171 Assert(output[2] < 64);
/freebsd-10-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-10-stable/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-10-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-10-stable/contrib/llvm/include/llvm/Support/
H A DValueHandle.h48 Assert, enumerator in enum:llvm::ValueHandleBase::HandleBaseKind
213 AssertingVH() : ValueHandleBase(Assert) {}
214 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
215 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {}
/freebsd-10-stable/sys/net/
H A Dzutil.h205 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
212 # define Assert(cond,msg) macro
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...]
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DValue.cpp638 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
644 case Assert:
667 if (pImpl->ValueHandles[V]->getKind() == Assert)
692 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
698 case Assert:
H A DVerifier.cpp402 // Assert - We know that cond should be true, if not print an error message.
403 #define Assert(C, M) \ macro
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DLint.cpp161 // Assert - We know that cond should be true, if not print an error message.
162 #define Assert(C, M) \ macro
/freebsd-10-stable/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp7592 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, local
7594 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7609 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, local
7611 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7713 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract, local
7715 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);

Completed in 387 milliseconds