Searched defs:CN (Results 1 - 25 of 39) sorted by relevance

12

/external/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp135 const DataLayout &DL, const Constant *CN, const TargetMachine &TM) const {
139 LocalSData && IsInSmallSection(DL.getTypeAllocSize(CN->getType())));
134 IsConstantInSmallSection( const DataLayout &DL, const Constant *CN, const TargetMachine &TM) const argument
H A DMips16ISelDAGToDAG.cpp124 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
125 if (isInt<16>(CN->getSExtValue())) {
131 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
137 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, ValTy);
H A DMipsSEISelDAGToDAG.cpp300 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
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); local
750 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
773 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node); local
774 unsigned Size = CN->getValueSizeInBits(0);
780 int64_t Imm = CN
[all...]
/external/llvm/lib/Target/BPF/
H A DBPFISelDAGToDAG.cpp73 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
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/llvm/lib/Target/Lanai/
H A DLanaiISelDAGToDAG.cpp95 bool canBeRepresentedAsSls(const ConstantSDNode &CN) { argument
97 return isInt<21>(CN.getSExtValue()) && ((CN.getSExtValue() & 0x3) == 0);
105 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr)) {
108 if (canBeRepresentedAsSls(*CN)) {
109 int32_t Imm = CN->getSExtValue();
110 Offset = CurDAG->getTargetConstant(Imm, DL, CN->getValueType(0));
127 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr)) {
130 if (isInt<16>(CN->getSExtValue())) {
131 int16_t Imm = CN
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_eval.c212 #define CN(I,J,K) cn[(I)*uinc+(J)*dim+(K)] macro
218 du[k] = vs * (CN(1, 0, k) - CN(0, 0, k)) +
219 v * (CN(1, 1, k) - CN(0, 1, k));
222 dv[k] = us * (CN(0, 1, k) - CN(0, 0, k)) +
223 u * (CN(1, 1, k) - CN(1, 0, k));
226 out[k] = us * (vs * CN(
445 #undef CN macro
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelDAGToDAG.cpp106 ConstantSDNode *CN = 0; local
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStyle.java42 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3").intern(); field in class:BCStyle
197 DefaultSymbols.put(CN, "CN");
230 DefaultLookUp.put("cn", CN);
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java39 static final String CN = "CN"; field in class:RegionCode
/external/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp96 ConstantSDNode *CN = nullptr; local
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/Mips/
H A DMipsISelDAGToDAG.cpp144 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
145 if (isInt<16>(CN->getSExtValue())) {
154 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
302 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node); local
303 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
H A DMipsISelLowering.cpp559 ConstantSDNode *CN; local
560 if (!(CN = dyn_cast<ConstantSDNode>(ShiftRight.getOperand(1))))
563 Pos = CN->getZExtValue();
567 if (!(CN = dyn_cast<ConstantSDNode>(Mask)) ||
568 !IsShiftedMask(CN->getZExtValue(), SMPos, SMSize))
594 ConstantSDNode *CN; local
600 if (!(CN = dyn_cast<ConstantSDNode>(And0.getOperand(1))) ||
601 !IsShiftedMask(~CN->getSExtValue(), SMPos0, SMSize0))
608 if (!(CN = dyn_cast<ConstantSDNode>(And1.getOperand(1))) ||
609 !IsShiftedMask(CN
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXISelDAGToDAG.cpp228 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
229 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
325 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
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/
H A DXCoreISelDAGToDAG.cpp99 ConstantSDNode *CN = 0; local
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; local
122 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
123 && (CN->getSExtValue() % 4 == 0)) {
126 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
141 ConstantSDNode *CN local
[all...]
H A DXCoreISelLowering.cpp361 ConstantSDNode *CN = 0; local
362 if (!(CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
365 int64_t off = CN->getSExtValue();
370 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Base.getOperand(1) local
372 if (CN && (CN->getSExtValue() >= 2)) {
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaISelDAGToDAG.cpp285 ConstantFPSDNode *CN = cast<ConstantFPSDNode>(N); local
288 if (CN->getValueAPF().isPosZero()) {
292 } else if (CN->getValueAPF().isNegZero()) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Name.java69 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3"); field in class:X509Name
269 DefaultSymbols.put(CN, "CN");
301 RFC2253Symbols.put(CN, "CN");
311 RFC1779Symbols.put(CN, "CN");
320 DefaultLookUp.put("cn", CN);
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUISelDAGToDAG.cpp43 isI32IntS10Immediate(ConstantSDNode *CN) argument
45 return isInt<10>(CN->getSExtValue());
50 isI32IntU10Immediate(ConstantSDNode *CN) argument
52 return isUInt<10>(CN->getSExtValue());
57 isI16IntS10Immediate(ConstantSDNode *CN) argument
59 return isInt<10>(CN->getSExtValue());
64 isI16IntU10Immediate(ConstantSDNode *CN) argument
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 t
79 isIntS16Immediate(ConstantSDNode *CN, short &Imm) argument
431 ConstantSDNode *CN = cast<ConstantSDNode>(Op1); local
452 ConstantSDNode *CN = cast<ConstantSDNode>(Op0); local
488 ConstantSDNode *CN = cast<ConstantSDNode>(Op1); local
492 ConstantSDNode *CN = cast<ConstantSDNode>(Op0); local
760 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1)); local
874 ConstantSDNode *CN = cast<ConstantSDNode>(Op1); local
1124 ConstantSDNode *CN = cast<ConstantSDNode>(N); local
[all...]
H A DSPUISelLowering.cpp580 ConstantSDNode *CN; local
585 && (CN = dyn_cast<ConstantSDNode > (basePtr.getOperand(1))) != 0) {
587 int64_t offset = CN->getSExtValue();
788 ConstantSDNode *CN; local
792 && (CN = dyn_cast<ConstantSDNode>(basePtr.getOperand(1))) != 0) {
794 int64_t offset = CN->getSExtValue();
1509 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1510 return CN;
1522 if (ConstantSDNode *CN = getVecImm(N)) {
1523 uint64_t Value = CN
1952 ConstantSDNode *CN = cast<ConstantSDNode>(Op0.getNode()); local
2167 ConstantSDNode *CN = cast<ConstantSDNode>(IdxOp); local
2989 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)); local
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp772 GepNode *CN = *I; local
773 NodeToValueMap::iterator LF = Loc.find(CN);
1217 GepNode *CN = *I; local
1218 CN->Flags &= ~GepNode::Internal;
1219 CN->Flags |= GepNode::Root;
1220 CN->BaseVal = NewInst;
1221 Roots.push_back(CN);
H A DHexagonISelDAGToDAG.cpp747 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val.getNode()))
748 if (isInt<9>(CN->getSExtValue())) {
775 if (ConstantSDNode *CN =
777 if (isInt<9>(CN->getSExtValue())) {
922 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N); local
923 const APFloat &APF = CN->getValueAPF();
1350 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(C.getNode()); local
1351 if (CN == nullptr)
1353 unsigned CV = CN->getZExtValue();
H A DHexagonISelLowering.cpp3008 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); local
3009 if (CN && CN->getSExtValue() > 0 && isInt<16>(CN->getSExtValue()))
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp789 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
790 unsigned Val = CN->getZExtValue();
829 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
830 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
831 CN->getZExtValue() == 9) {
832 AM.Scale = unsigned(CN->getZExtValue())-1;
845 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
970 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1)); local
974 !FoldOffsetIntoAddress(CN
1364 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val); local
1592 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val); local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp130 const ConstantSDNode *CN = cast<ConstantSDNode>(N); local
131 Pred = CurDAG->getTargetConstant(CN->getZExtValue(), SDLoc(N), MVT::i32);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1211 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); local
1212 if (!CN) {
1218 CN = BV->getConstantSplatNode(&UndefElements);
1221 if (!CN || UndefElements.none())
1227 return CN->getAPIntValue()[0];
1229 return CN->isOne();
1231 return CN->isAllOnesValue();
1241 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); local
1242 if (!CN) {
1248 CN
[all...]

Completed in 1010 milliseconds

12