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

12 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_InterfaceMethodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_Long_info.java 9 package com.vladium.jcd.cls.constant;
22 * together contain the value of the long constant
CONSTANT_Methodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_NameAndType_info.java 9 package com.vladium.jcd.cls.constant;
22 * The value of the name_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_Utf8_info}
27 * The value of the descriptor_index item must be a valid index into the constant
28 * pool table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
CONSTANT_String_info.java 9 package com.vladium.jcd.cls.constant;
18 * The CONSTANT_String_info structure is used to represent constant objects of
21 * The value of the string_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}
CONSTANT_Utf8_info.java 9 package com.vladium.jcd.cls.constant;
18 * The CONSTANT_Utf8_info structure is used to represent constant string values.<P>
CONSTANT_info.java 9 package com.vladium.jcd.cls.constant;
31 * Returns the tag byte for this CONSTANT type [this data is
43 * Returns the number of constant pool index slots occupied by this
44 * CONSTANT type. This implementation defaults to returning '1'.
133 public static String tagToString (final CONSTANT_info constant)
135 switch (constant.tag ())
173 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + constant.tag () + ']');
  /external/guava/guava-tests/test/com/google/common/cache/
TestingWeighers.java 25 * Returns a {@link Weigher} that returns the given {@code constant} for every request.
27 static Weigher<Object, Object> constantWeigher(int constant) {
28 return new ConstantWeigher(constant);
46 private final int constant; field in class:TestingWeighers.ConstantWeigher
48 ConstantWeigher(int constant) {
49 this.constant = constant;
54 return constant;
  /external/mesa3d/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/mesa3d/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/proguard/src/proguard/classfile/constant/
ClassConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a class constant in the constant pool.
32 public class ClassConstant extends Constant
62 * @param u2nameIndex the index of the name in the constant pool.
82 // Implementations for Constant.
DoubleConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
31 public class DoubleConstant extends Constant
71 // Implementations for Constant.
FloatConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.
31 public class FloatConstant extends Constant
71 // Implementations for Constant.
IntegerConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a integer constant in the constant pool.
31 public class IntegerConstant extends Constant
71 // Implementations for Constant.
LongConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a long constant in the constant pool.
31 public class LongConstant extends Constant
71 // Implementations for Constant.
MethodHandleConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method handle constant in the constant pool.
31 public class MethodHandleConstant extends Constant
58 * @param u2referenceIndex the index of the field ref constant, interface
59 * method ref constant, or method ref constant in
60 * the constant pool
    [all...]
MethodTypeConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method handle constant in the constant pool.
31 public class MethodTypeConstant extends Constant
55 * @param u2descriptorIndex the index of the descriptor in the constant
82 // Implementations for Constant.
NameAndTypeConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a name and type constant in the constant pool.
31 public class NameAndTypeConstant extends Constant
47 * @param u2nameIndex the index of the name in the constant pool.
48 * @param u2descriptorIndex the index of the descriptor in the constant
108 // Implementations for Constant.
InvokeDynamicConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.*;
28 * This Constant represents an invoke dynamic constant in the constant pool.
32 public class InvokeDynamicConstant extends Constant
61 * entry in the constant pool.
129 * Lets the bootstrap method handle constant accept the given visitor.
137 // Implementations for Constant.
RefConstant.java 21 package proguard.classfile.constant;
27 * This Constant represents a ref constant in the constant pool.
31 public abstract class RefConstant extends Constant
StringConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a string constant in the constant pool.
32 public class StringConstant extends Constant
76 * @param u2stringIndex the index of the string in the constant pool.
99 // Implementations for Constant.
  /libcore/benchmarks/src/benchmarks/
AdditionBenchmark.java 36 int constant = 123; local
38 result += constant;
51 long constant = 123L; local
53 result += constant;
66 float constant = 123.0f; local
68 result += constant;
81 double constant = 123.0; local
83 result += constant;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 300 struct rc_constant constant; local
323 constant.Type = RC_CONSTANT_IMMEDIATE;
324 constant.Size = 4;
326 constant.u.Immediate[i] = imm->u[i].Float;
327 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
345 struct rc_constant constant; local
346 memset(&constant, 0, sizeof(constant));
347 constant.Type = RC_CONSTANT_EXTERNAL;
348 constant.Size = 4
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 300 struct rc_constant constant; local
323 constant.Type = RC_CONSTANT_IMMEDIATE;
324 constant.Size = 4;
326 constant.u.Immediate[i] = imm->u[i].Float;
327 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
345 struct rc_constant constant; local
346 memset(&constant, 0, sizeof(constant));
347 constant.Type = RC_CONSTANT_EXTERNAL;
348 constant.Size = 4
    [all...]
  /external/proguard/src/proguard/classfile/constant/visitor/
BootstrapMethodHandleTraveler.java 21 package proguard.classfile.constant.visitor;
26 import proguard.classfile.constant.*;
36 * bootstrap method handle constants, and applies a given constant visitor.
54 * given constant visitor.
64 public void visitAnyConstant(Clazz clazz, Constant constant) {}

Completed in 256 milliseconds

12 3 4 5 6 7 8 91011>>