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

/freebsd-11-stable/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-stable/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-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2052 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) {
2053 const APInt &C2 = N2C->getAPIntValue();
5128 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
5134 if (N1C && !N2C) {
5135 std::swap(N1C, N2C);
5172 if (N2C && N2C->isNullValue())
5174 if (N2C && N2C->isAllOnesValue()) // X & -1 -> X
5186 if (N2C
[all...]
H A DDAGCombiner.cpp20266 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); local
20267 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) {
20268 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1;
20374 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); local
20427 bool Fold = N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2();
20437 std::swap(N2C, N3C);
20442 if (NotExtCompare && N2C
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3361 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); local
3362 if (!N2C)
3365 unsigned N2CVal = N2C->getZExtValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp4901 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
4904 N2C->getZExtValue() == 1ULL && CC == ISD::SETNE &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp17811 auto *N2C = dyn_cast<ConstantSDNode>(N2);
17812 if (!N2C || N2C->getAPIntValue().uge(NumElts))
17814 uint64_t IdxVal = N2C->getZExtValue();
[all...]

Completed in 400 milliseconds