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

1 2 3 4 5 6 7 8

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/
TAbstract.java 20 protected abstract int toInt();
TPlain.java 20 public int toInt() {
TSuper.java 26 public int toInt() {
30 public int toInt(float v) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/
TAbstract.java 20 protected abstract int toInt();
TPlain.java 20 public int toInt() {
TSuper.java 24 public int toInt() {
28 public int toInt(float v) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/
T_invoke_direct_range_16.java 24 private int toInt() {
T_invoke_direct_range_1.java 24 return super.toInt();
T_invoke_direct_range_11.d 30 invoke-direct/range {v2}, dot.junit.opcodes.invoke_direct_range.d.T_invoke_direct_range_11/toInt()I
36 .method private static toInt()I
T_invoke_direct_range_16.d 29 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_16/toInt()F
36 .method private toInt()I
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float f) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float f) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/d/
TSuper.java 21 public int toInt() {
25 public int toInt(float value) {
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresultsitem.cpp 15 return text(sortCol).toInt() < other.text(sortCol).toInt();
signalbar.cpp 38 if (index.data().toInt() > 0)
39 signal = 0 - (256 - index.data().toInt());
41 signal = index.data().toInt();
peers.cpp 182 int type = ctx_item->data(peer_role_type).toInt();
189 config_methods = var.toInt();
194 method = (enum selected_method) var.toInt();
308 int peer_type = ctx_item->data(peer_role_type).toInt();
436 int type = item->data(peer_role_type).toInt();
532 str.section('=', 1).toInt(0, 0);
602 id = (*it).mid(pos).toInt();
801 if (item->data(peer_role_type).toInt() == type)
869 if (item == NULL || item->data(peer_role_type).toInt() !=
887 if (item && item->data(peer_role_type).toInt() =
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/
T_invoke_direct_1.java 24 return super.toInt();
T_invoke_direct_11.d 30 invoke-direct {v2}, dot.junit.opcodes.invoke_direct.d.T_invoke_direct_11/toInt()I
36 .method private static toInt()I
T_invoke_direct_16.d 29 invoke-direct {v2}, dot/junit/opcodes/invoke_direct/d/T_invoke_direct_16/toInt()F
36 .method private toInt()I
T_invoke_direct_8.d 31 invoke-direct {v1}, dot.junit.opcodes.invoke_direct.d.T_invoke_direct_8/toInt()I
38 .method private toInt()I
T_invoke_direct_9.d 30 invoke-direct {v2}, dot.junit.opcodes.invoke_direct.d.T_invoke_direct_9/toInt()I
37 .method private native toInt()I
  /external/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 28 import static com.google.common.primitives.UnsignedBytes.toInt;
120 k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
122 k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
124 k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
126 k2 ^= (long) toInt(bb.get(11)) << 24; // fall through
128 k2 ^= (long) toInt(bb.get(10)) << 16; // fall through
130 k2 ^= (long) toInt(bb.get(9)) << 8; // fall through
132 k2 ^= (long) toInt(bb.get(8)); // fall through
137 k1 ^= (long) toInt(bb.get(6)) << 48; // fall through
139 k1 ^= (long) toInt(bb.get(5)) << 40; // fall throug
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 71 public static int toInt(byte value) {
102 if (value > toInt(MAX_VALUE)) {
123 return toInt(a) - toInt(b);
136 int min = toInt(array[0]);
138 int next = toInt(array[i]);
156 int max = toInt(array[0]);
158 int next = toInt(array[i]);
191 return Integer.toString(toInt(x), radix);
248 builder.append(toInt(array[0]))
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedBytesTest.java 44 assertEquals(0, UnsignedBytes.toInt((byte) 0));
45 assertEquals(1, UnsignedBytes.toInt((byte) 1));
46 assertEquals(127, UnsignedBytes.toInt((byte) 127));
47 assertEquals(128, UnsignedBytes.toInt((byte) -128));
48 assertEquals(129, UnsignedBytes.toInt((byte) -127));
49 assertEquals(255, UnsignedBytes.toInt((byte) -1));
55 UnsignedBytes.checkedCast(UnsignedBytes.toInt(value)));
66 UnsignedBytes.saturatedCast(UnsignedBytes.toInt(value)));
  /external/deqp/framework/randomshaders/
rsgVariableValue.cpp 110 inline int toInt (bool boolVal) { return boolVal ? 1 : 0; }
119 return CompareIntersection()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax));
137 return CompareIsSubsetOf()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax));

Completed in 303 milliseconds

1 2 3 4 5 6 7 8