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

  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_eval.c 123 * control net cn.
127 _math_horner_bezier_surf(GLfloat * cn, GLfloat * out, GLfloat u, GLfloat v,
130 GLfloat *cp = cn + uorder * vorder * dim;
140 GLfloat *ucp = &cn[j * dim];
164 else /* uorder=1 -> cn defines a curve in v */
165 _math_horner_bezier_curve(cn, out, v, dim, vorder);
173 for (i = 0; i < uorder; i++, cn += uinc) {
174 /* For constant i all cn[i][j] (j=0..vorder) are located */
178 _math_horner_bezier_curve(cn, &cp[i * dim], v, dim, vorder);
184 else /* vorder=1 -> cn defines a curve in u *
    [all...]
  /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/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 36 static final String CN = "CN";
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 96 ConstantSDNode *CN = 0;
98 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
99 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
102 Offset = CurDAG->getTargetConstant(CN->getSExtValue(), MVT::i32);
  /frameworks/base/core/java/android/content/
ComponentName.java 106 int CN = mClass.length();
107 if (CN > PN && mClass.charAt(PN) == '.') {
108 return mClass.substring(PN, CN);
118 int CN = className.length();
119 if (CN > PN && className.charAt(PN) == '.') {
120 sb.append(className, PN, CN);
131 int CN = className.length();
132 if (CN > PN && className.charAt(PN) == '.') {
133 pw.write(className, PN, CN-PN);
  /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/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 57 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
58 if (!CN || CN->getZExtValue() % MemSize != 0
59 || CN->getZExtValue() / MemSize > 0xfff)
62 UImm12 = CurDAG->getTargetConstant(CN->getZExtValue() / MemSize, MVT::i64);
118 const ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
119 if (!CN) return false;
133 CN->getValueAPF().convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact);
181 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
182 if (!CN) return false
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 186 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
187 if (isInt<16>(CN->getSExtValue())) {
198 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
MipsSEISelDAGToDAG.cpp 264 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
265 if (isInt<16>(CN->getSExtValue())) {
274 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
345 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
346 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
364 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
365 unsigned Size = CN->getValueSizeInBits(0);
371 int64_t Imm = CN->getSExtValue();
377 SDLoc DL(CN);
MipsISelLowering.cpp 548 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(False);
550 if (!CN || CN->getZExtValue())
580 ConstantSDNode *CN;
581 if (!(CN = dyn_cast<ConstantSDNode>(ShiftRight.getOperand(1))))
584 uint64_t Pos = CN->getZExtValue();
588 if (!(CN = dyn_cast<ConstantSDNode>(Mask)) ||
589 !isShiftedMask(CN->getZExtValue(), SMPos, SMSize))
615 ConstantSDNode *CN;
621 if (!(CN = dyn_cast<ConstantSDNode>(And0.getOperand(1))) |
    [all...]
  /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/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/Hexagon/
HexagonISelDAGToDAG.cpp     [all...]
  /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/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 998 milliseconds