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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/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/system/
Int32Ref.java 24 public int value; field in class:Int32Ref
26 public Int32Ref(int value) {
27 this.value = value;
Int64Ref.java 23 public long value; field in class:Int64Ref
25 public Int64Ref(long value) {
26 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;
  /frameworks/base/core/java/android/util/
MutableBoolean.java 24 public boolean value; field in class:MutableBoolean
26 public MutableBoolean(boolean value) {
27 this.value = value;
MutableByte.java 24 public byte value; field in class:MutableByte
26 public MutableByte(byte value) {
27 this.value = value;
MutableChar.java 24 public char value; field in class:MutableChar
26 public MutableChar(char value) {
27 this.value = value;
MutableDouble.java 24 public double value; field in class:MutableDouble
26 public MutableDouble(double value) {
27 this.value = value;
MutableFloat.java 24 public float value; field in class:MutableFloat
26 public MutableFloat(float value) {
27 this.value = value;
MutableInt.java 24 public int value; field in class:MutableInt
26 public MutableInt(int value) {
27 this.value = value;
MutableLong.java 24 public long value; field in class:MutableLong
26 public MutableLong(long value) {
27 this.value = value;
MutableShort.java 24 public short value; field in class:MutableShort
26 public MutableShort(short value) {
27 this.value = 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::__anon16960
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon16961
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon16962
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon16963
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.27/opcodes/
aarch64-asm-2.c 30 int value; local
35 value = 2; /* --> sbc. */
39 value = 4; /* --> sbcs. */
43 value = 7; /* --> adds. */
47 value = 10; /* --> subs. */
51 value = 12; /* --> add. */
55 value = 14; /* --> adds. */
59 value = 17; /* --> subs. */
63 value = 20; /* --> adds. */
67 value = 22; /* --> sub. *
    [all...]
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_table_accessor_test_data.h 202 value {
204 value: 1
210 value {
212 value: "01010100101"
218 value {
220 value: "date"
226 value {
228 value: "datetime"
234 value {
236 value: 123
    [all...]

Completed in 279 milliseconds

1 2 3 4 5 6 7 8 91011>>