Searched refs:beg (Results 76 - 100 of 102) sorted by relevance

12345

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h313 template <typename CB> CB scanReachableSymbols(const SVal *beg,
317 scanReachableSymbols(const MemRegion * const *beg,
780 CB ProgramState::scanReachableSymbols(const SVal *beg, const SVal *end) const { argument
782 scanReachableSymbols(beg, end, cb);
787 CB ProgramState::scanReachableSymbols(const MemRegion * const *beg, argument
790 scanReachableSymbols(beg, end, cb);
/external/zlib/src/contrib/inflate86/
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...]
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/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp131 uint32_t beg, end, id; local
142 for (id = beg; id <= end; ++id)
148 if (Arg.getAsInteger(0, beg))
155 if (Arg.getAsInteger(0, beg))
157 wp_ids.push_back(beg);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h485 void addAddressRange(uptr beg, uptr end, bool executable);
492 uptr address_range_start(int i) const { return ranges_[i].beg; }
498 uptr beg;
H A Dsanitizer_common_interceptors.inc3858 COMMON_INTERCEPTOR_INITIALIZE_RANGE((void *)dtv->beg, dtv->size);
/external/stlport/src/details/
H A Dfstream_win32io.cpp552 case ios_base::beg:
608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) {
H A Dfstream_stdio.cpp347 case ios_base::beg:
H A Dfstream_unistd.cpp291 case ios_base::beg:
/external/chromium_org/third_party/angle/samples/dds_to_header/
H A Dmain.cpp34 readFile.seekg(0, std::ios::beg);
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc28 static inline bool QuickCheckForUnpoisonedRegion(uptr beg, uptr size) { argument
31 return !AddressIsPoisoned(beg) &&
32 !AddressIsPoisoned(beg + size - 1) &&
33 !AddressIsPoisoned(beg + size / 2);
/external/stlport/src/
H A Dios.cpp78 const ios_base::seekdir ios_base::beg; member in class:ios_base
/external/mksh/src/
H A Dmisc.c116 const char *old_beg = xsp->beg;
122 xsp->beg = aresize(xsp->beg, (xsp->len += more) + X_EXTRA, xsp->areap);
123 xsp->end = xsp->beg + xsp->len;
124 return (xsp->beg + (xp - old_beg));
1520 /* assert: xp == xs.beg => start of path */
H A Dexpr.c922 unsigned short beg; member in struct:mb_ucsrange
1165 if (val < arr[min].beg || val > arr[max - 1].end)
1171 if (val < arr[mid].beg)
/external/stlport/stlport/stl/
H A D_fstream.c304 if (__whence == ios_base::beg || __whence == ios_base::end)
391 if (__off != -1 && _M_base._M_seek(__off, ios_base::beg) != -1) {
H A D_ios_base.h102 _STLP_STATIC_CONSTANT(int, beg = 0x01);
H A D_sstream.c316 case ios_base::beg:
/external/zlib/src/contrib/masmx64/
H A Dinffasx64.asm192 sub rax, [rsp+40] ; /* nbytes = out - beg */
221 cmp [rsp+40], rdi ; /* if out == beg, outside window */
/external/lldb/scripts/
H A Ddisasm-gdb-remote.pl2231 my $beg = index($line, '("') + 2;
2234 dump_command(substr($line, $beg, $end - $beg));
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc214 void *beg = a->GetBlockBegin(x); local
216 // fprintf(stderr, "[%zd] %p %p\n", i, x, beg);
217 EXPECT_EQ(x, beg);
/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/clang/lib/Sema/
H A DSemaChecking.cpp2303 unsigned numDataArgs, const char *beg, bool hasVAListArg,
2310 Beg(beg), HasVAListArg(hasVAListArg),
2701 const char *beg, bool hasVAListArg,
2707 numDataArgs, beg, hasVAListArg, Args,
3352 unsigned numDataArgs, const char *beg, bool hasVAListArg,
3358 numDataArgs, beg, hasVAListArg,
2301 CheckFormatHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, const char *beg, bool hasVAListArg, ArrayRef<const Expr *> Args, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType callType, llvm::SmallBitVector &CheckedVarArgs) argument
2698 CheckPrintfHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, bool isObjC, const char *beg, bool hasVAListArg, ArrayRef<const Expr *> Args, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType CallType, llvm::SmallBitVector &CheckedVarArgs) argument
3350 CheckScanfHandler(Sema &s, const StringLiteral *fexpr, const Expr *origFormatExpr, unsigned firstDataArg, unsigned numDataArgs, const char *beg, bool hasVAListArg, ArrayRef<const Expr *> Args, unsigned formatIdx, bool inFunctionCall, Sema::VariadicCallType CallType, llvm::SmallBitVector &CheckedVarArgs) 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/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp2481 fstr.seekg(0, std::ios::beg);
/external/clang/lib/Serialization/
H A DASTReader.cpp7868 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
7870 return SourceRange(beg, end);

Completed in 1629 milliseconds

12345