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

  /bionic/tests/
stdlib_test.cpp 731 char* end_p; local
735 ASSERT_EQ(T(0), fn("123", &end_p, -1));
740 ASSERT_EQ(T(0), fn("123", &end_p, 1));
745 ASSERT_EQ(T(0), fn("123", &end_p, 37));
749 ASSERT_EQ(T(0), fn("0xy", &end_p, 16));
750 ASSERT_EQ('x', *end_p);
755 end_p = nullptr;
757 ASSERT_EQ(std::numeric_limits<T>::min(), fn(min.c_str(), &end_p, 0));
759 ASSERT_EQ('\0', *end_p);
762 end_p = nullptr
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 328 const void *end_p,
332 VPrintf(2, "contiguous_container: %p %p %p %p\n", beg_p, end_p, old_mid_p,
335 uptr end = reinterpret_cast<uptr>(end_p);
379 const void *beg_p, const void *mid_p, const void *end_p) {
383 uptr end = reinterpret_cast<uptr>(end_p);
413 const void *end_p) {
415 end_p) == nullptr;
  /external/python/cpython3/Modules/
mmapmodule.c 277 const char *p, *start_p, *end_p; local
297 end_p = self->data + end;
299 for (p = (reverse ? end_p - len : start_p);
300 (p >= start_p) && (p + len <= end_p); p += sign) {
    [all...]
  /external/python/cpython2/Modules/
mmapmodule.c 273 const char *p, *start_p, *end_p; local
291 end_p = self->data + end;
293 for (p = (reverse ? end_p - len : start_p);
294 (p >= start_p) && (p + len <= end_p); p += sign) {
    [all...]

Completed in 275 milliseconds