HomeSort by relevance Sort by last modified time
    Searched defs:beg (Results 26 - 50 of 127) sorted by null

12 3 4 5 6

  /external/compiler-rt/lib/asan/
asan_poisoning.cc 117 ShadowSegmentEndpoint beg(beg_addr);
119 if (beg.chunk == end.chunk) {
120 CHECK(beg.offset < end.offset);
121 s8 value = beg.value;
126 if (beg.offset > 0) {
127 *beg.chunk = Min(value, beg.offset);
129 *beg.chunk = kAsanUserPoisonedMemoryMagic;
134 CHECK(beg.chunk < end.chunk);
135 if (beg.offset > 0)
334 uptr beg = reinterpret_cast<uptr>(beg_p); local
    [all...]
  /external/compiler-rt/lib/msan/
msan_allocator.cc 214 const void *beg = allocator.GetBlockBegin(p); local
215 if (beg != p) return 0;
  /external/curl/lib/
x509asn1.h 84 const char * beg; /* Pointer to element data. */ member in struct:__anon17396
124 const char *beg, const char *end);
128 const char *beg, const char *end);
130 const char *beg, const char *end);
132 const char *beg, const char *end);
cookie.c 1409 struct curl_slist *beg; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_reduce_op.cc 89 auto beg = reduction.group_by_dims.begin(); local
92 if (std::find(beg, end, d) == end) {
  /external/zlib/src/contrib/inflate86/
inffast.S 178 #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 */
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/inflate86/
inffast.S 178 #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 */
    [all...]
  /bionic/libc/dns/nameser/
ns_name.c 998 char *beg = dn, tc; local
1039 _DIAGASSERT(__type_fit(int, dn - beg));
1040 return (int)(dn - beg);
  /external/compiler-rt/lib/cfi/
cfi.cc 208 uptr beg = info->dlpi_addr + phdr->p_vaddr; local
209 uptr end = beg + phdr->p_memsz;
210 if (strtab >= beg && strtab < end && symtab >= beg && symtab < end)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 267 void LoadedModule::addAddressRange(uptr beg, uptr end, bool executable) {
269 AddressRange *r = new(mem) AddressRange(beg, end, executable);
275 if (r.beg <= address && address < r.end)
351 const char *beg = path; local
353 const char *end = internal_strchrnul(beg, kPathSeparator);
354 uptr prefix_len = end - beg;
356 internal_memcpy(buffer.data(), beg, prefix_len);
364 beg = end + 1;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 227 void *beg = a->GetBlockBegin(x); local
229 // fprintf(stderr, "[%zd] %p %p\n", i, x, beg);
230 EXPECT_EQ(x, beg);
  /external/libcxx/src/
debug.cpp 532 __i_node** beg = local
534 if (beg == nullptr)
538 memcpy(beg, beg_, nc/2*sizeof(__i_node*));
540 beg_ = beg;
  /external/protobuf/ruby/ext/google/protobuf_c/
repeated_field.c 62 VALUE RepeatedField_subarray(VALUE _self, long beg, long len) {
68 size_t off = beg * element_size;
70 for (int i = beg; i < beg + len; i++, off += element_size) {
115 long beg, len; local
129 switch (rb_range_beg_len(arg, &beg, &len, self->size, 0)) {
135 return RepeatedField_subarray(_self, beg, len);
140 beg = NUM2LONG(argv[0]);
142 if (beg < 0) {
143 beg += self->size
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyRepeatedField.java 141 int beg = RubyNumeric.num2int(range.first(context)); local
143 int len = to - beg + 1;
144 return this.storage.subseq(beg, len);
148 int beg = RubyNumeric.num2int(args[0]); local
150 if (beg < 0) {
151 beg += this.storage.size();
153 if (beg >= this.storage.size()) {
156 return this.storage.subseq(beg, len);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
throw_allocator.h 160 const_iterator beg = map().begin(); local
163 while (beg != end)
165 if (beg->second.first == label)
166 log_to_string(found, *beg);
167 ++beg;
233 base_type::const_iterator beg = __b.map().begin(); local
235 for (; beg != end; ++beg)
236 __b.log_to_string(error, *beg);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
throw_allocator.h 160 const_iterator beg = map().begin(); local
163 while (beg != end)
165 if (beg->second.first == label)
166 log_to_string(found, *beg);
167 ++beg;
233 base_type::const_iterator beg = __b.map().begin(); local
235 for (; beg != end; ++beg)
236 __b.log_to_string(error, *beg);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
debug.cpp 532 __i_node** beg = local
534 if (beg == nullptr)
538 memcpy(beg, beg_, nc/2*sizeof(__i_node*));
540 beg_ = beg;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
deflate.c 767 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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
deflate.c 654 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)
713 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/mksh/src/
expr.c 880 unsigned short beg; member in struct:mb_ucsrange
1160 if (val < arr[min].beg || val > arr[max - 1].end)
1166 if (val < arr[mid].beg)
  /external/python/cpython2/Modules/zlib/
deflate.c 767 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...]
  /external/python/cpython3/Modules/zlib/
deflate.c 753 * Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1].
755 #define HCRC_UPDATE(beg) \
757 if (s->gzhead->hcrc && s->pending > (beg)) \
758 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
759 s->pending - (beg)); \
902 ulg beg = s->pending; /* start of bytes to update crc */ local
909 HCRC_UPDATE(beg);
916 beg = 0;
922 HCRC_UPDATE(beg);
929 ulg beg = s->pending; /* start of bytes to update crc * local
951 ulg beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/syslinux/com32/lib/zlib/
deflate.c 684 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)
743 uInt beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /external/zlib/src/
deflate.c 753 * Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1].
755 #define HCRC_UPDATE(beg) \
757 if (s->gzhead->hcrc && s->pending > (beg)) \
758 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
759 s->pending - (beg)); \
902 ulg beg = s->pending; /* start of bytes to update crc */ local
909 HCRC_UPDATE(beg);
916 beg = 0;
922 HCRC_UPDATE(beg);
929 ulg beg = s->pending; /* start of bytes to update crc * local
951 ulg beg = s->pending; \/* start of bytes to update crc *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
deflate.c 767 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...]

Completed in 1973 milliseconds

12 3 4 5 6