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

1 2

  /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/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 99 ConstantSDNode *CN = nullptr;
101 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
102 && (CN->getSExtValue() % 4 == 0 && CN->getSExtValue() >= 0)) {
105 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/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 39 static final String CN = "CN";
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 188 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
189 if (isInt<16>(CN->getSExtValue())) {
200 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
MipsSEISelDAGToDAG.cpp 270 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
271 if (isIntN(OffsetBits, CN->getSExtValue())) {
281 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
659 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
660 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
683 const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
684 unsigned Size = CN->getValueSizeInBits(0);
690 int64_t Imm = CN->getSExtValue();
696 SDLoc DL(CN);
MipsISelLowering.cpp 634 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;
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->getZExtValue(), SMPos1, SMSize1)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 46 public static final ASN1ObjectIdentifier CN = new ASN1ObjectIdentifier("2.5.4.3");
210 DefaultSymbols.put(CN, "CN");
243 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/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
DAGCombiner.cpp 654 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
655 return CN;
659 ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements);
664 if (CN && UndefElements.none() &&
665 CN->getValueType(0) == N.getValueType().getScalarType())
666 return CN;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 136 const ConstantSDNode *CN = cast<ConstantSDNode>(N);
137 Pred = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 263 CN(new String[]{
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 579 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
580 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 

Completed in 2541 milliseconds

1 2