HomeSort by relevance Sort by last modified time
    Searched refs:expected_ptr (Results 1 - 6 of 6) sorted by null

  /art/runtime/mirror/
object_reference-inl.h 33 bool HeapReference<MirrorType>::CasWeakRelaxed(MirrorType* expected_ptr, MirrorType* new_ptr) {
34 return reference_.CompareAndSetWeakRelaxed(Compression::Compress(expected_ptr),
  /external/strace/tests/
xet_thread_area_x86.c 113 struct user_desc *expected_ptr = local
125 assert(ptr->entry_number == expected_ptr->entry_number);
126 assert(ptr->base_addr == expected_ptr->base_addr);
127 assert(ptr->limit == expected_ptr->limit);
128 assert(ptr->seg_32bit == expected_ptr->seg_32bit);
129 assert(ptr->contents == expected_ptr->contents);
131 expected_ptr->read_exec_only);
133 expected_ptr->limit_in_pages);
135 expected_ptr->seg_not_present);
136 assert(ptr->useable == expected_ptr->useable)
    [all...]
  /external/strace/tests-m32/
xet_thread_area_x86.c 113 struct user_desc *expected_ptr = local
125 assert(ptr->entry_number == expected_ptr->entry_number);
126 assert(ptr->base_addr == expected_ptr->base_addr);
127 assert(ptr->limit == expected_ptr->limit);
128 assert(ptr->seg_32bit == expected_ptr->seg_32bit);
129 assert(ptr->contents == expected_ptr->contents);
131 expected_ptr->read_exec_only);
133 expected_ptr->limit_in_pages);
135 expected_ptr->seg_not_present);
136 assert(ptr->useable == expected_ptr->useable)
    [all...]
  /external/strace/tests-mx32/
xet_thread_area_x86.c 113 struct user_desc *expected_ptr = local
125 assert(ptr->entry_number == expected_ptr->entry_number);
126 assert(ptr->base_addr == expected_ptr->base_addr);
127 assert(ptr->limit == expected_ptr->limit);
128 assert(ptr->seg_32bit == expected_ptr->seg_32bit);
129 assert(ptr->contents == expected_ptr->contents);
131 expected_ptr->read_exec_only);
133 expected_ptr->limit_in_pages);
135 expected_ptr->seg_not_present);
136 assert(ptr->useable == expected_ptr->useable)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
client_library_test_base.cc 276 const Literal* expected_ptr = &expected; local
281 expected_ptr = converted_expected.get();
294 LiteralTestUtil::ExpectEqual(*expected_ptr, actual, error_message);
298 computation, *expected_ptr, arguments, expect_equal);
302 computation, *expected_ptr, arguments, expect_equal, shape_with_layout);
306 LiteralTestUtil::ExpectEqual(*expected_ptr, *actual);
328 const Literal* expected_ptr = &expected; local
333 expected_ptr = converted_expected.get();
346 LiteralTestUtil::ExpectNear(*expected_ptr, actual, error, error_message);
350 computation, *expected_ptr, arguments, expect_near)
    [all...]
  /art/runtime/
mem_map.cc 223 // If the expected_ptr is null, nothing is checked beyond the fact
224 // that the actual_ptr is not MAP_FAILED. However, if expected_ptr is
225 // non-null, we check that pointer is the actual_ptr == expected_ptr,
228 static bool CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count,
233 if (expected_ptr == nullptr) {
238 uintptr_t expected = reinterpret_cast<uintptr_t>(expected_ptr);
241 if (expected_ptr == actual_ptr) {
255 // - The kernel is not *required* to honor expected_ptr unless MAP_FIXED is
294 uint8_t* expected_ptr,
314 CHECK(expected_ptr != nullptr)
    [all...]

Completed in 443 milliseconds