HomeSort by relevance Sort by last modified time
    Searched defs:beg (Results 26 - 50 of 68) sorted by null

12 3

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 213 void *beg = a->GetBlockBegin(x); local
215 // fprintf(stderr, "[%zd] %p %p\n", i, x, beg);
216 EXPECT_EQ(x, beg);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 168 const_iterator beg = map().begin(); local
171 while (beg != end)
173 if (beg->second.first == label)
174 log_to_string(found, *beg);
175 ++beg;
241 base_type::const_iterator beg = __b.map().begin(); local
243 for (; beg != end; ++beg)
244 __b.log_to_string(error, *beg);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
throw_allocator.h 160 const_iterator beg = map().begin(); local
163 while (beg != end)
165 if (beg->second.first == label)
166 log_to_string(found, *beg);
167 ++beg;
233 base_type::const_iterator beg = __b.map().begin(); local
235 for (; beg != end; ++beg)
236 __b.log_to_string(error, *beg);
  /external/chromium_org/third_party/zlib/
deflate.c 690 uInt beg = s->pending; /* start of bytes to update crc */ local
694 if (s->gzhead->hcrc && s->pending > beg)
695 strm->adler = crc32(strm->adler, s->pending_buf + beg,
696 s->pending - beg);
698 beg = s->pending;
705 if (s->gzhead->hcrc && s->pending > beg)
706 strm->adler = crc32(strm->adler, s->pending_buf + beg,
707 s->pending - beg);
718 uInt beg = s->pending; /* start of bytes to update crc */ local
723 if (s->gzhead->hcrc && s->pending > beg)
749 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/compiler-rt/lib/asan/
asan_report.cc 192 for (uptr p = g.beg; p < g.beg + g.size - 1; p++) {
196 if (*(char*)(g.beg + g.size - 1) != '\0') return;
198 MaybeDemangleGlobalName(g.name), (char*)g.beg);
204 if (addr <= g.beg - kMinimalDistanceFromAnotherGlobal) return false;
205 if (addr >= g.beg + g.size_with_redzone) return false;
208 if (addr < g.beg) {
209 Printf("%p is located %zd bytes to the left", (void*)addr, g.beg - addr);
210 } else if (addr + size > g.beg + g.size) {
211 if (addr < g.beg + g.size
314 s64 beg, size; local
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 417 uptr beg = x & ~3UL; // align down. local
422 if (beg & 7ULL) {
423 *(u32*)beg = origin;
424 beg += 4;
426 for (uptr addr = beg; addr < (end & ~7UL); addr += 8)
msan_interceptors.cc 1123 uptr beg = d & ~3UL; \/\/ align down. local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.c 654 uInt beg = s->pending; /* start of bytes to update crc */ local
658 if (s->gzhead->hcrc && s->pending > beg)
659 strm->adler = crc32(strm->adler, s->pending_buf + beg,
660 s->pending - beg);
662 beg = s->pending;
669 if (s->gzhead->hcrc && s->pending > beg)
670 strm->adler = crc32(strm->adler, s->pending_buf + beg,
671 s->pending - beg);
682 uInt beg = s->pending; /* start of bytes to update crc */ local
687 if (s->gzhead->hcrc && s->pending > beg)
713 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/zlib/src/
deflate.c 767 uInt beg = s->pending; /* start of bytes to update crc */ local
771 if (s->gzhead->hcrc && s->pending > beg)
772 strm->adler = crc32(strm->adler, s->pending_buf + beg,
773 s->pending - beg);
775 beg = s->pending;
782 if (s->gzhead->hcrc && s->pending > beg)
783 strm->adler = crc32(strm->adler, s->pending_buf + beg,
784 s->pending - beg);
795 uInt beg = s->pending; /* start of bytes to update crc */ local
800 if (s->gzhead->hcrc && s->pending > beg)
826 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /ndk/sources/host-tools/make-3.81/
variable.c 1234 register char *beg; local
    [all...]
  /external/mksh/src/
eval.c 352 char *beg, *end, *str; local
356 end = (beg = wdcopy(sp, ATEMP)) +
359 if (end < wdscan(beg, EOS))
361 str = snptreef(NULL, 64, "%S", beg);
362 afree(beg, ATEMP);
399 char *beg, *end; local
403 beg = wdcopy(sp, ATEMP);
404 end = beg + (wdscan(sp, CSUBST) - sp);
406 end = wdstrip(beg, 0);
407 afree(beg, ATEMP)
429 char *beg, *mid, *end, *stg; local
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 455 int beg = 0; local
456 int end = oid.indexOf('.', beg);
458 int comp = Integer.parseInt(oid.substring(beg, end));
459 beg = end + 1;
463 end = oid.indexOf('.', beg);
464 comp = Integer.parseInt(oid.substring(beg, end));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
ios_base.h 397 * - beg
404 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
ios_base.h 391 * - beg
398 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
ios_base.h 391 * - beg
398 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 397 * - beg
404 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 397 * - beg
404 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 397 * - beg
404 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
ios_base.h 397 * - beg
404 static const seekdir beg = _S_beg; member in class:ios_base
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
ios_base.h 391 * - beg
398 static const seekdir beg = _S_beg; member in class:ios_base

Completed in 3488 milliseconds

12 3