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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfglobal.asm 2 ; program that calls function with eax=constant, thus exiting err=0
3 GLOBAL constant
6 constant EQU 48 define
9 sub eax, constant
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantTagFilter.java 21 package proguard.classfile.constant.visitor;
24 import proguard.classfile.constant.*;
79 public void visitAnyConstant(Clazz clazz, Constant constant)
81 if (((1 << constant.getTag()) & constantTagMask) != 0)
83 constant.accept(clazz, constantVisitor);
AllConstantVisitor.java 21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
ExceptClassConstantFilter.java 21 package proguard.classfile.constant.visitor;
28 import proguard.classfile.constant.ClassConstant;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
MethodrefTraveler.java 21 package proguard.classfile.constant.visitor;
25 import proguard.classfile.constant.*;
30 * to their methodref constants, and applies a given constant visitor.
42 * Creates a new v that will delegate to the given constant visitor.
52 public void visitAnyConstant(Clazz clazz, Constant constant) {}
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayNumber.cpp 37 // (warning C4756: overflow in constant arithmetic)
42 SkScalar constant; local
45 constant = SK_ScalarMax;
48 constant = SK_ScalarMin;
51 constant = -SK_ScalarInfinity;
54 constant = SK_ScalarNaN;
57 constant = SK_ScalarInfinity;
63 value->fOperand.fScalar = constant;
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_literal_info.java 9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
ICONSTANTVisitor.java 9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx)
    [all...]
CONSTANT_ref_info.java 9 package com.vladium.jcd.cls.constant;
18 * Abstract base for all CONSTANT_XXXref_info structures. They all have a constant
22 * The value of the class_index item must be a valid index into the constant pool
23 * table. The constant pool entry at that index must be a {@link CONSTANT_Class_info}
CONSTANT_Class_info.java 9 package com.vladium.jcd.cls.constant;
21 * The value of the name_index item must be a valid index into the constant pool
22 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
50 * Returns the JVM class name within the constant pool context of 'cls'
53 * @param cls class that contains this constant
CONSTANT_Double_info.java 9 package com.vladium.jcd.cls.constant;
CONSTANT_Fieldref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_Float_info.java 9 package com.vladium.jcd.cls.constant;
22 * the float constant in IEEE 754 floating-point "single format" bit layout.
CONSTANT_Integer_info.java 9 package com.vladium.jcd.cls.constant;
22 * the int constant. The bytes of the value are stored in big-endian (high byte
  /external/skia/src/animator/
SkDisplayNumber.cpp 37 // (warning C4756: overflow in constant arithmetic)
42 SkScalar constant; local
45 constant = SK_ScalarMax;
48 constant = SK_ScalarMin;
51 constant = -SK_ScalarInfinity;
54 constant = SK_ScalarNaN;
57 constant = SK_ScalarInfinity;
63 value->fOperand.fScalar = constant;
  /external/ceres-solver/internal/ceres/
local_parameterization.cc 64 << "The set of constant parameters should contain at least "
66 << "constant, then do not use a SubsetParameterization";
68 vector<int> constant = constant_parameters; local
69 sort(constant.begin(), constant.end());
70 CHECK(unique(constant.begin(), constant.end()) == constant.end())
71 << "The set of constant parameters cannot contain duplicates";
73 << "Number of parameters held constant should be less
    [all...]
  /external/clang/test/Analysis/
bool-assignment.c 10 bool constant = 2; // no-warning local
40 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
71 Boolean constant = 2; // expected-warning {{Assignment of a non-Boolean value}} local
  /external/clang/test/Misc/
ast-dump-templates.cpp 8 int constant; member in struct:foo
  /external/proguard/src/proguard/classfile/constant/
Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
32 public abstract class Constant implements VisitorAccepter
46 * Returns the constant pool info tag that specifies the entry type.
FieldrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a field reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
InterfaceMethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a interface method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
MethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_code.c 59 unsigned rc_constants_add(struct rc_constant_list * c, struct rc_constant * constant)
77 c->Constants[index] = *constant;
85 * Add a state vector to the constant list, while trying to avoid duplicates.
90 struct rc_constant constant; local
100 memset(&constant, 0, sizeof(constant));
101 constant.Type = RC_CONSTANT_STATE;
102 constant.Size = 4;
103 constant.u.State[0] = state0;
104 constant.u.State[1] = state1
117 struct rc_constant constant; local
143 struct rc_constant constant; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_constant_folding.cpp 26 * Replace constant-valued expressions with references to constant values.
70 * expression has a non-constant operand, no need to go looking
71 * down it to find if it's constant. This cuts the time of this
82 ir_constant *constant = (*rvalue)->constant_expression_value(); local
83 if (constant) {
84 *rvalue = constant;
102 /* If the condition is constant, either remove the condition or
124 /* Attempt to constant fold parameters */
141 /* Next, see if the call can be replaced with an assignment of a constant */
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
FieldId.java 36 final CstFieldRef constant; field in class:FieldId
46 this.constant = new CstFieldRef(declaringType.constant, nat);

Completed in 277 milliseconds

1 2 3 4 5 6 7 8 91011>>