Searched defs:beg (Results 1 - 25 of 50) sorted by last modified time

12

/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 */
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...]
/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 Ddeflate.c767 uInt beg = s->pending; /* start of bytes to update crc */ local
771 if (s->gzhead->hcrc && s->pending > beg)
772 strm->adler = crc32(strm->adler, s->pending_buf + beg,
773 s->pending - beg);
775 beg = s->pending;
782 if (s->gzhead->hcrc && s->pending > beg)
783 strm->adler = crc32(strm->adler, s->pending_buf + beg,
784 s->pending - beg);
795 uInt beg = s->pending; /* start of bytes to update crc */ local
800 if (s->gzhead->hcrc && s->pending > beg)
826 uInt beg = s->pending; /* start of bytes to update crc */ local
[all...]
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/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/stlport/src/
H A Dios.cpp78 const ios_base::seekdir ios_base::beg; member in class:ios_base
H A Dnum_put.cpp128 char* beg = __write_integer_backward(bufend, flags, x); local
129 return copy(beg, bufend, buf);
/external/stlport/test/unit/
H A Dstack_allocator.h33 State(char *beg, char *end) argument
34 : m_beg(beg), m_end(end), m_cur(m_beg), m_isOk(true), m_swaped(false), m_nbAlloc(0),
68 StackAllocator(char *beg, char *end) argument
69 : m_state(beg, end) {}
/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);
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.c767 uInt beg = s->pending; /* start of bytes to update crc */ local
771 if (s->gzhead->hcrc && s->pending > beg)
772 strm->adler = crc32(strm->adler, s->pending_buf + beg,
773 s->pending - beg);
775 beg = s->pending;
782 if (s->gzhead->hcrc && s->pending > beg)
783 strm->adler = crc32(strm->adler, s->pending_buf + beg,
784 s->pending - beg);
795 uInt beg = s->pending; /* start of bytes to update crc */ local
800 if (s->gzhead->hcrc && s->pending > beg)
826 uInt beg = s->pending; /* start of bytes to update crc */ local
[all...]
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/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c766 uInt beg = s->pending; /* start of bytes to update crc */ local
770 if (s->gzhead->hcrc && s->pending > beg)
771 strm->adler = crc32(strm->adler, s->pending_buf + beg,
772 s->pending - beg);
774 beg = s->pending;
781 if (s->gzhead->hcrc && s->pending > beg)
782 strm->adler = crc32(strm->adler, s->pending_buf + beg,
783 s->pending - beg);
794 uInt beg = s->pending; /* start of bytes to update crc */ local
799 if (s->gzhead->hcrc && s->pending > beg)
825 uInt beg = s->pending; /* start of bytes to update crc */ local
[all...]
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/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/mksh/src/
H A Deval.c370 char *beg, *end, *str; local
374 end = (beg = wdcopy(sp, ATEMP)) +
377 if (end < wdscan(beg, EOS))
379 str = snptreef(NULL, 64, "%S", beg);
380 afree(beg, ATEMP);
428 char *beg, *mid, *end, *stg; local
431 beg = wdcopy(sp, ATEMP);
432 mid = beg + (wdscan(sp, ADELIM) - sp);
433 stg = beg + (wdscan(sp, CSUBST) - sp);
438 sp += mid - beg
[all...]
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)
H A Dsh.h1404 char *end, *beg; /* end, begin of string */ member in struct:XString
1415 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \
1416 (xs).end = (xs).beg + (xs).len; \
1420 (xp) = (xs).beg; \
1437 #define Xfree(xs, xp) afree((xs).beg, (xs).areap)
1440 #define Xclose(xs, xp) aresize((xs).beg, (xp) - (xs).beg, (xs).areap)
1443 #define Xstring(xs, xp) ((xs).beg)
1446 #define Xlength(xs, xp) ((xp) - (xs).beg)
1447 #define Xsize(xs, xp) ((xs).end - (xs).beg)
1459 void **beg; member in struct:__anon28029
[all...]
/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/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/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/compiler-rt/lib/asan/
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_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);
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);

Completed in 364 milliseconds

12