HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 1 - 25 of 31402) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
lto-12b.c 1 int value = -1; variable
  /art/test/068-classloader/src-ex/
MutationTarget.java 21 public static int value = 0; field in class:MutationTarget
  /external/clang/test/Sema/
arm-microsoft-intrinsics.c 3 unsigned int test_MoveFromCoprocessor(const unsigned int value) {
4 return _MoveFromCoprocessor(value, 1, 2, 3, 4); // expected-error-re {{argument to {{.*}} must be a constant integer}}
7 void test_MoveToCoprocessor(const unsigned int value) {
8 _MoveToCoprocessor(1, 2, value, 3, 4, 5); // expected-error-re {{argument to {{.*}} must be a constant integer}}
inline-asm-validate-tmpl.cpp 6 template <int N> void test(int value)
8 asm("rol %1, %0" :"=r"(value): "I"(N + 1)); // expected-error{{value '301' out of range for constraint 'I'}}
15 template <int N> void testb(int value)
17 asm("rol %1, %0" :"=r"(value): "I"(301)); // expected-error{{value '301' out of range for constraint 'I'}}
21 template <int N> void testc(int value)
23 asm("rol %1, %0" :"=r"(value): "I"(N + 1));
  /libcore/luni/src/main/java/android/util/
MutableBoolean.java 22 public boolean value; field in class:MutableBoolean
24 public MutableBoolean(boolean value) {
25 this.value = value;
MutableByte.java 22 public byte value; field in class:MutableByte
24 public MutableByte(byte value) {
25 this.value = value;
MutableChar.java 22 public char value; field in class:MutableChar
24 public MutableChar(char value) {
25 this.value = value;
MutableDouble.java 22 public double value; field in class:MutableDouble
24 public MutableDouble(double value) {
25 this.value = value;
MutableFloat.java 22 public float value; field in class:MutableFloat
24 public MutableFloat(float value) {
25 this.value = value;
MutableInt.java 22 public int value; field in class:MutableInt
24 public MutableInt(int value) {
25 this.value = value;
MutableLong.java 22 public long value; field in class:MutableLong
24 public MutableLong(long value) {
25 this.value = value;
MutableShort.java 22 public short value; field in class:MutableShort
24 public MutableShort(short value) {
25 this.value = value;
  /external/smali/util/src/main/java/org/jf/util/
NibbleUtils.java 37 * byte of the given value
38 * @param value the value to extract the nibble from
39 * @return the extracted signed nibble value
41 public static int extractHighSignedNibble(int value) {
42 return (value << 24) >> 28;
47 * byte of the given value
48 * @param value the value to extract the nibble from
49 * @return the extracted signed nibble value
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
MutableInteger.java 35 public int value; field in class:MutableInteger
39 public MutableInteger(int value) {
40 this.value = value;
  /external/clang/test/CodeGenCXX/
catch-undef-behavior2.cpp 3 bool GetOptionalBool(bool *value);
7 bool value; local
8 return GetOptionalBool(&value) ? value : default_value;
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Const.java 16 private final double value; field in class:Const
18 public Const(final double value) {
19 this.value = value;
23 return value;
  /external/proguard/src/proguard/gui/splash/
ConstantDouble.java 30 private final double value; field in class:ConstantDouble
35 * @param value the constant value.
37 public ConstantDouble(double value)
39 this.value = value;
47 return value;
ConstantInt.java 30 private final int value; field in class:ConstantInt
35 * @param value the constant value.
37 public ConstantInt(int value)
39 this.value = value;
47 return value;
  /external/fdlibm/
s_ldexp.c 18 double ieee_ldexp(double value, int exp)
20 double ieee_ldexp(value, exp)
21 double value; int exp;
24 if(!ieee_finite(value)||value==0.0) return value;
25 value = ieee_scalbn(value,exp);
26 if(!ieee_finite(value)||value==0.0) errno = ERANGE
    [all...]
  /external/clang/test/SemaTemplate/
fibonacci.cpp 8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon15874
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon15875
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon15876
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon15877
24 int array5[Fibonacci<5>::value == 5? 1 : -1];
25 int array10[Fibonacci<10>::value == 55? 1 : -1];
32 static const unsigned value member in struct:Fibonacci2
38 static const unsigned value = Fibonacci2<I>::value; member in struct:FibonacciEval2
42 static const unsigned value = 0; member in struct:Fibonacci2
46 static const unsigned value = 1; member in struct:Fibonacci2
54 static const unsigned value = Fibonacci3<I-1>::value + Fibonacci3<I-2>::value; member in struct:Fibonacci3
58 static const unsigned value = 0; member in struct:Fibonacci3
62 static const unsigned value = 1; member in struct:Fibonacci3
    [all...]
  /external/vixl/src/
compiler-intrinsics-vixl.cc 32 int CountLeadingSignBitsFallBack(int64_t value, int width) {
34 if (value >= 0) {
35 return CountLeadingZeros(value, width) - 1;
37 return CountLeadingZeros(~value, width) - 1;
42 int CountLeadingZerosFallBack(uint64_t value, int width) {
44 if (value == 0) {
48 value = value << (64 - width);
49 if ((value & UINT64_C(0xffffffff00000000)) == 0) {
51 value = value << 32
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-asm-2.c 30 int value; local
34 value = 2; /* --> sbc. */
37 value = 4; /* --> sbcs. */
40 value = 7; /* --> adds. */
43 value = 10; /* --> subs. */
46 value = 12; /* --> add. */
49 value = 14; /* --> adds. */
52 value = 17; /* --> subs. */
55 value = 20; /* --> adds. */
58 value = 22; /* --> sub. *
    [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals-unused.cpp 4 double operator"" _x(long double value) { return double(value); }
5 int operator"" _ii(long double value) { return int(value); } // expected-warning {{not needed and will not be emitted}}
9 template<class T> double value() { return 3.2_x; } function in namespace:rdar13589856
12 double get_value() { return value<double>(); }
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Output.java 18 * The value field
20 public T value; field in class:Output
27 return value == null ? "null" : value.toString();
38 * Constructs an <code>Output</code> with the given value.
39 * @param value the initial value
41 public Output(T value) {
42 this.value = value;
    [all...]
  /external/messageformat/java/com/ibm/icu/util/
Output.java 16 * The value field
19 public T value; field in class:Output
26 return value == null ? "null" : value.toString();
38 * Constructs an <code>Output</code> withe the given value.
39 * @param value the initial value
42 public Output(T value) {
43 this.value = value;
    [all...]

Completed in 1802 milliseconds

1 2 3 4 5 6 7 8 91011>>