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

/external/compiler-rt/include/sanitizer/
H A Dasan_interface.h38 uptr beg; // The address of the global. member in struct:__asan_global
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h69 void addAddressRange(uptr beg, uptr end);
77 uptr beg; member in struct:__sanitizer::LoadedModule::AddressRange
H A Dsanitizer_symbolizer.cc34 void LoadedModule::addAddressRange(uptr beg, uptr end) { argument
36 ranges_[n_ranges_].beg = beg;
43 if (ranges_[i].beg <= address && address < ranges_[i].end)
/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 */
H A Ddeflate.c765 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/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/asan/
H A Dasan_allocator.cc308 uptr beg; member in struct:__asan::PageGroup
313 return addr >= beg && addr < end;
432 int beg = 0, end = n; local
433 while (beg < end) {
434 int med = (beg + end) / 2;
439 beg = med + 1;
445 if (beg >= n)
447 PageGroup *g = page_groups_[beg];
477 uptr offset_from_beg = addr - g->beg;
478 uptr this_chunk_addr = g->beg
[all...]
H A Dasan_rtl.cc169 // Reserve memory range [beg, end].
170 static void ReserveShadowMemoryRange(uptr beg, uptr end) { argument
171 CHECK((beg % kPageSize) == 0);
173 uptr size = end - beg + 1;
174 void *res = MmapFixedNoReserve(beg, size);
175 if (res != (void*)beg) {
H A Dasan_report.cc95 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
168 uptr beg, size; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cc88 static void ProtectRange(uptr beg, uptr end) { argument
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);
/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h294 template <typename CB> CB scanReachableSymbols(const SVal *beg,
298 scanReachableSymbols(const MemRegion * const *beg,
760 CB ProgramState::scanReachableSymbols(const SVal *beg, const SVal *end) const { argument
762 scanReachableSymbols(beg, end, cb);
767 CB ProgramState::scanReachableSymbols(const MemRegion * const *beg, argument
770 scanReachableSymbols(beg, end, cb);
/external/mksh/src/
H A Deval.c341 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
[all...]
H A Dsh.h1274 char *end, *beg; /* end, begin of string */ member in struct:XString
1285 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \
1286 (xs).end = (xs).beg + (xs).len; \
1290 (xp) = (xs).beg; \
1307 #define Xfree(xs, xp) afree((xs).beg, (xs).areap)
1310 #define Xclose(xs, xp) aresize((xs).beg, (xp) - (xs).beg, (xs).areap)
1313 #define Xstring(xs, xp) ((xs).beg)
1316 #define Xlength(xs, xp) ((xp) - (xs).beg)
1317 #define Xsize(xs, xp) ((xs).end - (xs).beg)
1329 void **beg, **end; /* begin, end of vector */ member in struct:XPtrV
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp1922 unsigned numDataArgs, const char *beg, bool hasVAListArg,
1928 Beg(beg), HasVAListArg(hasVAListArg),
2303 const char *beg, bool hasVAListArg,
2308 numDataArgs, beg, hasVAListArg, Args, NumArgs,
2829 unsigned numDataArgs, const char *beg, bool hasVAListArg,
2834 numDataArgs, beg, hasVAListArg,
1920 CheckFormatHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, const char *beg, bool hasVAListArg, Expr **args, unsigned numArgs, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType callType) argument
2300 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, bool isObjC, const char *beg, bool hasVAListArg, Expr **Args, unsigned NumArgs, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType CallType) argument
2827 CheckScanfHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, const char *beg, bool hasVAListArg, Expr **Args, unsigned NumArgs, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType CallType) argument
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp5380 int beg, end; // under mu member in namespace:test112
5391 b = beg;
5419 beg = b;
/external/valgrind/unittest/
H A Dracecheck_unittest.cc5050 int beg, end; // under mu member in namespace:test112
5061 b = beg;
5089 beg = b;
7813 long beg = i % (kArrayLen - len); local
7814 long end = beg + len;
7815 CHECK(beg < kArrayLen);
7819 P = X + beg + pos;
7822 // i, beg, end, pos, is_expected);
7827 ANNOTATE_BENIGN_RACE_SIZED(X + beg, len, "");

Completed in 916 milliseconds