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

/freebsd-11.0-release/sys/kern/
H A Dsubr_mbpool.c105 #define N2C(P, PG, C) ((struct mbfree *)((char *)(PG)->va + \ macro
164 tr = C2T(p, N2C(p, pg, b));
224 f = N2C(p, pg, i);
305 cf = N2C(p, pg, b);
331 tr = C2T(p, N2C(p, pg, b));
353 cf = N2C(p, &p->pages[HPAGE(h)], HCHUNK(h));
375 cf = N2C(p, &p->pages[HPAGE(h)], HCHUNK(h));
/freebsd-11.0-release/sys/gdb/
H A Dgdb_packet.c51 #define N2C(n) (((n) < 10) ? (n) + '0' : (n) + 'a' - 10) macro
278 gdb_cur->gdb_putc(N2C(c));
280 gdb_cur->gdb_putc(N2C(c));
299 *gdb_txp++ = N2C(*addr >> 4);
300 *gdb_txp++ = N2C(*addr & 0x0f);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1938 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) {
1939 const APInt &C2 = N2C->getAPIntValue();
1959 if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2)) {
1960 APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
3432 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); local
3438 if (N1C && !N2C) {
3439 std::swap(N1C, N2C);
3470 if (N2C && N2C->isNullValue())
3472 if (N2C
[all...]
H A DDAGCombiner.cpp13978 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); local
14074 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) {
14075 unsigned ShCtV = N2C->getAPIntValue().logBase2();
14137 if (N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2() &&
14143 if (NotExtCompare && N2C->isOne())
14170 if (N2C->isOne())
14176 DAG.getConstant(N2C
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2640 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); local
2641 if (!N2C)
2644 unsigned N2CVal = N2C->getZExtValue();
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2747 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
2750 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp11908 auto *N2C = cast<ConstantSDNode>(N2);
11909 unsigned IdxVal = N2C->getZExtValue();
[all...]

Completed in 173 milliseconds