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

/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_eval.c221 #define CN(I,J,K) cn[(I)*uinc+(J)*dim+(K)] macro
227 du[k] = vs * (CN(1, 0, k) - CN(0, 0, k)) +
228 v * (CN(1, 1, k) - CN(0, 1, k));
231 dv[k] = us * (CN(0, 1, k) - CN(0, 0, k)) +
232 u * (CN(1, 1, k) - CN(1, 0, k));
235 out[k] = us * (vs * CN(
454 #undef CN macro
[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/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java39 static final String CN = "CN"; field in class:RegionCode
/external/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp188 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
189 if (isInt<16>(CN->getSExtValue())) {
200 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
H A DMipsSEISelDAGToDAG.cpp270 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); local
271 if (isIntN(OffsetBits, CN->getSExtValue())) {
281 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
659 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node); local
660 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
683 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node); local
684 unsigned Size = CN->getValueSizeInBits(0);
690 int64_t Imm = CN->getSExtValue();
696 SDLoc DL(CN);
H A DMipsISelLowering.cpp634 ConstantSDNode *CN;
635 if (!(CN = dyn_cast<ConstantSDNode>(ShiftRight.getOperand(1))))
638 uint64_t Pos = CN->getZExtValue();
642 if (!(CN = dyn_cast<ConstantSDNode>(Mask)) ||
643 !isShiftedMask(CN->getZExtValue(), SMPos, SMSize))
669 ConstantSDNode *CN; local
675 if (!(CN = dyn_cast<ConstantSDNode>(And0.getOperand(1))) ||
676 !isShiftedMask(~CN->getSExtValue(), SMPos0, SMSize0))
683 if (!(CN = dyn_cast<ConstantSDNode>(And1.getOperand(1))) ||
684 !isShiftedMask(CN
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp99 ConstantSDNode *CN = nullptr; 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);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStyle.java46 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3"); field in class:BCStyle
210 DefaultSymbols.put(CN, "CN");
243 DefaultLookUp.put("cn", CN);
/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/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1112 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val.getNode()))
1113 if (isInt<9>(CN->getSExtValue())) {
1139 if (ConstantSDNode *CN =
1141 if (isInt<9>(CN->getSExtValue())) {
1266 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N); local
1267 APFloat APF = CN->getValueAPF();
1551 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
1552 if (isInt<13>(CN->getSExtValue()))
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java261 CN(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1153 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); local
1154 if (!CN) {
1160 CN = BV->getConstantSplatNode(&UndefElements);
1163 if (!CN || UndefElements.none())
1169 return CN->getAPIntValue()[0];
1171 return CN->isOne();
1173 return CN->isAllOnesValue();
1183 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); local
1184 if (!CN) {
1190 CN
[all...]
H A DDAGCombiner.cpp654 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
655 return CN;
659 ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements); local
664 if (CN && UndefElements.none() &&
665 CN->getValueType(0) == N.getValueType().getScalarType())
666 return CN;
4175 // Get the two constanst of the shifts, CN0 = m, CN = n.
7769 ConstantSDNode *CN = local
7772 APInt Offset0 = CN->getAPIntValue();
7788 SDValue NewOp1 = DAG.getConstant(CNV, CN
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp136 const ConstantSDNode *CN = cast<ConstantSDNode>(N); local
137 Pred = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
H A DARMISelLowering.cpp10223 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1)); local
10224 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1033 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
1034 unsigned Val = CN->getZExtValue();
1100 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
1101 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1102 CN->getZExtValue() == 9) {
1103 AM.Scale = unsigned(CN->getZExtValue())-1;
1116 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1233 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1)); local
1237 !FoldOffsetIntoAddress(CN
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp583 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1)); local
584 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 543 milliseconds