HomeSort by relevance Sort by last modified time
    Searched defs:CN (Results 1 - 25 of 47) sorted by null

1 2

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
ARCISelDAGToDAG.cpp 53 const ConstantSDNode *CN = cast<ConstantSDNode>(N);
54 Pred = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(N), MVT::i32);
156 ConstantSDNode *CN = nullptr;
158 (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) &&
159 (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
163 CurDAG->getTargetConstant(CN->getSExtValue(), SDLoc(Addr), MVT::i32);
  /external/llvm/lib/Target/BPF/
BPFISelDAGToDAG.cpp 73 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
74 if (isInt<32>(CN->getSExtValue())) {
83 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
101 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
102 if (isInt<32>(CN->getSExtValue())) {
111 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
  /external/mesa3d/src/mesa/math/
m_eval.c 114 * control net cn.
118 _math_horner_bezier_surf(GLfloat * cn, GLfloat * out, GLfloat u, GLfloat v,
121 GLfloat *cp = cn + uorder * vorder * dim;
131 GLfloat *ucp = &cn[j * dim];
155 else /* uorder=1 -> cn defines a curve in v */
156 _math_horner_bezier_curve(cn, out, v, dim, vorder);
164 for (i = 0; i < uorder; i++, cn += uinc) {
165 /* For constant i all cn[i][j] (j=0..vorder) are located */
169 _math_horner_bezier_curve(cn, &cp[i * dim], v, dim, vorder);
175 else /* vorder=1 -> cn defines a curve in u *
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 106 ConstantSDNode *CN = 0;
108 (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) &&
109 (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
112 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 96 ConstantSDNode *CN = nullptr;
98 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
99 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
102 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), SDLoc(Addr),
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXISelDAGToDAG.cpp 228 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
229 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
325 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
326 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
346 ConstantSDNode *CN = cast<ConstantSDNode>(node);
347 imm = CurDAG->getTargetConstant(*CN->getConstantIntValue(),
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 99 ConstantSDNode *CN = 0;
101 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
102 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
105 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
120 ConstantSDNode *CN = 0;
122 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
123 && (CN->getSExtValue() % 4 == 0)) {
126 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
141 ConstantSDNode *CN = 0
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 125 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
126 if (isInt<16>(CN->getSExtValue())) {
132 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
138 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
MipsSEISelDAGToDAG.cpp 338 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
339 if (isIntN(OffsetBits + ShiftAmount, CN->getSExtValue())) {
350 if (OffsetToAlignment(CN->getZExtValue(), 1ull << ShiftAmount) != 0)
354 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(Addr),
497 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Offset)) {
498 unsigned CnstOff = CN->getZExtValue();
804 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
805 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
828 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
829 int64_t Imm = CN->getSExtValue()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 96 ConstantSDNode *CN = nullptr;
98 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
99 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
102 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), SDLoc(Addr),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 42 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3").intern();
203 DefaultSymbols.put(CN, "CN");
237 DefaultLookUp.put("cn", CN);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/
BCStyle.java 51 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3").intern();
215 DefaultSymbols.put(CN, "CN");
249 DefaultLookUp.put("cn", CN);
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 39 static final String CN = "CN";
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 124 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
125 if (isInt<16>(CN->getSExtValue())) {
131 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
137 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
MipsSEISelDAGToDAG.cpp 300 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
301 if (isIntN(OffsetBits, CN->getSExtValue())) {
311 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(Addr),
465 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Offset)) {
466 unsigned CnstOff = CN->getZExtValue();
749 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
750 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
773 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
774 unsigned Size = CN->getValueSizeInBits(0);
780 int64_t Imm = CN->getSExtValue()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelDAGToDAG.cpp 144 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
145 if (isInt<16>(CN->getSExtValue())) {
154 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
302 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
303 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
  /external/u-boot/include/
i8042.h 55 #define CN 2 /* control index */
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 285 ConstantFPSDNode *CN = cast<ConstantFPSDNode>(N);
288 if (CN->getValueAPF().isPosZero()) {
292 } else if (CN->getValueAPF().isNegZero()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
LazyCallGraphTest.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
BPFISelDAGToDAG.cpp 123 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
124 if (isInt<16>(CN->getSExtValue())) {
133 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
152 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
153 if (isInt<16>(CN->getSExtValue())) {
161 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), DL, MVT::i64);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 69 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3");
269 DefaultSymbols.put(CN, "CN");
301 RFC2253Symbols.put(CN, "CN");
311 RFC1779Symbols.put(CN, "CN");
320 DefaultLookUp.put("cn", CN);
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
X509Name.java 76 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3");
277 DefaultSymbols.put(CN, "CN");
309 RFC2253Symbols.put(CN, "CN");
319 RFC1779Symbols.put(CN, "CN");
328 DefaultLookUp.put("cn", CN);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 43 isI32IntS10Immediate(ConstantSDNode *CN)
45 return isInt<10>(CN->getSExtValue());
50 isI32IntU10Immediate(ConstantSDNode *CN)
52 return isUInt<10>(CN->getSExtValue());
57 isI16IntS10Immediate(ConstantSDNode *CN)
59 return isInt<10>(CN->getSExtValue());
64 isI16IntU10Immediate(ConstantSDNode *CN)
66 return isUInt<10>((short) CN->getZExtValue());
71 \arg CN The constant SelectionDAG node holding the value
74 This predicate tests the value in \a CN to see whether it can b
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 772 GepNode *CN = *I;
773 NodeToValueMap::iterator LF = Loc.find(CN);
    [all...]
HexagonISelDAGToDAG.cpp 747 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val.getNode()))
748 if (isInt<9>(CN->getSExtValue())) {
775 if (ConstantSDNode *CN =
777 if (isInt<9>(CN->getSExtValue())) {
    [all...]

Completed in 2334 milliseconds

1 2