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

1 2 3 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
io.hpp 40 char_type const* const beg = reinterpret_cast<char_type const* const>( str.begin() ); local
42 os << std::basic_string<char_type>( beg, end - beg );
53 CharT1 const* const beg = reinterpret_cast<CharT1 const*>( str.begin() ); // !!
55 os << std::basic_string<CharT1,Tr>( beg, end - beg );
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.h 38 // If beg == 0, the chunk is unused.
40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
sanitizer_posix.cc 268 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/
asan_interface_internal.h 35 uptr beg; // The address of the global. member in struct:__asan_global
82 uptr __asan_region_is_poisoned(uptr beg, uptr size);
asan_fake_stack.cc 109 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,
251 if (beg) *beg = reinterpret_cast<void*>(frame_beg);
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)
272 uptr beg = reinterpret_cast<uptr>(beg_p); local
    [all...]
  /external/compiler-rt/test/asan/TestCases/
contiguous_container.cc 12 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, mid - 1, end))
    [all...]
gc-test.cc 20 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/stlport/src/
num_put.cpp 128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);
  /external/chromium_org/third_party/zlib/
inffast.c 75 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/
DWARFDebugInfoEntry.cpp 53 collection::const_iterator beg = m_infos.begin(); local
55 for (pos = beg; pos != end; ++pos)
58 return std::distance(beg, pos);
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inffast.c 75 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/
inffast.c 75 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/
inffas8664.c 89 /* 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/
inffast.c 75 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/tools/
lexer-shell.cc 111 size_t beg; member in struct:TokenWithLocation
113 TokenWithLocation() : value(Token::ILLEGAL), beg(0), end(0) { }
114 TokenWithLocation(Token::Value value, size_t beg, size_t end) :
115 value(value), beg(beg), end(end) { }
117 return value == other.value && beg == other.beg && end == other.end;
125 static_cast<int>(beg), static_cast<int>(end));
139 int beg, end; local
141 token = scanner.Next(&beg, &end)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 30 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 + 2] == 'd'))
    [all...]
  /external/srec/portable/src/
LCHAR.c 172 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);
  /external/zlib/src/contrib/inflate86/
inffas86.c 84 /* 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 */
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 35 private int beg; field in class:DistinguishedNameParser
63 beg = pos;
98 if ((end - beg > 4) && (chars[beg + 3] == '.')
99 && (chars[beg] == 'O' || chars[beg] == 'o')
100 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
101 && (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/compiler-rt/lib/msan/
msan_allocator.cc 176 const void *beg = allocator.GetBlockBegin(p); local
177 if (beg != p) return 0;
  /external/libcxx/src/
debug.cpp 435 __i_node** beg = local
437 if (beg == nullptr)
444 memcpy(beg, beg_, nc/2*sizeof(__i_node*));
446 beg_ = beg;
  /external/smack/src/org/apache/harmony/javax/security/auth/
PrivateCredentialPermission.java 134 int beg = name.indexOf(' '); local
135 if (beg == -1) {
138 credentialClass = name.substring(0, beg);
141 beg++;
144 for (int i, j = 0; beg < nameLength; beg = j + 2, count++) {
145 i = name.indexOf(' ', beg);
158 beg = name.indexOf(' ');
159 beg++;
166 for (int index = 0, i, j; index < count; beg = j + 2, index++)
    [all...]

Completed in 1071 milliseconds

1 2 3 4