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

1 2

  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 100 ConstantSDNode *CN = 0;
102 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
103 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
106 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
121 ConstantSDNode *CN = 0;
123 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
124 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
127 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32)
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 33 static final String CN = "CN";
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 42 isI32IntS10Immediate(ConstantSDNode *CN)
44 return isInt<10>(CN->getSExtValue());
49 isI32IntU10Immediate(ConstantSDNode *CN)
51 return isUInt<10>(CN->getSExtValue());
56 isI16IntS10Immediate(ConstantSDNode *CN)
58 return isInt<10>(CN->getSExtValue());
63 isI16IntU10Immediate(ConstantSDNode *CN)
65 return isUInt<10>((short) CN->getZExtValue());
70 \arg CN The constant SelectionDAG node holding the value
73 This predicate tests the value in \a CN to see whether it can b
    [all...]
SPUISelLowering.cpp 591 ConstantSDNode *CN;
596 && (CN = dyn_cast<ConstantSDNode > (basePtr.getOperand(1))) != 0) {
598 int64_t offset = CN->getSExtValue();
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 85 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
86 if (isInt<13>(CN->getSExtValue())) {
94 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
121 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
122 if (isInt<13>(CN->getSExtValue()))
  /frameworks/base/core/java/android/content/
ComponentName.java 104 int CN = mClass.length();
105 if (CN > PN && mClass.charAt(PN) == '.') {
106 return mClass.substring(PN, CN);
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 164 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
166 uint32_t Imm = CN->getZExtValue();
167 Disp = CurDAG->getTargetConstant(Imm, CN->getValueType(0));
168 Base = CurDAG->getRegister(MBlaze::R0, CN->getValueType(0));
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 315 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
316 if (isInt<16>(CN->getSExtValue())) {
325 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
486 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
487 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
503 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
504 unsigned Size = CN->getValueSizeInBits(0);
510 int64_t Imm = CN->getSExtValue();
516 DebugLoc DL = CN->getDebugLoc();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 160 EUC-CN EUC-CN 0x007F
161 EUC_CN EUC-CN 0x007F
177 # GB2312 and CNS11643 in ISO 2022 CN form, Simplified and Traditional Chinese (conversion to Unicode only)
178 ISO2022CN ISO-2022-CN
  /external/icu4c/data/mappings/
ucmcore.mk 13 # EUC-CN, GBK (Windows cp936), GB 18030
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/dialogs/
CertificateInfoDialog.java 88 x500name.getRDNs(BCStyle.CN).length >= 1 ? x500name.getRDNs(BCStyle.CN)[0]
  /external/webkit/LayoutTests/http/conf/
fedora-httpd.conf 588 # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
614 AddLanguage zh-CN .zh-cn
633 LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 47 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3");
211 DefaultSymbols.put(CN, "CN");
244 DefaultLookUp.put("cn", CN);
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 225 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
227 uint64_t Offset = CN->getSExtValue();
233 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 67 private static final ObjectIdentifier CN
68 = new ObjectIdentifier(new int[] { 2, 5, 4, 3 }, "CN", RFC1779_NAMES);
143 RFC1779_NAMES.put(CN.getName(), CN);
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 189 explicit iterator(PointerRec *CN = 0) : CurNode(CN) {}
  /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/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp     [all...]
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/model/
EntryNode.java 108 x500name.getRDNs(BCStyle.CN).length >= 1 ? x500name.getRDNs(BCStyle.CN)[0]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 553 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
556 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), mvt);
593 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
600 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), mvt);
678 ConstantSDNode *cn = cast<ConstantSDNode>(N.getNode()); local
679 unsigned retval = cn->getZExtValue();
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/chromium/net/base/
x509_cert_types_mac.cc 151 // We don't expect to have more than one CN, L, S, and C.
  /frameworks/base/core/java/android/net/http/
SslCertificate.java 337 * - common name (CN),
343 * Distinguished name (normally includes CN, O, and OU names)
348 * Common-name (CN) component of the name
376 if (oid.elementAt(i).equals(X509Name.CN)) {
398 * @return The distinguished name (normally includes CN, O, and OU names)
405 * @return The Common-name (CN) component of this name

Completed in 634 milliseconds

1 2