Searched refs:ADDC (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiAluCode.h24 ADDC = 0x01, enumerator in enum:llvm::LPAC::AluCode
80 case ADDC:
106 .Case("addc", ADDC)
123 return AluCode::ADDC;
/freebsd-11-stable/lib/libnetbsd/
H A Dsockaddr_snprintf.c130 #define ADDC(c) do { if (buf < ebuf) *buf++ = c; else buf++; } \ macro
132 #define ADDS(p) do { for (s = p; *s; s++) ADDC(*s); } \
193 ADDC(*ptr);
299 ADDC('%');
301 ADDC('?');
306 ADDC(*ptr);
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dkrb4encpwd.c347 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
371 ADDC(buf, buflen, '"');
373 ADDC(buf, buflen, data[i]);
374 ADDC(buf, buflen, '"');
375 ADDC(buf, buflen, '\0');
H A Dkerberos.c413 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
435 ADDC(buf, buflen, '"');
437 ADDC(buf, buflen, data[i]);
438 ADDC(buf, buflen, '"');
439 ADDC(buf, buflen, '\0');
H A Drsaencpwd.c398 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
422 ADDC(buf, buflen, '"');
424 ADDC(buf, buflen, data[i]);
425 ADDC(buf, buflen, '"');
426 ADDC(buf, buflen, '\0');
H A Dsra.c355 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
383 ADDC(buf, buflen, '"');
385 ADDC(buf, buflen, data[i]);
386 ADDC(buf, buflen, '"');
387 ADDC(buf, buflen, '\0');
H A Dkerberos5.c678 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
699 ADDC(buf, buflen, '"');
701 ADDC(buf, buflen, data[i]);
702 ADDC(buf, buflen, '"');
703 ADDC(buf, buflen, '\0');
/freebsd-11-stable/contrib/blacklist/port/
H A Dsockaddr_snprintf.c185 #define ADDC(c) do { if (buf < ebuf) *buf++ = c; else buf++; } \ macro
187 #define ADDS(p) do { for (s = p; *s; s++) ADDC(*s); } \
243 ADDC(*ptr);
365 ADDC('%');
367 ADDC('?');
372 ADDC(*ptr);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/net/
H A Dh_dns_server.c152 #define ADDC(c) do { \ macro
161 ADDC('\0');
165 ADDC('.');
167 ADDC(a[i]);
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Drsaencpwd.c403 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
425 ADDC(buf, buflen, '"');
427 ADDC(buf, buflen, data[i]);
428 ADDC(buf, buflen, '"');
429 ADDC(buf, buflen, '\0');
H A Dspx.c530 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
552 ADDC(buf, buflen, '"');
554 ADDC(buf, buflen, data[i]);
555 ADDC(buf, buflen, '"');
556 ADDC(buf, buflen, '\0');
H A Dkerberos5.c723 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);} macro
745 ADDC(buf, buflen, '"');
747 ADDC(buf, buflen, data[i]);
748 ADDC(buf, buflen, '"');
749 ADDC(buf, buflen, '\0');
/freebsd-11-stable/lib/libedit/
H A Dkeymacro.c632 #define ADDC(c) \ macro
648 ADDC(sep[0]);
651 ADDC('^');
652 ADDC('@');
669 ADDC(sep[1]);
671 ADDC('\0');
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h214 /// like ADDC/SUBC, which indicate the carry result is always false.
224 ADDC, SUBC, enumerator in enum:llvm::ISD::NodeType
H A DTargetLowering.h2255 case ISD::ADDC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.h38 ADDC, // Add with carry: (X, Y, Cin) -> (X+Y, Cout).
H A DHexagonISelDAGToDAG.cpp763 unsigned OpcCarry = N->getOpcode() == HexagonISD::ADDC ? Hexagon::A4_addp_c
890 case HexagonISD::ADDC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h104 ADDC, // Add with carry
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp289 case ISD::ADDC: return "addc";
H A DLegalizeIntegerTypes.cpp1898 case ISD::ADDC:
2293 // Do not generate ADDC/ADDE or SUBC/SUBE if the target does not support
2295 // ADDC/ADDE/SUBC/SUBE. The problem is that these operations generate
2300 ISD::ADDC : ISD::SUBC,
2306 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps);
2402 if (N->getOpcode() == ISD::ADDC) {
2403 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.cpp214 if (Opc == ISD::ADDC) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1548 setOperationAction(ISD::ADDC, MVT::i32, Custom);
1554 setOperationAction(ISD::ADDC, MVT::i64, Custom);
2904 case ISD::ADDC: hiOpc = ISD::ADDE; break;
3052 case ISD::ADDC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp757 case ISD::ADDC:
1005 ConsumeCarry || Opcode == ISD::ADDC || Opcode == ISD::SUBC;
1006 bool IsAdd = Opcode == ISD::ADD || Opcode == ISD::ADDC || Opcode == ISD::ADDE;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp68 setOperationAction(ISD::ADDC, VT, Legal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp677 // ADDC/ADDE/SUBC/SUBE default to expand.
678 setOperationAction(ISD::ADDC, VT, Expand);

Completed in 413 milliseconds

12