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

1 2 3 4 5 6

  /external/fio/lib/
strntol.c 13 const char *beg = str; local
16 for (; beg && sz && *beg == ' '; beg++, sz--)
25 memcpy(buf, beg, sz);
pattern.c 15 * @beg - string input
25 static const char *parse_string(const char *beg, char *out,
34 assert(*beg == '"');
35 beg++;
36 end = strchr(beg, '"');
39 if (end - beg > out_len)
42 memcpy(out, beg, end - beg);
43 *filled = end - beg;
51 * @beg - string inpu
257 const char *beg, *end, *out_beg = out; local
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
search_list.c 32 const char *beg, *colon;
38 beg = colon + 1;
39 colon = strchr (beg, PATH_SEP_CHAR);
42 len = colon - beg;
44 len = strlen (beg);
47 memcpy (new_el->path, beg, len);
31 const char *beg, *colon; local
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_tls_get_addr.h 38 // If beg == 0, the chunk is unused.
40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 48 uptr beg; // The address of the global. member in struct:__asan_global
104 uptr __asan_region_is_poisoned(uptr beg, uptr size);
asan_report.h 22 uptr beg; member in struct:__asan::StackVarDescr
72 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
asan_fake_stack.cc 118 uptr beg = reinterpret_cast<uptr>(GetFrame(stack_size_log, 0, 0)); local
120 if (ptr < beg || ptr >= end) return 0;
121 uptr class_id = (ptr - beg) >> stack_size_log;
122 uptr base = beg + (class_id << stack_size_log);
249 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
259 if (beg) *beg = reinterpret_cast<void*>(frame_beg);
  /external/compiler-rt/test/asan/TestCases/Posix/
gc-test.cc 24 void *beg, *end; local
26 __asan_addr_is_in_fake_stack(fake_stack, &var[0], &beg, &end);
28 assert((char*)beg <= (char*)&var[0]);
36 assert(beg == beg1);
  /external/compiler-rt/test/asan/TestCases/
contiguous_container.cc 12 char *beg = new char[capacity]; local
13 char *end = beg + capacity;
14 char *mid = beg + capacity;
21 mid = beg + size;
22 __sanitizer_annotate_contiguous_container(beg, end, old_mid, mid);
25 assert(!__asan_address_is_poisoned(beg + idx));
27 assert(__asan_address_is_poisoned(beg + idx));
28 assert(__sanitizer_verify_contiguous_container(beg, mid, end));
30 __sanitizer_contiguous_container_find_bad_address(beg, mid, end));
31 if (mid != beg) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.c 75 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 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffast.c 75 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 */
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.c 58 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
85 beg = out - (start - strm->avail_out);
169 op = (unsigned)(out - beg); /* max distance in output */
  /external/python/cpython2/Modules/zlib/
inffast.c 75 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/python/cpython3/Modules/zlib/
inffast.c 58 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
85 beg = out - (start - strm->avail_out);
169 op = (unsigned)(out - beg); /* max distance in output */
  /external/syslinux/com32/lib/zlib/
inffast.c 75 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/src/contrib/masmx64/
inffas8664.c 89 /* 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/
inffast.c 58 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
85 beg = out - (start - strm->avail_out);
169 op = (unsigned)(out - beg); /* max distance in output */
  /toolchain/binutils/binutils-2.27/zlib/contrib/masmx64/
inffas8664.c 89 /* 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);
  /toolchain/binutils/binutils-2.27/zlib/
inffast.c 75 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/compiler-rt/lib/msan/
msan_poisoning.cc 48 uptr beg = d & ~3UL; local
50 if (beg < d) {
51 u32 o = GetOriginIfPoisoned((uptr)src, d - beg);
54 *(u32 *)MEM_TO_ORIGIN(beg) = o;
56 beg += 4;
61 if (end < beg) return;
72 if (beg < end) {
79 u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg));
80 u32 *dst = (u32 *)MEM_TO_ORIGIN(beg);
92 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s)
152 uptr beg = x & ~3UL; \/\/ align down. local
    [all...]
  /external/mesa3d/src/gallium/targets/haiku-softpipe/
SoftwareRenderer.cpp 60 time_t beg; local
62 beg = time(NULL);
66 difftime(end, beg));
79 beg = time(NULL);
87 __func__, difftime(end, beg));
  /external/okhttp/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...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 84 /* 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 */
    [all...]
  /frameworks/base/core/java/org/apache/http/conn/ssl/
AndroidDistinguishedNameParser.java 36 private int beg; field in class:AndroidDistinguishedNameParser
64 beg = pos;
99 if ((end - beg > 4) && (chars[beg + 3] == '.')
100 && (chars[beg] == 'O' || chars[beg] == 'o')
101 && (chars[beg + 1] == 'I' || chars[beg + 1] == 'i')
102 && (chars[beg + 2] == 'D' || chars[beg + 2] == 'd'))
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/inflate86/
inffas86.c 84 /* 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 */
    [all...]

Completed in 459 milliseconds

1 2 3 4 5 6