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

12

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_tls_get_addr.h38 // If beg == 0, the chunk is unused.
40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
H A Dsanitizer_libc.cc235 bool mem_is_zero(const char *beg, uptr size) { argument
237 const char *end = beg + size;
238 uptr *aligned_beg = (uptr *)RoundUpTo((uptr)beg, sizeof(uptr));
242 for (const char *mem = beg; mem < (char*)aligned_beg && mem < end; mem++)
248 if ((char*)aligned_end >= beg)
H A Dsanitizer_posix.cc268 const char *beg = path; local
270 const char *end = internal_strchrnul(beg, ':');
271 uptr prefix_len = end - beg;
273 internal_memcpy(buffer.data(), beg, prefix_len);
281 beg = end + 1;
/external/compiler-rt/lib/asan/
H A Dasan_interface_internal.h35 uptr beg; // The address of the global. member in struct:__asan_global
82 uptr __asan_region_is_poisoned(uptr beg, uptr size);
H A Dasan_fake_stack.cc109 uptr beg = reinterpret_cast<uptr>(GetFrame(stack_size_log, 0, 0)); local
111 if (ptr < beg || ptr >= end) return 0;
112 uptr class_id = (ptr - beg) >> stack_size_log;
113 uptr base = beg + (class_id << stack_size_log);
241 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg, argument
251 if (beg) *beg = reinterpret_cast<void*>(frame_beg);
H A Dasan_poisoning.cc85 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
153 __asan_region_is_poisoned(uptr beg, uptr size) argument
272 uptr beg = reinterpret_cast<uptr>(beg_p); local
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dcontiguous_container.cc12 char *beg = new char[capacity]; local
13 char *end = beg + capacity;
14 char *mid = beg + capacity;
21 mid = beg + size;
22 __sanitizer_annotate_contiguous_container(beg, end, old_mid, mid);
25 assert(!__asan_address_is_poisoned(beg + idx));
27 assert(__asan_address_is_poisoned(beg + idx));
28 assert(__sanitizer_verify_contiguous_container(beg, mid, end));
29 if (mid != beg)
30 assert(!__sanitizer_verify_contiguous_container(beg, mi
[all...]
H A Dgc-test.cc20 void *beg, *end; local
22 __asan_addr_is_in_fake_stack(fake_stack, &var[0], &beg, &end);
24 assert((char*)beg <= (char*)&var[0]);
32 assert(beg == beg1);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store.cc15 bool sorted(CTI beg, CTI end, LESS less) { argument
16 while ((end - beg) > 2) {
17 CTI n = beg++;
18 if (less(*beg, *n))
/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 */
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-arm.cc51 static bool all_zeroes(const byte* beg, const byte* end) { argument
52 CHECK(beg);
53 CHECK(beg <= end);
54 while (beg < end) {
55 if (*beg++ != 0)
H A Dtest-macro-assembler-mips.cc50 static bool all_zeroes(const byte* beg, const byte* end) { argument
51 CHECK(beg);
52 CHECK(beg <= end);
53 while (beg < end) {
54 if (*beg++ != 0)
H A Dtest-macro-assembler-mips64.cc50 static bool all_zeroes(const byte* beg, const byte* end) { argument
51 CHECK(beg);
52 CHECK(beg <= end);
53 while (beg < end) {
54 if (*beg++ != 0)
/external/okhttp/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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inffast.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/qemu/distrib/zlib-1.2.8/
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/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/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp53 collection::const_iterator beg = m_infos.begin(); local
55 for (pos = beg; pos != end; ++pos)
58 return std::distance(beg, pos);
/external/stlport/src/
H A Dnum_put.cpp128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);
/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 */
/external/chromium_org/v8/tools/
H A Dlexer-shell.cc112 size_t beg; member in struct:TokenWithLocation
114 TokenWithLocation() : value(Token::ILLEGAL), beg(0), end(0) { }
115 TokenWithLocation(Token::Value value, size_t beg, size_t end) : argument
116 value(value), beg(beg), end(end) { }
118 return value == other.value && beg == other.beg && end == other.end;
126 static_cast<int>(beg), static_cast<int>(end));
138 int beg, end; local
140 token = scanner.Next(&beg,
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc176 const void *beg = allocator.GetBlockBegin(p); local
177 if (beg != p) return 0;
/external/libcxx/src/
H A Ddebug.cpp435 __i_node** beg = local
437 if (beg == nullptr)
444 memcpy(beg, beg_, nc/2*sizeof(__i_node*));
446 beg_ = beg;
/external/srec/portable/src/
H A DLCHAR.c172 LCHAR *beg, *end; local
177 for (beg = text; *beg != L('\0') && LISSPACE(*beg); ++beg);
178 if (beg == NULL)
181 for (end = beg; *end != L('\0') && !LISSPACE(*end); ++end);
187 rc = lstrtoi(beg, value, 10);

Completed in 3634 milliseconds

12