Searched refs:constant (Results 201 - 225 of 296) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/
H A DInitializer.java25 import proguard.classfile.constant.visitor.*;
146 // Initialize other string constant references, if requested.
/external/proguard/src/proguard/optimize/peephole/
H A DClassMerger.java24 import proguard.classfile.constant.visitor.*;
/external/webkit/Source/JavaScriptCore/jit/
H A DJIT.h300 bool getOperandConstantImmediateInt(unsigned op1, unsigned op2, unsigned& op, int32_t& constant);
310 void emitStore(unsigned index, const JSValue constant, RegisterID base = callFrameRegister);
339 void emitAdd32Constant(unsigned dst, unsigned op, int32_t constant, ResultType opType);
340 void emitSub32Constant(unsigned dst, unsigned op, int32_t constant, ResultType opType);
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp65 /// constant - This Value has a specific constant value.
66 constant, enumerator in enum:__anon7291::LVILatticeVal::LatticeValueTy
73 /// overdefined - This value is not known to be constant, and we know that
79 /// the constant if this is a 'constant' or 'notconstant' value.
106 bool isConstant() const { return Tag == constant; }
112 assert(isConstant() && "Cannot get the constant of a non-constant!");
117 assert(isNotConstant() && "Cannot get the constant o
[all...]
/external/strace/
H A Dtime.c569 int constant; member in struct:__anon11313
593 tprintf(", constant=%d, precision=%u, ",
594 tx.constant, tx.precision);
636 tprintf(", constant=%ld, precision=%lu, ",
637 tx.constant, tx.precision);
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorObjC.pm736 foreach my $constant (@{$dataNode->constants}) {
737 my $constantName = $constant->name;
738 my $constantValue = $constant->value;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dmain.rb275 eval( "defined?(#{ name })" ) == 'constant'
/external/clang/lib/Lex/
H A DLiteralSupport.cpp345 /// integer-constant: [C99 6.4.4.1]
346 /// decimal-constant integer-suffix
347 /// octal-constant integer-suffix
348 /// hexadecimal-constant integer-suffix
353 /// decimal-constant:
355 /// decimal-constant digit
356 /// octal-constant:
358 /// octal-constant octal-digit
359 /// hexadecimal-constant:
361 /// hexadecimal-constant hexadecima
[all...]
/external/dbus/dbus/
H A Ddbus-string.c158 real->constant = FALSE;
201 * Initializes a constant string. The value parameter is not copied
220 * Initializes a constant string with a length. The value parameter is
247 real->constant = TRUE;
268 if (real->constant)
1486 _dbus_assert (!real_dest->constant); \
1579 /* we assume ->constant doesn't matter as you can't have
1580 * a constant string involved in a move.
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrVisitor.java20 import com.vladium.jcd.cls.constant.CONSTANT_Class_info;
21 import com.vladium.jcd.cls.constant.CONSTANT_Long_info;
22 import com.vladium.jcd.cls.constant.CONSTANT_Methodref_info;
23 import com.vladium.jcd.cls.constant.CONSTANT_String_info;
1073 // add a long stamp constant after all the original methods have been visited:
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp10 // This file implements sparse conditional constant propagation and merging:
13 // * Assumes values are constant unless proven otherwise
15 // * Proves values to be constant, and replaces them with constants
49 STATISTIC(IPNumArgsElimed ,"Number of arguments constant propagated by IPSCCP");
50 STATISTIC(IPNumGlobalConst, "Number of globals found to be constant by IPSCCP");
61 /// constant - This LLVM Value has a specific constant value.
62 constant, enumerator in enum:__anon7813::LatticeVal::LatticeValueTy
65 /// ResolvedUndefsIn. This is treated just like 'constant', but if merged
66 /// with another (different) constant, i
[all...]
/external/mesa3d/src/glsl/
H A Dast.h330 unsigned constant:1; member in struct:ast_type_qualifier::__anon8136::__anon8137
H A Dast_to_hir.cpp1492 /* If the array index is a constant expression and the array has a
1494 * index is not a constant expression, ensure that the array has a
1515 * integral constant expression greater than or equal to the
1517 * negative constant expression."
1556 _mesa_glsl_error(&loc, state, "unsized array index must be constant");
1574 * brackets [ ]) can only be indexed with integral constant
1589 "sampler arrays indexed with non-constant "
1593 "sampler arrays indexed with non-constant "
1598 "sampler arrays indexed with non-constant "
1759 "constant value
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseIterators.java2063 * @param constant (Not sure what this is yet. -sb)
2065 public SingletonIterator(int node, boolean constant) argument
2068 _isConstant = constant;
/external/clang/www/demo/
H A Dindex.cgi99 $input =~ s@\b(add|sub|mul|div|rem|and|or|xor|setne|seteq|setlt|setgt|setle|setge|phi|tail|call|cast|to|shl|shr|vaarg|vanext|ret|br|switch|invoke|unwind|malloc|alloca|free|load|store|getelementptr|begin|end|true|false|declare|global|constant|const|internal|uninitialized|external|implementation|linkonce|weak|appending|null|to|except|not|target|endian|pointersize|big|little|volatile)\b@<span class="llvm_keyword">$1</span>@g;
/external/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_mse16x16_armv6.asm39 mov lr, #0 ; constant zero
H A Dvp8_variance16x16_armv6.asm37 mov lr, #0 ; constant zero
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm32 mov lr, #0 ; constant zero
H A Dvp8_variance_halfpixvar16x16_v_armv6.asm32 mov lr, #0 ; constant zero
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java27 import proguard.classfile.constant.*;
118 public void visitAnyConstant(Clazz clazz, Constant constant) argument
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java30 import proguard.classfile.constant.*;
31 import proguard.classfile.constant.visitor.ConstantVisitor;
871 " Enum constant element value [" +
/external/v8/src/arm/
H A Dlithium-arm.cc497 LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) { argument
498 return LConstantOperand::Create(constant->id());
854 HConstant* constant = HConstant::cast(right_value); local
855 right = chunk_->DefineConstantOperand(constant);
856 constant_value = constant->Integer32Value() & 0x1f;
/external/v8/src/mips/
H A Dlithium-mips.cc497 LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) { argument
498 return LConstantOperand::Create(constant->id());
854 HConstant* constant = HConstant::cast(right_value); local
855 right = chunk_->DefineConstantOperand(constant);
856 constant_value = constant->Integer32Value() & 0x1f;
/external/v8/src/x64/
H A Dlithium-x64.cc490 LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) { argument
491 return LConstantOperand::Create(constant->id());
849 HConstant* constant = HConstant::cast(right_value); local
850 right = chunk_->DefineConstantOperand(constant);
851 constant_value = constant->Integer32Value() & 0x1f;
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTest.java661 Maps.uniqueIndex(ImmutableSet.of("one", "uno"), Functions.constant(1));
671 Maps.uniqueIndex(listWithNull, Functions.constant(1));
681 Maps.uniqueIndex(oneStringList, Functions.constant(null));

Completed in 352 milliseconds

1234567891011>>