HomeSort by relevance Sort by last modified time
    Searched refs:Constant (Results 251 - 275 of 947) sorted by null

<<11121314151617181920>>

  /frameworks/rs/api/
Specification.h 29 class Constant;
185 /* Represents a constant, like M_PI. This is a grouping of the version specific specifications.
186 * We'll only have one instance of Constant for each name.
188 class Constant : public Definition {
193 Constant(const std::string& name) : Definition(name) {}
194 ~Constant();
261 /* Defines one of the many variations of a constant. There's a one to one correspondance between
266 Constant* mConstant; // Not owned
270 ConstantSpecification(Constant* constant) : mConstant(constant) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 39 static ConstantInt *getOne(Constant *C) {
43 static ConstantInt *ExtractElement(Constant *V, Constant *Idx) {
60 static bool AddWithOverflow(Constant *&Result, Constant *In1,
61 Constant *In2, bool IsSigned = false) {
66 Constant *Idx = ConstantInt::get(Type::getInt32Ty(In1->getContext()), i);
95 static bool SubWithOverflow(Constant *&Result, Constant *In1,
96 Constant *In2, bool IsSigned = false)
    [all...]
InstructionCombining.cpp 24 // 1. If a binary operator has a constant operand, it is moved to the RHS
25 // 2. Bitwise operators with constant operands are always grouped so that
30 // 6. Multiplies with a power-of-two constant argument are transformed into
72 STATISTIC(NumConstProp, "Number of constant folds");
118 // where both B and C should be ConstantInts, results in a constant that does
300 isa<Constant>(Op0->getOperand(1)) &&
301 isa<Constant>(Op1->getOperand(1)) &&
304 Constant *C1 = cast<Constant>(Op0->getOperand(1));
306 Constant *C2 = cast<Constant>(Op1->getOperand(1))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDataItem.java 19 import com.android.dexgen.rop.cst.Constant;
51 private final HashMap<EncodedField, Constant> staticValues;
87 this.staticValues = new HashMap<EncodedField, Constant>(40);
123 public void addStaticField(EncodedField field, Constant value) {
263 * @return {@code null-ok;} the corresponding constant or {@code null} if
278 * @return {@code null-ok;} the corresponding constant or {@code null} if
293 Constant cst = staticValues.get(field);
314 Constant cst = staticValues.get(field);
StringIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
59 public IndexedItem get(Constant cst) {
125 * @param string {@code non-null;} the string to intern, as a constant
TypeIdsSection.java 19 import com.android.dexgen.rop.cst.Constant;
56 public IndexedItem get(Constant cst) {
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDataItem.java 19 import com.android.dx.rop.cst.Constant;
47 private final HashMap<EncodedField, Constant> staticValues;
83 this.staticValues = new HashMap<EncodedField, Constant>(40);
119 public void addStaticField(EncodedField field, Constant value) {
259 * @return {@code null-ok;} the corresponding constant or {@code null} if
274 * @return {@code null-ok;} the corresponding constant or {@code null} if
289 Constant cst = staticValues.get(field);
310 Constant cst = staticValues.get(field);
StringIdsSection.java 19 import com.android.dx.rop.cst.Constant;
57 public IndexedItem get(Constant cst) {
107 * @param string {@code non-null;} the string to intern, as a constant
TypeIdsSection.java 23 import com.android.dx.rop.cst.Constant;
60 public IndexedItem get(Constant cst) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDataItem.java 19 import com.android.dx.rop.cst.Constant;
48 private final HashMap<EncodedField, Constant> staticValues;
84 this.staticValues = new HashMap<EncodedField, Constant>(40);
120 public void addStaticField(EncodedField field, Constant value) {
260 * @return {@code null-ok;} the corresponding constant or {@code null} if
275 * @return {@code null-ok;} the corresponding constant or {@code null} if
290 Constant cst = staticValues.get(field);
311 Constant cst = staticValues.get(field);
  /external/llvm/examples/BrainF/
BrainF.cpp 85 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty);
131 //@aberrormsg = internal constant [%d x i8] c"\00"
132 Constant *msg_0 =
154 Constant *zero_32 = Constant::getNullValue(IntegerType::getInt32Ty(C));
156 Constant *gep_params[] = {
161 Constant *msgptr = ConstantExpr::
  /external/proguard/src/proguard/classfile/util/
DynamicClassReferenceInitializer.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
33 * This InstructionVisitor initializes any constant <code>Class.forName</code> or
35 * it fills out the references of string constant pool entries that refer to a
63 private final Constant[] CLASS_FOR_NAME_CONSTANTS = new Constant[]
102 // private Constant[] DOT_CLASS_JAVAC_CONSTANTS = new Constant[]
110 private final Constant[] DOT_CLASS_JAVAC_CONSTANTS = new Constant[]
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 24 import com.android.dexgen.rop.cst.Constant;
143 public HashSet<Constant> getAllConstants() {
144 HashSet<Constant> result = new HashSet<Constant>(20);
160 private static void addConstants(HashSet<Constant> result,
163 Constant cst = ((CstInsn) insn).getConstant();
184 private static void addConstants(HashSet<Constant> result,
306 Constant cst = insn.getConstant();
332 * constant pool index, or branch target size issues</li>
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21c.java 24 import com.android.dexgen.rop.cst.Constant;
111 Constant cst = ci.getConstant();
Form21h.java 23 import com.android.dexgen.rop.cst.Constant;
80 Constant cst = ci.getConstant();
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 23 import com.android.dx.rop.cst.Constant;
78 Constant cst = ci.getConstant();
Form21c.java 24 import com.android.dx.rop.cst.Constant;
107 Constant cst = ci.getConstant();
Form21h.java 23 import com.android.dx.rop.cst.Constant;
81 Constant cst = ci.getConstant();
Form21s.java 23 import com.android.dx.rop.cst.Constant;
77 Constant cst = ci.getConstant();
Form22b.java 23 import com.android.dx.rop.cst.Constant;
79 Constant cst = ci.getConstant();
Form22c.java 23 import com.android.dx.rop.cst.Constant;
87 Constant cst = ci.getConstant();
Form22s.java 23 import com.android.dx.rop.cst.Constant;
79 Constant cst = ci.getConstant();
Form31c.java 24 import com.android.dx.rop.cst.Constant;
106 Constant cst = ci.getConstant();
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputFinisher.java 26 import com.android.dx.rop.cst.Constant;
152 public HashSet<Constant> getAllConstants() {
153 HashSet<Constant> result = new HashSet<Constant>(20);
169 private static void addConstants(HashSet<Constant> result,
172 Constant cst = ((CstInsn) insn).getConstant();
193 private static void addConstants(HashSet<Constant> result,
316 Constant cst = insn.getConstant();
342 * constant pool index, or branch target size issues</li>
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11n.java 23 import com.android.dx.rop.cst.Constant;
79 Constant cst = ci.getConstant();

Completed in 682 milliseconds

<<11121314151617181920>>