HomeSort by relevance Sort by last modified time
    Searched full:isconstant (Results 1 - 25 of 235) sorted by null

1 2 3 4 5 6 7 8 910

  /external/skia/src/animator/
SkOperand2.h 34 enum IsConstant {
44 IsConstant fIsConstant : 8;
51 bool isConstant() const { return fIsConstant == kConstant; }
  /external/v8/src/
hydrogen-alias-analysis.h 37 if (b->IsConstant()) return kNoAlias;
42 if (a->IsConstant()) return kNoAlias;
46 if (a->IsConstant()) {
hydrogen-dehoist.cc 19 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
22 } else if (binary_operation->right()->IsConstant()) {
  /art/compiler/optimizing/
locations.cc 48 return instruction->IsConstant()
54 if (!instruction->IsConstant() || !instruction->AsConstant()->IsLongConstant()) {
67 return instruction->IsConstant()
code_generator_x86_64.cc 653 } else if (source.IsConstant()) {
670 } else if (source.IsConstant()) {
697 if (locations != nullptr && locations->Out().IsConstant()) {
706 DCHECK(location.IsConstant());
717 DCHECK(location.IsConstant());
842 } else if (rhs.IsConstant()) {
    [all...]
constant_folding.cc 77 if (check_input->IsConstant() && !check_input->AsConstant()->IsZero()) {
89 if (left->IsConstant() && left->AsConstant()->IsZero()) {
154 if (instruction->GetLeft()->IsConstant() &&
  /external/ceres-solver/internal/ceres/
parameter_block_ordering.cc 63 if (parameter_block->IsConstant()) {
82 if (parameter_block->IsConstant()) {
118 if (!parameter_block->IsConstant()) {
130 if (parameter_blocks[j]->IsConstant()) {
135 if (parameter_blocks[k]->IsConstant()) {
block_jacobian_writer.cc 75 if (!parameter_block->IsConstant()) {
104 if (parameter_block->IsConstant()) {
159 CHECK(!parameter_blocks[i]->IsConstant());
192 if (!parameter_block->IsConstant()) {
program.cc 78 if (!parameter_blocks_[i]->IsConstant() &&
102 if (!parameter_blocks_[i]->IsConstant() &&
198 if (parameter_block->IsConstant()) {
220 if (parameter_block->IsConstant()) {
312 if (!parameter_block->IsConstant()) {
403 if (parameter_blocks[j]->IsConstant()) {
compressed_row_jacobian_writer.cc 73 if (!parameter_block->IsConstant()) {
96 if (!parameter_block->IsConstant()) {
128 if (!parameter_block->IsConstant()) {
block_evaluate_preparer.cc 69 if (!residual_block->parameter_blocks()[j]->IsConstant()) {
scratch_evaluate_preparer.cc 68 if (parameter_block->IsConstant()) {
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
TypedConstant.java 46 public final boolean isConstant() {
  /dalvik/dx/src/com/android/dx/rop/cst/
TypedConstant.java 46 public final boolean isConstant() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
TypedConstant.java 46 public final boolean isConstant() {
  /external/llvm/test/CodeGen/X86/
vbinop-simplify-bug.ll 5 ; using the new method 'BuildVectorSDNode::isConstant' when possible.
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 109 if (!lastType.isConstant()) {
112 if (szSources == 2 && firstType.isConstant()) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 109 if (!lastType.isConstant()) {
112 if (szSources == 2 && firstType.isConstant()) {
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 78 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
105 bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 48 /// isConstant - Test whether the memory pointed to by this
51 virtual bool isConstant(const MachineFrameInfo *) const;
99 bool isConstant(const MachineFrameInfo *MFI) const override;
  /external/llvm/include/llvm/IR/
GlobalVariable.h 57 GlobalVariable(Type *Ty, bool isConstant, LinkageTypes Linkage,
63 GlobalVariable(Module &M, Type *Ty, bool isConstant,
144 bool isConstant() const { return isConstantGlobal; }
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeBearer.java 73 public boolean isConstant();
  /dalvik/dx/src/com/android/dx/cf/code/
ReturnAddress.java 80 public boolean isConstant() {
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 73 public boolean isConstant();
  /external/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp 50 if (!RV.isConstant() || RV.isZeroConstant())

Completed in 1879 milliseconds

1 2 3 4 5 6 7 8 910