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

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 19 import com.android.dx.rop.cst.Constant;
199 Constant cst, int value) {
261 ArrayList<Constant> intVals) {
  /dalvik/dx/src/com/android/dx/cf/direct/
CodeObserver.java 23 import com.android.dx.rop.cst.Constant;
98 Constant cst, int value) {
178 ArrayList<Constant> intVals) {
218 * Helper for {@link #visitConstant} where the constant is an
224 * @param value constant value
245 * Helper for {@link #visitConstant} where the constant is a
251 * @param value constant value
269 * Helper for {@link #visitConstant} where the constant is a
275 * @param bits constant value, as float-bits
287 * Helper for {@link #visitConstant} where the constant is
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 22 import com.android.dx.rop.cst.Constant;
435 * Interns the given constant in the appropriate section of this
436 * instance, or do nothing if the given constant isn't the sort
439 * @param cst {@code non-null;} constant to possibly intern
441 /*package*/ void internIfAppropriate(Constant cst) {
458 * Gets the {@link IndexedItem} corresponding to the given constant,
459 * if it is a constant that has such a correspondence, or return
460 * {@code null} if it isn't such a constant. This will throw
461 * an exception if the given constant <i>should</i> have been found
464 * @param cst {@code non-null;} the constant to look u
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 21 import com.android.dx.rop.cst.Constant;
437 * Interns the given constant in the appropriate section of this
438 * instance, or do nothing if the given constant isn't the sort
441 * @param cst {@code non-null;} constant to possibly intern
443 /*package*/ void internIfAppropriate(Constant cst) {
460 * Gets the {@link IndexedItem} corresponding to the given constant,
461 * if it is a constant that has such a correspondence, or return
462 * {@code null} if it isn't such a constant. This will throw
463 * an exception if the given constant <i>should</i> have been found
466 * @param cst {@code non-null;} the constant to look u
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 39 class Constant;
382 void InitializeMemory(const Constant *Init, void *Addr);
492 GenericValue getConstantValue(const Constant *C);
  /external/llvm/lib/CodeGen/
StackProtector.cpp 338 Constant *OffsetVal =
478 Constant *StackChkFail =
485 Constant *StackChkFail =
GlobalMerge.cpp 425 std::vector<Constant*> Inits;
438 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
448 Constant *Idx[2] = {
452 Constant *GEP =
  /external/proguard/src/proguard/classfile/editor/
Utf8Shrinker.java 29 import proguard.classfile.constant.*;
30 import proguard.classfile.constant.visitor.ConstantVisitor;
38 * This ClassVisitor removes UTF-8 constant pool entries that are not used.
55 // A visitor info flag to indicate the UTF-8 constant pool entry is being used.
66 // Mark the UTF-8 entries referenced by the other constant pool entries.
76 // Shift the used constant pool entries together, filling out the
82 // Remap the references to the constant pool if it has shrunk.
87 // Remap all constant pool references.
109 public void visitAnyConstant(Clazz clazz, Constant constant) {}
453 Constant constant = constantPool[index]; local
    [all...]
ConstantPoolShrinker.java 30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
40 * This ClassVisitor removes all unused entries from the constant pool.
62 // A visitor info flag to indicate the constant is being used.
76 // Mark the superclass class constant.
89 // Shift the used constant pool entries together, filling out the
95 // Remap the references to the constant pool if it has shrunk.
100 // Remap all constant pool references.
122 public void visitAnyConstant(Clazz clazz, Constant constant)
575 Constant constant = constantPool[index]; local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
86 private final Constant[] patternConstants;
107 public InstructionSequenceReplacer(Constant[] patternConstants,
134 public InstructionSequenceReplacer(Constant[] patternConstants,
267 matchedArgument(clazz, simpleInstruction.constant));
276 instructionSequenceMatcher.matchedArgument(variableInstruction.constant));
286 instructionSequenceMatcher.matchedArgument(constantInstruction.constant));
340 * Returns the matched or newly created constant index for the given
341 * pattern constant index
    [all...]
  /external/v8/src/compiler/
js-global-object-specialization.cc 83 // object can be constant-folded, even without deoptimization support.
85 Node* value = jsgraph()->Constant(property_cell_value);
98 // Load from constant/undefined global property can be constant-folded.
101 Node* value = jsgraph()->Constant(property_cell_value);
106 // Load from constant type cell can benefit from type feedback.
175 jsgraph()->Constant(property_cell_value));
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.h 253 Constant ToConstant(const InstructionOperand* operand) const {
263 return Constant(imm->inline_value());
274 typedef std::map<int, Constant> ConstantMap;
  /system/tools/aidl/
ast_java.h 329 struct Constant : public ClassElement {
333 Constant() = default;
334 virtual ~Constant() = default;
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 153 llvm::Constant *TypeInfo;
176 llvm::Constant *beginCatchFn,
177 llvm::Constant *endCatchFn,
178 llvm::Constant *exceptionRethrowFn) {
CGValue.h 25 class Constant;
168 llvm::Constant *VectorElts;
353 llvm::Constant *getExtVectorElts() const {
397 static LValue MakeExtVectorElt(Address vecAddress, llvm::Constant *Elts,
  /external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 288 static void mapping(IO &YamlIO, MachineConstantPoolValue &Constant) {
289 YamlIO.mapRequired("id", Constant.ID);
290 YamlIO.mapOptional("value", Constant.Value);
291 YamlIO.mapOptional("alignment", Constant.Alignment);
400 std::vector<MachineConstantPoolValue> Constants; /// Constant pool.
  /external/llvm/include/llvm/IR/
Value.h 29 class Constant;
238 /// \brief Return a constant reference to the value's name.
270 /// values or constant users.
404 #define HANDLE_CONSTANT_MARKER(Marker, Constant) Marker = Constant##Val,
468 /// \brief Strip off pointer casts and all-constant inbounds GEPs.
479 /// Stores the resulting constant offset stripped into the APInt provided.
669 template <> struct isa_impl<Constant, Value> {
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 109 case MCExpr::Constant:
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.h 46 /// InConstantPool - Maintain state when emitting a sequence of constant
86 // we emit constant pools customly!
92 void EmitXXStructor(const DataLayout &DL, const Constant *CV) override;
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetObjectFile.h 87 const Constant *C) const override {
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 377 Constant *FSZero =
378 Constant::getNullValue(LinkTy->getPointerTo()->getPointerTo(257));
396 Constant *FSZero =
397 Constant::getNullValue(LinkTy->getPointerTo()->getPointerTo(257));
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 86 Constant::getNullValue(Type::getInt32Ty(F.getContext())),
  /external/proguard/src/proguard/classfile/util/
EnumFieldReferenceInitializer.java 28 import proguard.classfile.constant.*;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
87 // The constant name could be different from the field name, if
127 public void visitAnyConstant(Clazz clazz, Constant constant) {}
StringSharer.java 26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
50 // Replace name strings in the constant pool by shared strings.
53 // Replace attribute name strings in the constant pool by internalized
90 public void visitAnyConstant(Clazz clazz, Constant constant) {}
150 // Do we have a new string to put into this constant?
  /external/proguard/src/proguard/optimize/info/
AccessMethodMarker.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
63 public void visitAnyConstant(Clazz clazz, Constant constant) {}

Completed in 2080 milliseconds

<<11121314151617181920>>