HomeSort by: relevance | last modified time | path
    Searched defs:Assert (Results 1 - 17 of 17) sorted by relevancy

  /src/external/bsd/nsd/dist/compat/
b64_ntop.c 56 #define Assert(Cond) if (!(Cond)) abort()
142 Assert(output[0] < 64);
143 Assert(output[1] < 64);
144 Assert(output[2] < 64);
145 Assert(output[3] < 64);
165 Assert(output[0] < 64);
166 Assert(output[1] < 64);
167 Assert(output[2] < 64);
b64_pton.c 56 #define Assert(Cond) if (!(Cond)) abort()
  /src/lib/libc/net/
base64.c 64 #include <assert.h>
73 #define Assert(Cond) if (!(Cond)) abort()
164 Assert(output[0] < 64);
165 Assert(output[1] < 64);
166 Assert(output[2] < 64);
167 Assert(output[3] < 64);
189 Assert(output[0] < 64);
190 Assert(output[1] < 64);
191 Assert(output[2] < 64);
  /src/external/bsd/libbind/dist/isc/
base64.c 67 #define Assert(Cond) if (!(Cond)) abort()
153 Assert(output[0] < 64);
154 Assert(output[1] < 64);
155 Assert(output[2] < 64);
156 Assert(output[3] < 64);
176 Assert(output[0] < 64);
177 Assert(output[1] < 64);
178 Assert(output[2] < 64);
  /src/external/gpl3/gcc/dist/libcody/
internal.hh 105 // Assert is variadic, so you can write Assert (TPL<A,B>(C)) without
107 #define Assert(EXPR, ...) \
113 #define Assert(EXPR, ...) \
120 #define Assert(EXPR, ...) \
123 #define Assert(EXPR, ...) \
  /src/external/gpl3/gcc.old/dist/libcody/
internal.hh 105 // Assert is variadic, so you can write Assert (TPL<A,B>(C)) without
107 #define Assert(EXPR, ...) \
113 #define Assert(EXPR, ...) \
120 #define Assert(EXPR, ...) \
123 #define Assert(EXPR, ...) \
  /src/common/dist/zlib/
zutil.h 238 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
245 # define Assert(cond,msg)
  /src/external/gpl3/binutils/dist/zlib/
zutil.h 224 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
231 # define Assert(cond,msg)
  /src/external/gpl3/binutils.old/dist/zlib/
zutil.h 223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
230 # define Assert(cond,msg)
  /src/external/gpl3/gdb.old/dist/zlib/
zutil.h 223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
230 # define Assert(cond,msg)
  /src/external/gpl3/gdb/dist/zlib/
zutil.h 224 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
231 # define Assert(cond,msg)
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ValueHandle.h 37 enum HandleBaseKind { Assert, Callback, Weak, WeakTracking };
94 assert(V && "Dereferencing deleted ValueHandle");
252 /// an AssertingVH ensures that an assert is triggered as soon as the bad
257 /// AssertingVH's as it moves. This is required because in non-assert mode this
284 AssertingVH() : ValueHandleBase(Assert) {}
285 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
286 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {}
336 assert(InnerHandle.pointsToAliveValue() &&
343 assert(isa<ValueTy>(InnerHandle) &&
437 /// a PoisoningVH ensures that an assert is triggered if looking up a new valu
    [all...]
  /src/external/cddl/osnet/dist/uts/common/zmod/
zutil.h 252 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
259 # define Assert(cond,msg)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp 172 // Assert - We know that cond should be true, if not print an error message.
173 #define Assert(C, ...) \
184 Assert(F.hasName() || F.hasLocalLinkage(),
198 Assert(I.getCallingConv() == F->getCallingConv(),
205 Assert(FT->isVarArg() ? FT->getNumParams() <= NumActualArgs
211 Assert(FT->getReturnType() == I.getType(),
224 Assert(Formal->getType() == Actual->getType(),
245 Assert(Result != AliasResult::MustAlias &&
274 Assert(!isa<AllocaInst>(Obj),
305 Assert(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) !
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 50 Assert, Bit, Bits, Class, Code, Dag, Def, Defm, Defset, Defvar, ElseKW,
117 assert((CurCode == tgtok::Id || CurCode == tgtok::StrVal ||
123 assert(CurCode == tgtok::IntVal && "This token isn't an integer");
127 assert(CurCode == tgtok::BinaryIntVal &&
292 // prepSkipRegion(). We assert this by passing ReturnNextLiveToken
  /src/sys/net/
zlib.c 256 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
263 # define Assert(cond,msg)
1164 Assert(strm->avail_out > 0, "bug2");
1383 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1394 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1397 Assert(cur_match < s->strstart, "no future");
1419 Assert(scan[2] == match[2], "scan[2]?");
1430 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1450 Assert(*scan == *match, "match[2]?");
1462 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 360 assert(F.getParent() == &M &&
580 #define Assert(C, ...) \
590 Assert(I.getOperand(i) != nullptr, "Operand is null", &I);
608 Assert(!GV.isDeclaration() || GV.hasValidDeclarationLinkage(),
612 Assert(GO->getAlignment() <= Value::MaximumAlignment,
614 Assert(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
619 Assert(GVar && GVar->getValueType()->isArrayTy(),
624 Assert(!GV.hasComdat(), "Declaration may not be in a Comdat!", &GV);
627 Assert(!GV.isDSOLocal(),
630 Assert((GV.isDeclaration() &
    [all...]

Completed in 23 milliseconds