Searched refs:N2C (Results 1 - 7 of 7) sorted by relevance

/freebsd-9.3-release/sys/kern/
H A Dsubr_mbpool.c104 #define N2C(P, PG, C) ((struct mbfree *)((char *)(PG)->va + \ macro
163 tr = C2T(p, N2C(p, pg, b));
226 f = N2C(p, pg, i);
306 cf = N2C(p, pg, b);
332 tr = C2T(p, N2C(p, pg, b));
354 cf = N2C(p, &p->pages[HPAGE(h)], HCHUNK(h));
376 cf = N2C(p, &p->pages[HPAGE(h)], HCHUNK(h));
/freebsd-9.3-release/sys/gdb/
H A Dgdb_packet.c50 #define N2C(n) (((n) < 10) ? (n) + '0' : (n) + 'a' - 10) macro
277 gdb_cur->gdb_putc(N2C(c));
279 gdb_cur->gdb_putc(N2C(c));
298 *gdb_txp++ = N2C(*addr >> 4);
299 *gdb_txp++ = N2C(*addr & 0x0f);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1654 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
1655 const APInt &C2 = N2C->getAPIntValue();
1675 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
1676 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
2881 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); local
2914 if (N2C && N2C->isNullValue())
2916 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
2928 if (N2C
[all...]
H A DDAGCombiner.cpp4195 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); local
4217 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
4236 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
4242 if (VT == MVT::i1 && N2C && N2C->isNullValue())
4250 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
10451 ConstantSDNode *N2C local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1190 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1193 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2616 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); local
2617 if (!N2C)
2620 unsigned N2CVal = N2C->getZExtValue();
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp10256 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2); local
10257 if (N2C == 0 || !N2C->isNullValue())

Completed in 359 milliseconds