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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/base/
bits.cc 12 uint32_t RoundUpToPowerOfTwo32(uint32_t value) {
13 DCHECK_LE(value, 0x80000000u);
14 value = value - 1;
15 value = value | (value >> 1);
16 value = value | (value >> 2)
    [all...]
bits.h 21 // CountPopulation32(value) returns the number of bits set in |value|.
22 inline uint32_t CountPopulation32(uint32_t value) {
24 return __builtin_popcount(value);
26 value = ((value >> 1) & 0x55555555) + (value & 0x55555555);
27 value = ((value >> 2) & 0x33333333) + (value & 0x33333333)
    [all...]
  /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/lldb/test/lang/cpp/exceptions/
exceptions.cpp 4 int throws_exception_on_even (int value);
5 int intervening_function (int value);
6 int catches_exception (int value);
9 catches_exception (int value)
13 return intervening_function(value); // This is the line you should stop at for catch
15 catch (int value)
17 return value;
22 intervening_function (int value)
24 return throws_exception_on_even (2 * value);
28 throws_exception_on_even (int value)
    [all...]
  /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;
forward-enum.cpp 4 void bar(MyEnum value) { }
7 void foo(MyEnum value)
10 bar(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/chromium_org/base/debug/
trace_event_argument_unittest.cc 12 scoped_refptr<TracedValue> value = new TracedValue(); local
13 value->SetInteger("int", 2014);
14 value->SetDouble("double", 0.0);
15 value->SetBoolean("bool", true);
16 value->SetString("string", "string");
18 value->AppendAsTraceFormat(&json);
24 scoped_refptr<TracedValue> value = new TracedValue(); local
25 value->SetInteger("i0", 2014);
26 value->BeginDictionary("dict1");
27 value->SetInteger("i1", 2014)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
TracedValueTest.cpp 17 RefPtr<TracedValue> value = TracedValue::create(); local
18 value->setInteger("int", 2014);
19 value->setDouble("double", 0.0);
20 value->setBoolean("bool", true);
21 value->setString("string", "string");
22 String json = value->asTraceFormat();
28 RefPtr<TracedValue> value = TracedValue::create(); local
29 value->setInteger("i0", 2014);
30 value->beginDictionary("dict1");
31 value->setInteger("i1", 2014)
    [all...]
  /external/clang/test/SemaTemplate/
fibonacci.cpp 8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon3153
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon3154
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon3155
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon3156
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/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>(); }
  /bionic/libc/bionic/
eventfd_read.cpp 32 int eventfd_read(int fd, eventfd_t* value) {
33 return (read(fd, value, sizeof(*value)) == sizeof(*value)) ? 0 : -1;
eventfd_write.cpp 32 int eventfd_write(int fd, eventfd_t value) {
33 return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Boolean.java 6 public ASN1Boolean(boolean value)
8 super(value);
11 ASN1Boolean(byte[] value)
13 super(value);

Completed in 1014 milliseconds

1 2 3 4 5 6 7 8 91011>>