HomeSort by relevance Sort by last modified time
    Searched refs:beg (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/compiler-rt/lib/asan/
asan_poisoning.cc 85 ShadowSegmentEndpoint beg(beg_addr);
87 if (beg.chunk == end.chunk) {
88 CHECK(beg.offset < end.offset);
89 s8 value = beg.value;
94 if (beg.offset > 0) {
95 *beg.chunk = Min(value, beg.offset);
97 *beg.chunk = kAsanUserPoisonedMemoryMagic;
102 CHECK(beg.chunk < end.chunk);
103 if (beg.offset > 0)
    [all...]
asan_globals.cc 44 PoisonShadow(g.beg + g_aligned_size,
51 PoisonShadowPartialRightRedzone(g.beg + g_aligned_down_size,
70 Report("Search Global: beg=%p size=%zu name=%s\n",
71 (void*)g.beg, g.size, (char*)g.name);
83 Report("Added Global: beg=%p size=%zu/%zu name=%s dyn.init=%zu\n",
84 (void*)g->beg, g->size, g->size_with_redzone, g->name,
87 CHECK(AddrIsInMem(g->beg));
88 CHECK(AddrIsAlignedByGranularity(g->beg));
107 CHECK(AddrIsInMem(g->beg));
108 CHECK(AddrIsAlignedByGranularity(g->beg));
    [all...]
asan_report.cc 95 for (uptr p = g.beg; p < g.beg + g.size - 1; p++) {
98 if (*(char*)(g.beg + g.size - 1) != 0) return;
99 Printf(" '%s' is ascii string '%s'\n", g.name, (char*)g.beg);
103 if (addr < g.beg - kGlobalAndStackRedzone) return false;
104 if (addr >= g.beg + g.size_with_redzone) return false;
106 if (addr < g.beg) {
107 Printf("%zd bytes to the left", g.beg - addr);
108 } else if (addr >= g.beg + g.size) {
109 Printf("%zd bytes to the right", addr - (g.beg + g.size))
168 uptr beg, size; local
    [all...]
asan_rtl.cc 169 // Reserve memory range [beg, end].
170 static void ReserveShadowMemoryRange(uptr beg, uptr end) {
171 CHECK((beg % kPageSize) == 0);
173 uptr size = end - beg + 1;
174 void *res = MmapFixedNoReserve(beg, size);
175 if (res != (void*)beg) {
  /external/v8/src/arm/
cpu-arm.cc 74 register uint32_t beg asm("a1") = reinterpret_cast<uint32_t>(start);
83 : "=r" (beg)
84 : "0" (beg), "r" (end), "r" (flg), "r" (scno));
102 : "=r" (beg)
103 : "0" (beg), "r" (end), "r" (flg), "r" (__ARM_NR_cacheflush)
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 32 private int beg; field in class:DistinguishedNameParser
57 beg = pos;
92 if ((end - beg > 4) && (chars[beg + 3] == '.')
93 && (chars[beg] == 'O' || chars[beg] == 'o')
94 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
95 && (chars[beg + 2] == 'D' || chars[beg + 2] == 'd'))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 47 private int beg; field in class:DNParser
81 beg = pos;
118 if ((end - beg > 4) && (chars[beg + 3] == '.')
119 && (chars[beg] == 'O' || chars[beg] == 'o')
120 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
121 && (chars[beg + 2] == 'D' || chars[beg + 2] == 'd'))
    [all...]
  /external/astl/include/
streambuf 110 void setp(char_type* beg, char_type* end) {
111 if (end >= beg) {
112 mPutBeg = mPutCurr = beg;
  /ndk/sources/host-tools/make-3.81/
expand.c 248 register char *beg = p + 1;
265 end = strchr (beg, closeparen);
269 p1 = lindex (beg, end, '$');
272 /* BEG now points past the opening paren or brace.
275 for (p = beg; *p != '\0'; ++p)
287 beg = expand_argument (beg, p); /* Expand the name. */
288 free_beg = 1; /* Remember to free BEG when finished. */
289 end = strchr (beg, '\0');
302 colon = lindex (beg, end, ':')
246 register char *beg = p + 1; local
    [all...]
  /external/oprofile/include/
sstream 150 char_type* beg = stream;
169 if (way == ios::beg)
171 newoffi = beg - curi;
172 newoffo = beg - curo;
180 if (testin && newoffi + off + curi - beg >= 0 &&
181 endi - beg >= newoffi + off + curi - beg)
186 if (testout && newoffo + off + curo - beg >= 0 &&
187 endo - beg >= newoffo + off + curo - beg)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 69 void addAddressRange(uptr beg, uptr end);
77 uptr beg; member in struct:__sanitizer::LoadedModule::AddressRange
sanitizer_symbolizer.cc 34 void LoadedModule::addAddressRange(uptr beg, uptr end) {
36 ranges_[n_ranges_].beg = beg;
43 if (ranges_[i].beg <= address && address < ranges_[i].end)
  /external/srec/portable/src/
LCHAR.c 160 LCHAR *beg, *end; local
165 for (beg = text; *beg != L('\0') && LISSPACE(*beg); ++beg);
166 if (beg == NULL)
169 for (end = beg; *end != L('\0') && !LISSPACE(*end); ++end);
175 rc = lstrtoi(beg, value, 10);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 88 static void ProtectRange(uptr beg, uptr end) {
90 CHECK_LE(beg, end);
91 if (beg == end)
93 if (beg != (uptr)Mprotect(beg, end - beg)) {
94 TsanPrintf("FATAL: ThreadSanitizer can not protect [%zx,%zx]\n", beg, end);
  /development/ide/emacs/
android-compile.el 117 (let ((beg (car android-compile-context))
120 (goto-char beg)
  /external/stlport/test/unit/
stack_allocator.h 33 State(char *beg, char *end)
34 : m_beg(beg), m_end(end), m_cur(m_beg), m_isOk(true), m_swaped(false), m_nbAlloc(0),
68 StackAllocator(char *beg, char *end)
69 : m_state(beg, end) {}
  /ndk/tests/device/test-gnustl-full/unit/
stack_allocator.h 33 State(char *beg, char *end)
34 : m_beg(beg), m_end(end), m_cur(m_beg), m_isOk(true), m_swaped(false), m_nbAlloc(0),
68 StackAllocator(char *beg, char *end)
69 : m_state(beg, end) {}
  /ndk/tests/device/test-stlport/unit/
stack_allocator.h 33 State(char *beg, char *end)
34 : m_beg(beg), m_end(end), m_cur(m_beg), m_isOk(true), m_swaped(false), m_nbAlloc(0),
68 StackAllocator(char *beg, char *end)
69 : m_state(beg, end) {}
  /external/mksh/src/
eval.c 341 char *beg, *end, *str; local
345 end = (beg = wdcopy(sp, ATEMP)) +
348 if (end < wdscan(beg, EOS))
350 str = snptreef(NULL, 64, "%S", beg);
351 afree(beg, ATEMP);
382 char *beg, *mid, *end, *stg; local
385 beg = wdcopy(sp, ATEMP);
386 mid = beg + (wdscan(sp, ADELIM) - sp);
387 stg = beg + (wdscan(sp, CSUBST) - sp);
392 sp += mid - beg - 1
    [all...]
  /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);
  /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 765 uInt beg = s->pending; /* start of bytes to update crc */ local
769 if (s->gzhead->hcrc && s->pending > beg)
770 strm->adler = crc32(strm->adler, s->pending_buf + beg,
771 s->pending - beg);
773 beg = s->pending;
780 if (s->gzhead->hcrc && s->pending > beg)
781 strm->adler = crc32(strm->adler, s->pending_buf + beg,
782 s->pending - beg);
793 uInt beg = s->pending; /* start of bytes to update crc */ local
798 if (s->gzhead->hcrc && s->pending > beg)
824 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/hyphenation/
substrings.pl 33 $beg = $3;
43 $replbeg{$pat} = $beg - 1;
  /external/stlport/src/
num_put.cpp 128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);

Completed in 661 milliseconds

1 2 3 4 5