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

/freebsd-10.0-release/contrib/ldns/compat/
H A Db64_ntop.c65 #define Assert(Cond) if (!(Cond)) abort() macro
160 Assert(output[0] < 64);
161 Assert(output[1] < 64);
162 Assert(output[2] < 64);
163 Assert(output[3] < 64);
184 Assert(output[0] < 64);
185 Assert(output[1] < 64);
186 Assert(output[2] < 64);
/freebsd-10.0-release/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.0-release/lib/libz/
H A Dtrees.c194 Assert(length > 0 && length <= 15, "invalid length");
265 Assert (length == 256, "tr_static_init: length != 256");
280 Assert (dist == 256, "tr_static_init: dist != 256");
288 Assert (dist == 256, "tr_static_init: 256+dist != 512");
333 Assert (header != NULL, "Can't open trees.h");
594 Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
777 Assert(count >= 3 && count <= 6, " 3_6?");
842 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
843 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
951 Assert(bu
[all...]
H A Ddeflate.c947 Assert(strm->avail_out > 0, "bug2");
1182 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1193 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1196 Assert(cur_match < s->strstart, "no future");
1223 Assert(scan[2] == match[2], "scan[2]?");
1234 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1254 Assert(*scan == *match, "match[2]?");
1266 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1309 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1311 Assert((ul
[all...]
H A Dzutil.h223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
230 # define Assert(cond,msg) macro
H A Dzutil.c263 Assert(0, "zcfree: ptr not found");
/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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.0-release/contrib/llvm/lib/IR/
H A DValue.cpp602 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
608 case Assert:
631 if (pImpl->ValueHandles[V]->getKind() == Assert)
656 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
662 case Assert:
H A DVerifier.cpp368 // Assert - We know that cond should be true, if not print an error message.
369 #define Assert(C, M) \ macro
/freebsd-10.0-release/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.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp7115 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, local
7117 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7132 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, local
7134 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7217 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract, local
7219 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);

Completed in 311 milliseconds