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

<<11121314151617181920>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedArrayItem.java 22 import com.android.dexgen.rop.cst.Constant;
33 * Encoded array of constant values.
CodeItem.java 26 import com.android.dexgen.rop.cst.Constant;
132 for (Constant c : code.getInsnConstants()) {
201 public int getIndex(Constant cst) {
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 20 import com.android.dx.rop.cst.Constant;
46 * {@code non-null;} constant pool to use when resolving constant
55 * @param pool {@code non-null;} constant pool to use when
56 * resolving constant pool indices
321 Constant cst = pool.get(idx);
329 Constant cst = pool.get(idx);
337 Constant cst = pool.get(idx);
763 Constant cst = pool.get(idx);
771 Constant cst = pool.get(idx)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 35 import com.android.dx.rop.cst.Constant;
53 * Parser for a constant pool embedded in a class file.
56 /** {@code non-null;} the bytes of the constant pool */
59 /** {@code non-null;} actual parsed constant pool contents */
66 * -1 || &gt;= 10; the end offset of this constant pool in the
99 * Gets the end offset of this constant pool in the {@code byte[]}
110 * Gets the actual constant pool.
112 * @return {@code non-null;} the constant pool
142 * Track the constant value's original string type. True if constants[i] was
156 Constant cst = pool.getOrNull(i)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
ConstCollector.java 29 import com.android.dx.rop.cst.Constant;
100 // Constant to new register containing the constant
151 * Gets all of the collectable constant values used in this method,
164 * Each collected constant can be used by just one local
242 Collections.sort(constantList, new Comparator<Constant>() {
243 public int compare(Constant a, Constant b) {
319 * @param newRegs {@code non-null;} mapping between constant and new reg
321 * newly added constant reg
    [all...]
LiteralOpUpgrader.java 28 import com.android.dx.rop.cst.Constant;
36 * Upgrades insn to their literal (constant-immediate) equivalent if possible.
37 * Also switches IF instructions that compare with a constant zero or null
99 // Replace insns with constant results with const insns
140 * instruction must have a constant result for it to be replaced.
154 // Replace the instruction with a constant
156 RegOps.CONST, (Constant) type);
183 * @param cst {@code null-ok;} constant for new instruction, if any
186 RegisterSpecList newSources, int newOpcode, Constant cst) {
  /external/clang/lib/CodeGen/
CoverageMappingGen.h 56 std::vector<llvm::Constant *> FunctionRecords;
CGBlocks.cpp 46 static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
48 llvm::Constant *blockFn);
51 static llvm::Constant *buildCopyHelper(CodeGenModule &CGM,
57 static llvm::Constant *buildDisposeHelper(CodeGenModule &CGM,
76 static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM,
89 SmallVector<llvm::Constant*, 6> elements;
124 elements.push_back(llvm::Constant::getNullValue(i8p));
126 llvm::Constant *init = llvm::ConstantStruct::getAnon(elements);
237 /// Determines if the given type is safe for constant capture in C++.
257 /// Therefore, if a const object has a constant initializer, we don'
    [all...]
CGVTT.cpp 60 SmallVector<llvm::Constant *, 8> VTTComponents;
82 llvm::Constant *Init = llvm::ConstantExpr::getInBoundsGetElementPtr(
90 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
ConstCollector.java 29 import com.android.dx.rop.cst.Constant;
100 // Constant to new register containing the constant
151 * Gets all of the collectable constant values used in this method,
164 * Each collected constant can be used by just one local
242 Collections.sort(constantList, new Comparator<Constant>() {
243 public int compare(Constant a, Constant b) {
319 * @param newRegs {@code non-null;} mapping between constant and new reg
321 * newly added constant reg
    [all...]
LiteralOpUpgrader.java 28 import com.android.dx.rop.cst.Constant;
37 * Upgrades insn to their literal (constant-immediate) equivalent if possible.
38 * Also switches IF instructions that compare with a constant zero or null
100 // Replace insns with constant results with const insns
141 * instruction must have a constant result for it to be replaced.
155 // Replace the instruction with a constant
157 RegOps.CONST, (Constant) type);
184 * @param cst {@code null-ok;} constant for new instruction, if any
187 RegisterSpecList newSources, int newOpcode, Constant cst) {
  /external/eigen/test/
product_large.cpp 29 VERIFY_IS_APPROX(m, MatrixXf::Constant(N,3,2));
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISEffect.h 73 Constant, //ConstantForce
211 Use this class when dealing with Force type of Constant
  /external/llvm/include/llvm/CodeGen/
WinEHFuncInfo.h 26 class Constant;
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 60 else if (Constant *C = dyn_cast<Constant>(V))
150 Constant *C = LatticeFunc->GetConstant(BCValue, BI->getCondition(), *this);
152 // Non-constant values can go either way.
157 // Constant condition variables mean the branch can only go a single way
192 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
  /external/llvm/lib/ExecutionEngine/Orc/
ExecutionUtils.cpp 50 Constant *FuncC = CS->getOperand(1);
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 245 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val,
247 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
249 void UnswitchNontrivialCondition(Value *LIC, Constant *OnVal, Loop *L,
253 Constant *Val, bool isEqual);
255 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
409 if (isa<Constant>(Cond)) return nullptr;
560 Constant *UnswitchVal = nullptr;
567 Constant *UnswitchValCandidate = i.getCaseValue();
653 bool LoopUnswitch::UnswitchIfProfitable(Value *LoopCond, Constant *Val,
726 void LoopUnswitch::EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val
    [all...]
  /external/proguard/src/proguard/optimize/info/
NonPrivateMemberMarker.java 24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
75 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 28 import proguard.classfile.constant.*;
36 * This ClassVisitor removes constant pool entries, class members, and other
74 // Shrink the arrays for constant pool, interfaces, fields, methods,
84 // Shrinking the constant pool also sets up an index map.
102 // and remap their references to the constant pool.
107 // Remap the references to the constant pool if it has shrunk.
112 // Remap all constant pool references.
169 // Remap all constant pool references.
359 * constant pool. Creates a map from the old indices to the new indices
363 private int shrinkConstantPool(Constant[] constantPool, int length
378 Constant constant = constantPool[index]; local
    [all...]
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
MigratorFrame.java 46 import org.slf4j.migrator.Constant;
297 conversionType = Constant.JCL_TO_SLF4J;
299 conversionType = Constant.LOG4J_TO_SLF4J;
301 conversionType = Constant.JUL_TO_SLF4J;
  /external/v8/test/cctest/compiler/
test-js-context-specialization.cc 68 Node* const_context = t.jsgraph()->Constant(native);
69 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
73 // Mutable slot, constant context, depth = 0 => do nothing.
81 // Mutable slot, non-constant context, depth = 0 => do nothing.
89 // Mutable slot, constant context, depth > 0 => fold-in parent context.
106 // Immutable slot, constant context, depth = 0 => specialize.
139 Node* const_context = t.jsgraph()->Constant(native);
140 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
144 // Mutable slot, constant context, depth = 0 => do nothing.
153 // Mutable slot, non-constant context, depth = 0 => do nothing
    [all...]
  /frameworks/rs/api/
GenerateHeaderFiles.cpp 113 static void writeConstantComment(GeneratedFile* file, const Constant& constant) {
114 const string name = constant.getName();
115 writeComment(file, name, constant.getSummary(), constant.getDescription(),
116 constant.deprecated(), true);
120 const Constant* constant = spec.getConstant(); local
122 writeVersionGuardStart(file, info, constant->getFinalVersion());
123 *file << "#define " << constant->getName() << " " << spec.getValue() << "\n\n"
348 Constant* constant = spec->getConstant(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 22 import com.android.dx.rop.cst.Constant;
123 for (Constant c : code.getInsnConstants()) {
192 public int getIndex(Constant cst) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 26 import com.android.dx.rop.cst.Constant;
132 for (Constant c : code.getInsnConstants()) {
201 public int getIndex(Constant cst) {
  /external/llvm/include/llvm/IR/
GlobalValue.h 14 // constant.
21 #include "llvm/IR/Constant.h"
35 class GlobalValue : public Constant {
70 : Constant(PointerType::get(Ty, AddressSpace), VTy, Ops, NumOps),
94 friend class Constant;

Completed in 571 milliseconds

<<11121314151617181920>>