Home
last modified time | relevance | path

Searched refs:actual_size (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-listener_test.cc180 const int actual_size = data.size(); in VerifyResults() local
183 EXPECT_EQ(expected_data_size, actual_size); in VerifyResults()
186 const int shorter_size = expected_data_size <= actual_size ? in VerifyResults()
187 expected_data_size : actual_size; in VerifyResults()
195 for (; i < actual_size; ++i) { in VerifyResults()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception.cpp160 size_t actual_size = cxa_exception_size_from_exception_thrown_size(thrown_size); in __cxa_allocate_exception() local
161 __cxa_exception* exception_header = static_cast<__cxa_exception*>(do_malloc(actual_size)); in __cxa_allocate_exception()
164 std::memset(exception_header, 0, actual_size); in __cxa_allocate_exception()
179 size_t actual_size = sizeof(__cxa_dependent_exception); in __cxa_allocate_dependent_exception() local
180 void *ptr = do_malloc(actual_size); in __cxa_allocate_dependent_exception()
183 std::memset(ptr, 0, actual_size); in __cxa_allocate_dependent_exception()