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

1 2 3 4 5 6 7

  /external/compiler-rt/lib/asan/
asan_poisoning.cc 75 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.offset > 0)
    [all...]
asan_globals.cc 49 FastPoisonShadow(g->beg, g->size_with_redzone, value);
54 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size,
58 g.beg + RoundDownTo(g.size, SHADOW_GRANULARITY),
66 Report("%s Global: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu\n",
67 prefix, (void*)g.beg, g.size, g.size_with_redzone, g.name,
92 CHECK(AddrIsInMem(g->beg));
93 CHECK(AddrIsAlignedByGranularity(g->beg));
116 CHECK(AddrIsInMem(g->beg));
117 CHECK(AddrIsAlignedByGranularity(g->beg));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/
seekdir.pass.cpp 14 // static const seekdir beg;
23 assert(std::ios_base::beg != std::ios_base::cur);
24 assert(std::ios_base::beg != std::ios_base::end);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubseekoff.pass.cpp 32 assert(t.pubseekoff(0, std::ios_base::beg) == -1);
33 assert(t.pubseekoff(0, std::ios_base::beg, std::ios_base::app) == -1);
  /external/chromium_org/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)
  /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)
  /external/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...]
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 32 private int beg; field in class:DistinguishedNameParser
60 beg = pos;
95 if ((end - beg > 4) && (chars[beg + 3] == '.')
96 && (chars[beg] == 'O' || chars[beg] == 'o')
97 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
98 && (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...]
  /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/tests/
sanitizer_libc_test.cc 39 for (size_t beg = 0; beg < size; beg++) {
40 for (size_t end = beg; end < size; end++) {
41 // fprintf(stderr, "pos %zd beg %zd end %zd \n", pos, beg, end);
42 if (beg <= pos && pos < end)
43 EXPECT_FALSE(__sanitizer::mem_is_zero(x + beg, end - beg));
45 EXPECT_TRUE(__sanitizer::mem_is_zero(x + beg, end - beg))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
seekp2.pass.cpp 36 assert(way == std::ios_base::beg);
46 assert(&os.seekp(5, std::ios_base::beg) == &os);
52 assert(&os.seekp(10, std::ios_base::beg) == &os);
55 assert(&os.seekp(-1, std::ios_base::beg) == &os);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
seekoff.pass.cpp 25 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == -1);
28 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in | std::ios_base::out) == -1);
31 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in) == 3);
41 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in) == 3);
44 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out | std::ios_base::in) == 3);
47 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == 3);
  /external/clang/tools/clang-format/
clang-format.el 21 (let ((beg (if mark-active
27 (clang-format beg end)))
  /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...]
  /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/chromium_org/v8/test/cctest/
test-macro-assembler-mips.cc 49 static bool all_zeroes(const byte* beg, const byte* end) {
50 CHECK(beg);
51 CHECK(beg <= end);
52 while (beg < end) {
53 if (*beg++ != 0)
  /external/chromium_org/v8/tools/
lexer-shell.cc 147 size_t beg; member in struct:TokenWithLocation
149 TokenWithLocation() : value(Token::ILLEGAL), beg(0), end(0) { }
150 TokenWithLocation(Token::Value value, size_t beg, size_t end) :
151 value(value), beg(beg), end(end) { }
153 return value == other.value && beg == other.beg && end == other.end;
161 static_cast<int>(beg), static_cast<int>(end));
175 int beg, end; local
177 token = scanner.Next(&beg, &end)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
seekoff.pass.cpp 25 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == -1);
28 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in | std::ios_base::out) == -1);
31 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in) == 3);
40 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in) == -1);
43 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out | std::ios_base::in) == -1);
46 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == 3);
58 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::in) == 3);
64 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out | std::ios_base::in) == 3);
73 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == 3);
85 assert(sb.pubseekoff(3, std::ios_base::beg, std::ios_base::out) == -1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringstream.cons/
move2.pass.cpp 33 vecis[n].seekg(0, std::ios_base::beg);
  /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 90 void addAddressRange(uptr beg, uptr end);
98 uptr beg; member in struct:__sanitizer::LoadedModule::AddressRange
  /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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 30 f.pubseekoff(1, std::ios_base::beg);
45 f.pubseekoff(1, std::ios_base::beg);
move_assign.pass.cpp 31 f.pubseekoff(1, std::ios_base::beg);
46 f.pubseekoff(1, std::ios_base::beg);

Completed in 1830 milliseconds

1 2 3 4 5 6 7