Searched defs:beg (Results 1 - 25 of 37) sorted by relevance

12

/external/compiler-rt/lib/asan/
H A Dasan_interface_internal.h38 uptr beg; // The address of the global. member in struct:__asan_global
91 uptr __asan_region_is_poisoned(uptr beg, uptr size)
H A Dasan_poisoning.cc75 ShadowSegmentEndpoint beg(beg_addr);
77 if (beg.chunk == end.chunk) {
78 CHECK(beg.offset < end.offset);
79 s8 value = beg.value;
84 if (beg.offset > 0) {
85 *beg.chunk = Min(value, beg.offset);
87 *beg.chunk = kAsanUserPoisonedMemoryMagic;
92 CHECK(beg.chunk < end.chunk);
93 if (beg
145 __asan_region_is_poisoned(uptr beg, uptr size) argument
[all...]
H A Dasan_rtl.cc222 // Reserve memory range [beg, end].
223 static void ReserveShadowMemoryRange(uptr beg, uptr end) { argument
224 CHECK_EQ((beg % GetPageSizeCached()), 0);
226 uptr size = end - beg + 1;
227 void *res = MmapFixedNoReserve(beg, size);
228 if (res != (void*)beg) {
H A Dasan_interceptors.cc30 static inline bool QuickCheckForUnpoisonedRegion(uptr beg, uptr size) { argument
33 return !AddressIsPoisoned(beg) &&
34 !AddressIsPoisoned(beg + size - 1) &&
35 !AddressIsPoisoned(beg + size / 2);
/external/chromium_org/third_party/zlib/
H A Dinffast.c75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
102 beg = out - (start - strm->avail_out);
186 op = (unsigned)(out - beg); /* max distance in output */
H A Ddeflate.c690 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/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java30 private int beg; field in class:DistinguishedNameParser
58 beg = pos;
93 if ((end - beg > 4) && (chars[beg + 3] == '.')
94 && (chars[beg] == 'O' || chars[beg] == 'o')
95 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
96 && (chars[beg + 2] == 'D' || chars[beg
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.c75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
102 beg = out - (start - strm->avail_out);
186 op = (unsigned)(out - beg); /* max distance in output */
H A Ddeflate.c654 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/contrib/masmx64/
H A Dinffas8664.c89 /* 40 20 */ unsigned char FAR *beg; /* inflate()'s init next_out */ member in struct:inffast_ar
130 ar.beg = ar.out - (start - strm->avail_out);
/external/zlib/src/
H A Dinffast.c75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
102 beg = out - (start - strm->avail_out);
186 op = (unsigned)(out - beg); /* max distance in output */
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h90 void addAddressRange(uptr beg, uptr end);
98 uptr beg; member in struct:__sanitizer::LoadedModule::AddressRange
H A Dsanitizer_libc.cc209 bool mem_is_zero(const char *beg, uptr size) { argument
211 const char *end = beg + size;
212 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
216 for (const char *mem = beg; mem < (char*)aligned_beg && mem < end; mem++)
222 if ((char*)aligned_end >= beg)
H A Dsanitizer_symbolizer_libcdep.cc35 void LoadedModule::addAddressRange(uptr beg, uptr end) { argument
37 ranges_[n_ranges_].beg = beg;
44 if (ranges_[i].beg <= address && address < ranges_[i].end)
/external/stlport/src/
H A Dnum_put.cpp128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);
H A Dios.cpp78 const ios_base::seekdir ios_base::beg; member in class:ios_base
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c84 /* 40 20 */ unsigned char FAR *beg; /* inflate()'s init next_out */ member in struct:inffast_ar
113 ar.beg = ar.out - (start - strm->avail_out);
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
311 " cmpq %%rdi, 40(%%rsp)\n" /* if out == beg, outside window */
607 " subl 20(%%esp), %%eax\n" /* nbytes = out - beg */
639 " je .L_check_window\n" /* out == beg, if outside window */
934 sub eax, [esp+20] /* nbytes = out - beg */
966 je L_check_window /* out == beg, if outside window */
H A Dinffast.S178 #define beg 40 /* unsigned char* */ define
245 * beg = out - (start - strm->avail_out);
269 movl %ebp, beg(%esp)
614 * nbytes = out - beg;
625 subl beg(%esp), %eax /* nbytes = out - beg */
652 cmpl out_r, beg(%esp)
1004 subl beg(%esp), %eax /* nbytes = out - beg */
1032 cmpl out_r, beg(
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc113 const void *beg = allocator.GetBlockBegin(p); local
114 if (beg != p)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_java.cc212 BlockDesc *beg = getblock(ptr); local
214 for (BlockDesc *b = beg; b != end; b++) {
H A Dtsan_platform_linux.cc151 static void ProtectRange(uptr beg, uptr end) { argument
153 CHECK_LE(beg, end);
154 if (beg == end)
156 if (beg != (uptr)Mprotect(beg, end - beg)) {
157 Printf("FATAL: ThreadSanitizer can not protect [%zx,%zx]\n", beg, end);
/external/srec/portable/src/
H A DLCHAR.c160 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/stlport/test/unit/
H A Dstack_allocator.h33 State(char *beg, char *end) argument
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) argument
69 : m_state(beg, end) {}
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc213 void *beg = a->GetBlockBegin(x); local
215 // fprintf(stderr, "[%zd] %p %p\n", i, x, beg);
216 EXPECT_EQ(x, beg);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h314 template <typename CB> CB scanReachableSymbols(const SVal *beg,
318 scanReachableSymbols(const MemRegion * const *beg,
783 CB ProgramState::scanReachableSymbols(const SVal *beg, const SVal *end) const { argument
785 scanReachableSymbols(beg, end, cb);
790 CB ProgramState::scanReachableSymbols(const MemRegion * const *beg, argument
793 scanReachableSymbols(beg, end, cb);

Completed in 604 milliseconds

12