HomeSort by relevance Sort by last modified time
    Searched refs:val2 (Results 26 - 50 of 264) sorted by null

12 3 4 5 6 7 8 91011

  /external/v8/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest.h     [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/
gtest.h     [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/
gtest.h     [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
LineRegion.java 37 public static Number measure(Number val1, Number val2) {
38 return new LineRegion(val1, val2).length();
  /external/clang/test/SemaTemplate/
instantiate-c99.cpp 43 typename Val1, typename Val2>
45 void f(Val1 val1, Val2 val2) {
48 [Subscript2] = val2 // expected-error{{exceeds array bounds}}
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Format.h 99 T2 Val2;
101 format_object2(const char *fmt, const T1 &val1, const T2 &val2)
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
106 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
117 T2 Val2;
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3)
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
125 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3)
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /external/elfutils/libdwfl/
frame_unwind.c 170 Dwarf_Addr val1, val2; local
286 if (! pop (&val1) || ! pop (&val2)
287 || ! push (val2) || ! push (val1) || ! push (val2))
294 if (! pop (&val1) || ! pop (&val2) || ! push (val1) || ! push (val2))
303 if (! pop (&val1) || ! pop (&val2) || ! pop (&val3)
304 || ! push (val1) || ! push (val3) || ! push (val2))
373 if (! pop (&val2) || ! pop (&val1) || ! push (val1 op val2)) \
    [all...]
  /external/syslinux/core/
serirq.c 128 char val, val2; local
156 val2 = inb(0x21);
158 IRQMask[1] = val2;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
KeyButtonViewTest.java 78 private boolean checkField(String field, Object val, Object val2) {
79 if (!Objects.equals(val, val2)) {
80 mReason = "Expected " + field + " " + val2 + " but was " + val;
  /hardware/interfaces/broadcastradio/1.1/tests/
WorkerThread_test.cpp 35 #define ASSERT_EQ_WITH_TOLERANCE(val1, val2, tolerance) \
36 ASSERT_LE((val1) - (tolerance), (val2)); \
37 ASSERT_GE((val1) + (tolerance), (val2));
  /system/extras/app-launcher/
computestats.c 26 u_int64_t val2 = *(u_int64_t *)p2; local
28 if (val1 == val2)
30 if (val1 < val2)
computestatsf.c 26 double val2 = *(u_int64_t *)p2; local
28 if (val1 == val2)
30 if (val1 < val2)
  /libcore/luni/src/test/java/libcore/android/system/
StructTimespecTest.java 94 StructTimespec val2 = new StructTimespec(23, 42); local
103 assertTrue(val1.equals(val2));
130 StructTimespec val2 = new StructTimespec(23, 42); local
140 assertEquals(val1.hashCode(), val2.hashCode());
  /art/runtime/interpreter/
safe_math.h 40 unsigned_biggest_T val2 = static_cast<unsigned_biggest_T>(b); local
41 return static_cast<biggest_T>(Op<unsigned_biggest_T>()(val1, val2));
  /system/bt/bta/hf_client/
bta_hf_client_api.cc 169 uint32_t val1, uint32_t val2, const char* str) {
176 p_buf->uint32_val2 = val2;
  /cts/suite/audio_quality/test/
TaskCaseTest.cpp 72 TaskCase::Value val2(2.0f);
76 ASSERT_TRUE(!(val1 == val2));
77 ASSERT_TRUE(!(val2 == val3));
78 ASSERT_TRUE(val2 == val2_copy);
87 ASSERT_TRUE(mTaskCase->registerValue(V2, val2));
104 ASSERT_TRUE(((list->front().second == val2) && (list->back().second == val3)) ||
  /prebuilts/go/darwin-x86/src/reflect/
swapper.go 69 val2 := arrayAt(s.Data, j, size)
71 typedmemmove(typ, val1, val2)
72 typedmemmove(typ, val2, tmp)
  /prebuilts/go/linux-x86/src/reflect/
swapper.go 69 val2 := arrayAt(s.Data, j, size)
71 typedmemmove(typ, val1, val2)
72 typedmemmove(typ, val2, tmp)
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 138 int val2 = iter + 3; local
139 int expected = val1 + val2; // Expect to get the sum back
141 send.writeInt32(val2);
174 int val1, val2; local
193 val2 = data.readInt32();
194 reply->writeInt32(val1 + val2);

Completed in 1132 milliseconds

12 3 4 5 6 7 8 91011