Home
last modified time | relevance | path

Searched refs:beg (Results 1 – 25 of 44) sorted by relevance

12

/external/v8/src/arm/
Dcpu-arm.cc74 register uint32_t beg asm("a1") = reinterpret_cast<uint32_t>(start); in FlushICache()
83 : "=r" (beg) in FlushICache()
84 : "0" (beg), "r" (end), "r" (flg), "r" (scno)); in FlushICache()
102 : "=r" (beg) in FlushICache()
103 : "0" (beg), "r" (end), "r" (flg), "r" (__ARM_NR_cacheflush) in FlushICache()
/external/srec/portable/src/
DLCHAR.c160 LCHAR *beg, *end; in LCHARGetInt() local
165 for (beg = text; *beg != L('\0') && LISSPACE(*beg); ++beg); in LCHARGetInt()
166 if (beg == NULL) in LCHARGetInt()
169 for (end = beg; *end != L('\0') && !LISSPACE(*end); ++end); in LCHARGetInt()
175 rc = lstrtoi(beg, value, 10); in LCHARGetInt()
/external/oprofile/include/
Dsstream150 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)
199 pos_type ret = seekoff(sp, ios::beg, which);
/external/mksh/src/
Dsh.h1186 char *end, *beg; /* end, begin of string */ member
1197 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \
1198 (xs).end = (xs).beg + (xs).len; \
1202 (xp) = (xs).beg; \
1219 #define Xfree(xs, xp) afree((xs).beg, (xs).areap)
1222 #define Xclose(xs, xp) aresize((xs).beg, (xp) - (xs).beg, (xs).areap)
1225 #define Xstring(xs, xp) ((xs).beg)
1228 #define Xlength(xs, xp) ((xp) - (xs).beg)
1229 #define Xsize(xs, xp) ((xs).end - (xs).beg)
1230 #define Xsavepos(xs, xp) ((xp) - (xs).beg)
[all …]
Deval.c326 char *beg, *end, *str; in expand() local
330 end = (beg = wdcopy(sp, ATEMP)) + in expand()
333 if (end < wdscan(beg, EOS)) in expand()
335 str = snptreef(NULL, 64, "%S", beg); in expand()
336 afree(beg, ATEMP); in expand()
362 char *beg, *mid, *end, *stg; in expand() local
365 beg = wdcopy(sp, ATEMP); in expand()
366 mid = beg + (wdscan(sp, ADELIM) - sp); in expand()
367 stg = beg + (wdscan(sp, CSUBST) - sp); in expand()
372 sp += mid - beg - 1; in expand()
[all …]
Dmisc.c87 const char *old_beg = xsp->beg; in Xcheck_grow_()
90 xsp->beg = aresize(xsp->beg, xsp->len + 8, xsp->areap); in Xcheck_grow_()
91 xsp->end = xsp->beg + xsp->len; in Xcheck_grow_()
92 return (xsp->beg + (xp - old_beg)); in Xcheck_grow_()
/external/qemu/distrib/zlib-1.2.3/
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)
[all …]
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/
Ddeflate.c684 uInt beg = s->pending; /* start of bytes to update crc */ local
688 if (s->gzhead->hcrc && s->pending > beg)
689 strm->adler = crc32(strm->adler, s->pending_buf + beg,
690 s->pending - beg);
692 beg = s->pending;
699 if (s->gzhead->hcrc && s->pending > beg)
700 strm->adler = crc32(strm->adler, s->pending_buf + beg,
701 s->pending - beg);
712 uInt beg = s->pending; /* start of bytes to update crc */ local
717 if (s->gzhead->hcrc && s->pending > beg)
[all …]
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/stlport/test/unit/
Dstack_allocator.h33 State(char *beg, char *end) in State()
34 : m_beg(beg), m_end(end), m_cur(m_beg), m_isOk(true), m_swaped(false), m_nbAlloc(0), in State()
68 StackAllocator(char *beg, char *end) in StackAllocator()
69 : m_state(beg, end) {} in StackAllocator()
Dfstream_test.cpp164 f.seekg( 0, ios_base::beg ); in io()
200 f.seekg( 0, ios_base::beg ); in err()
254 is.seekg( p, ios_base::beg ); in tellg()
349 ss.seekg( 0, ios_base::beg ); in buf()
476 off = s.rdbuf()->pubseekoff(0, ios_base::beg); in seek()
496 ss.seekg( 0, ios_base::beg ); in rdbuf()
892 f.seekg( 0, ios_base::beg ); in null_buf()
Dsstream_test.cpp391 s.seekg( 6, ios::beg ); in seek()
398 is.seekg( 6, ios::beg ); in seek()
414 s.seekp( 0, ios::beg ); in seekp()
431 ss.seekg( 0, ios::beg ); in seek_gp()
/external/zlib/contrib/masmx64/
Dinffas8664.c89 /* 40 20 */ unsigned char FAR *beg; /* inflate()'s init next_out */ member
130 ar.beg = ar.out - (start - strm->avail_out);
/external/stlport/src/
Dnum_put.cpp128 char* beg = __write_integer_backward(bufend, flags, x); in __write_integer() local
129 return copy(beg, bufend, buf); in __write_integer()
Dstrstream.cpp199 (dir == ios_base::beg || dir == ios_base::end)) in seekoff()
216 case ios_base::beg: in seekoff()
257 return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode); in seekpos()
Dstdio_streambuf.cpp80 case ios_base::beg: in seekoff()
/external/clang/include/clang/Analysis/Analyses/
DFormatString.h395 static PrintfSpecifier Parse(const char *beg, const char *end);
536 static ScanfSpecifier Parse(const char *beg, const char *end);
597 const char *beg, const char *end);
600 const char *beg, const char *end);
/external/hyphenation/
Dsubstrings.pl33 $beg = $3;
43 $replbeg{$pat} = $beg - 1;
/external/astl/include/
Dstreambuf110 void setp(char_type* beg, char_type* end) {
111 if (end >= beg) {
112 mPutBeg = mPutCurr = beg;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DGRState.h286 template <typename CB> CB scanReachableSymbols(const SVal *beg,
290 scanReachableSymbols(const MemRegion * const *beg,
775 CB GRState::scanReachableSymbols(const SVal *beg, const SVal *end) const { in scanReachableSymbols() argument
777 scanReachableSymbols(beg, end, cb); in scanReachableSymbols()
782 CB GRState::scanReachableSymbols(const MemRegion * const *beg, in scanReachableSymbols() argument
785 scanReachableSymbols(beg, end, cb); in scanReachableSymbols()
/external/zlib/contrib/inflate86/
Dinffast.S178 #define beg 40 /* unsigned char* */ macro
269 movl %ebp, beg(%esp)
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(%esp)
Dinffas86.c84 /* 40 20 */ unsigned char FAR *beg; /* inflate()'s init next_out */ member
113 ar.beg = ar.out - (start - strm->avail_out);
/external/stlport/src/details/
Dfstream_win32io.cpp552 case ios_base::beg: in _M_seek()
608 if (base == 0 || _M_seek(offset + len, ios_base::beg) < 0) { in _M_mmap()
Dfstream_stdio.cpp347 case ios_base::beg: in _M_seek()

12