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

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
90 // Read the constant pool. Note that the first entry is not used.
93 programClass.constantPool = new Constant[programClass.u2constantPoolCount];
96 Constant constant = createConstant(); local
97 constant.accept(programClass, this);
98 programClass.constantPool[index] = constant;
101 // constant pool.
102 int tag = constant.getTag()
    [all...]
ProgramClassWriter.java 30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
79 // Write the constant pool.
156 public void visitAnyConstant(Clazz clazz, Constant constant)
159 dataOutput.writeByte(constant.getTag());
162 constant.accept(clazz, constantBodyWriter);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.c 96 "DCL OUT[0], COLOR, CONSTANT\n"
97 "DCL CONST[0..9], CONSTANT\n"
98 "DCL TEMP[0..9], CONSTANT\n"
99 "DCL SAMP[0..9], CONSTANT\n";
133 struct ureg_src *constant = NULL; local
185 constant = (struct ureg_src *) malloc(sizeof(struct ureg_src) * end_const);
187 constant[i] = ureg_DECL_constant(ureg, i);
213 constant);
220 constant);
243 if (constant)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_constant_expression.cpp 26 * Evaluate and process constant valued expressions
28 * In GLSL, constant valued expressions are used in several places. These
945 /* texture lookups aren't constant expressions */
1007 * not the lifetime constant value of the uniform.
1088 /* Offset in the constant matrix to the first element of the column
1330 ir_constant *constant = ((ir_rvalue *) n)->constant_expression_value(variable_context); local
    [all...]
opt_constant_propagation.cpp 5 * constant of this software and associated documentation files (the "Software"),
7 * the rights to use, constant, modify, merge, publish, distribute, sublicense,
28 * usage of those constant channels with direct usage of the constants.
30 * This can lead to constant folding and algebraic optimizations in
33 * constant push buffer or as instruction immediate values) and
49 acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant)
52 assert(constant);
55 this->constant = constant;
63 this->constant = src->constant
68 ir_constant *constant; member in class:__anon17883::acp_entry
441 ir_constant *constant = ir->rhs->as_constant(); local
    [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 123 template<typename T, T v> struct constant { constexpr static T value = v; }; struct
125 return constant<unsigned, hash<Cs...>(0)>::value;
  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.c 96 "DCL OUT[0], COLOR, CONSTANT\n"
97 "DCL CONST[0..9], CONSTANT\n"
98 "DCL TEMP[0..9], CONSTANT\n"
99 "DCL SAMP[0..9], CONSTANT\n";
133 struct ureg_src *constant = NULL; local
185 constant = (struct ureg_src *) malloc(sizeof(struct ureg_src) * end_const);
187 constant[i] = ureg_DECL_constant(ureg, i);
213 constant);
220 constant);
243 if (constant)
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 26 * Evaluate and process constant valued expressions
28 * In GLSL, constant valued expressions are used in several places. These
945 /* texture lookups aren't constant expressions */
1007 * not the lifetime constant value of the uniform.
1088 /* Offset in the constant matrix to the first element of the column
1330 ir_constant *constant = ((ir_rvalue *) n)->constant_expression_value(variable_context); local
    [all...]
opt_constant_propagation.cpp 5 * constant of this software and associated documentation files (the "Software"),
7 * the rights to use, constant, modify, merge, publish, distribute, sublicense,
28 * usage of those constant channels with direct usage of the constants.
30 * This can lead to constant folding and algebraic optimizations in
33 * constant push buffer or as instruction immediate values) and
49 acp_entry(ir_variable *var, unsigned write_mask, ir_constant *constant)
52 assert(constant);
55 this->constant = constant;
63 this->constant = src->constant
68 ir_constant *constant; member in class:__anon31442::acp_entry
441 ir_constant *constant = ir->rhs->as_constant(); local
    [all...]
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
29 * This Constant represents a UTF-8 constant in the constant pool.
33 public class Utf8Constant extends Constant
139 // Implementations for Constant.
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolEditor.java 24 import proguard.classfile.constant.*;
27 * This class can add constant pool entries to a given class.
49 * Finds or creates a IntegerConstant constant pool entry with the given
51 * @return the constant pool index of the Utf8Constant.
56 Constant[] constantPool = targetClass.constantPool;
61 Constant constant = constantPool[index]; local
63 if (constant != null &&
64 constant.getTag() == ClassConstants.CONSTANT_Integer)
66 IntegerConstant integerConstant = (IntegerConstant)constant;
90 Constant constant = constantPool[index]; local
120 Constant constant = constantPool[index]; local
150 Constant constant = constantPool[index]; local
182 Constant constant = constantPool[index]; local
234 Constant constant = constantPool[index]; local
269 Constant constant = constantPool[index]; local
374 Constant constant = constantPool[index]; local
481 Constant constant = constantPool[index]; local
588 Constant constant = constantPool[index]; local
633 Constant constant = constantPool[index]; local
665 Constant constant = constantPool[index]; local
696 Constant constant = constantPool[index]; local
727 Constant constant = constantPool[index]; local
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 25 import proguard.classfile.constant.*;
26 import proguard.classfile.constant.visitor.ConstantVisitor;
32 * constant pool.
40 public int constant; field in class:ConstantInstruction
55 * Creates a new ConstantInstruction with the given opcode and constant pool
65 * Creates a new ConstantInstruction with the given opcode, constant pool
66 * index, and constant.
68 public ConstantInstruction(byte opcode, int constantIndex, int constant)
72 this.constant = constant;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/c-family/
c-pretty-print.h 83 c_pretty_print_fn constant; member in struct:c_pretty_print_info
134 pp_c_base (PP)->constant (pp_c_base (PP), E)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-ssa-sccvn.h 84 /* Constant offset this op adds or -1 if it is variable. */
120 tree constant; member in struct:vn_constant_s
137 /* Hash the constant CONSTANT with distinguishing type incompatible
141 vn_hash_constant_with_type (tree constant)
143 return (iterative_hash_expr (constant, 0)
144 + vn_hash_type (TREE_TYPE (constant)));
159 /* Value number. This may be an SSA name or a constant. */
161 /* Representative expression, if not a direct constant. */
  /art/compiler/optimizing/
builder.cc 471 HIntConstant* constant = GetIntConstant(instruction.VRegB_11n()); local
472 UpdateLocal(register_index, constant);
478 HIntConstant* constant = GetIntConstant(instruction.VRegB_21s()); local
479 UpdateLocal(register_index, constant);
485 HIntConstant* constant = GetIntConstant(instruction.VRegB_31i()); local
486 UpdateLocal(register_index, constant);
492 HIntConstant* constant = GetIntConstant(instruction.VRegB_21h() << 16); local
493 UpdateLocal(register_index, constant);
499 // Get 16 bits of constant value, sign extended to 64 bits.
503 HLongConstant* constant = GetLongConstant(value) local
514 HLongConstant* constant = GetLongConstant(value); local
521 HLongConstant* constant = GetLongConstant(instruction.VRegB_51l()); local
529 HLongConstant* constant = GetLongConstant(value); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
timex.h 32 __kernel_long_t constant; member in struct:timex
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 45 import com.android.dx.rop.cst.Constant;
139 // intern constant pool method, field and type references
144 Constant constant = constantPool.getOrNull(i); local
145 if (constant instanceof CstMethodRef) {
146 methodIdsSection.intern((CstBaseMethodRef) constant);
147 } else if (constant instanceof CstInterfaceMethodRef) {
148 methodIdsSection.intern(((CstInterfaceMethodRef) constant).toMethodRef());
149 } else if (constant instanceof CstFieldRef) {
150 fieldIdsSection.intern((CstFieldRef) constant);
    [all...]
  /development/ndk/platforms/android-3/include/linux/
timex.h 43 long constant; member in struct:timex
  /development/ndk/platforms/android-L/include/linux/
timex.h 32 long constant; member in struct:timex
  /external/chromium_org/third_party/angle/src/compiler/translator/
SymbolTable.h 25 // * Constants: Compile time constant symbols will keep their values
27 // time, including doing constant folding and constant propagation.
97 // There could be a separate class heirarchy for Constant variables;
367 TVariable *constant = new TVariable( local
369 constant->getConstPointer()->setIConst(value);
370 return insert(level, *constant);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nvfx_vertprog.c 88 constant(struct nvfx_vpc *vpc, int pipe, float x, float y, float z, float w) function
807 vpc->r_0_1 = constant(vpc, -1, 0, 1, 0, 0);
962 vpc->r_const[i] = constant(vpc, i, 0, 0, 0, 0);
1023 constant(vpc, -1,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_optimize.c 174 * swizzle constant.
316 struct rc_constant * constant; local
321 /* If there are only 0, 0.5, 1, or _ swizzles, mark the source as a constant. */
336 constant =
339 if (constant->Type != RC_CONSTANT_IMMEDIATE)
353 imm = constant->u.Immediate[swz];
418 /* Return 1 if the source registers has a constant swizzle (e.g. 0, 0.5, 1.0)
529 /* If both sources use a constant swizzle, then we can't convert it to
531 * operations neither source can contain a constant swizzle. This
727 /* If we get this far Src[i] must be a constant src *
    [all...]
  /external/chromium_org/v8/src/
hydrogen-bce.cc 35 HConstant* constant = NULL; local
41 constant = HConstant::cast(index->left());
44 constant = HConstant::cast(index->right());
51 constant = HConstant::cast(index->right());
56 constant = HConstant::cast(check->index());
59 if (constant != NULL && constant->HasInteger32Value()) {
60 *offset = is_sub ? - constant->Integer32Value()
61 : constant->Integer32Value();
  /external/kernel-headers/original/uapi/linux/
timex.h 49 * Added new constant NTP_PHASE_LIMIT
71 __kernel_long_t constant;/* pll time constant */ member in struct:timex
103 #define ADJ_TIMECONST 0x0020 /* pll time constant */
  /external/mesa3d/src/gallium/drivers/nv30/
nvfx_vertprog.c 88 constant(struct nvfx_vpc *vpc, int pipe, float x, float y, float z, float w) function
807 vpc->r_0_1 = constant(vpc, -1, 0, 1, 0, 0);
962 vpc->r_const[i] = constant(vpc, i, 0, 0, 0, 0);
1023 constant(vpc, -1,
    [all...]

Completed in 587 milliseconds

1 2 34 5 6 7 8 91011>>