HomeSort by: relevance | last modified time | path
    Searched defs:beg (Results 1 - 25 of 137) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/binutils/dist/gprof/
search_list.c 31 const char *beg, *colon; local
37 beg = colon + 1;
38 colon = strchr (beg, PATH_SEP_CHAR);
41 len = colon - beg;
43 len = strlen (beg);
46 memcpy (new_el->path, beg, len);
  /src/external/gpl3/binutils.old/dist/gprof/
search_list.c 31 const char *beg, *colon; local
37 beg = colon + 1;
38 colon = strchr (beg, PATH_SEP_CHAR);
41 len = colon - beg;
43 len = strlen (beg);
46 memcpy (new_el->path, beg, len);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_report.h 25 uptr beg; member in struct:__asan::StackVarDescr
82 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
asan_interface_internal.h 50 uptr beg; // The address of the global. member in struct:__asan_global
125 uptr __asan_region_is_poisoned(uptr beg, uptr size);
  /src/sys/external/bsd/compiler_rt/dist/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
sanitizer_file.cc 183 const char *beg = path; local
185 const char *end = internal_strchrnul(beg, kPathSeparator);
186 uptr prefix_len = end - beg;
188 internal_memcpy(buffer.data(), beg, prefix_len);
196 beg = end + 1;
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_report.h 24 uptr beg; member in struct:__asan::StackVarDescr
84 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
asan_interface_internal.h 49 uptr beg; // The address of the global. member in struct:__asan_global
140 uptr __asan_region_is_poisoned(uptr beg, uptr size);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_report.h 24 uptr beg; member in struct:__asan::StackVarDescr
83 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
asan_interface_internal.h 49 uptr beg; // The address of the global. member in struct:__asan_global
124 uptr __asan_region_is_poisoned(uptr beg, uptr size);
  /src/lib/libc/compat/gen/
compat_timezone.c 69 char *beg, local
72 if ((beg = getenv("TZNAME")) != NULL) { /* set in environment */
73 if ((end = strchr(beg, ',')) != NULL) { /* "PST,PDT" */
77 (void)strlcpy(czone, beg, sizeof(czone));
81 return(beg);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_tls_get_addr.h 46 // If beg == 0, the chunk is unused.
48 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
  /src/external/gpl3/gcc.old/dist/libsanitizer/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
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
m-fgrep.c 47 const char *beg, *lim, *err; local
52 beg = pattern;
55 for (lim = beg; lim < pattern + pattern_size && *lim != '\n'; ++lim)
57 if ((err = kwsincr (ckwset->kwset, beg, lim - beg)) != NULL)
61 beg = lim;
63 while (beg < pattern + pattern_size);
75 register const char *beg, *try, *end; local
85 for (beg = buf; beg <= buf + buf_size; ++beg
    [all...]
  /src/bin/ksh/
expand.h 11 char *end, *beg; /* end, begin of string */ member in struct:XString
22 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \
23 (xs).end = (xs).beg + (xs).len; \
24 xp = (xs).beg; \
42 #define Xfree(xs, xp) afree((void*) (xs).beg, (xs).areap)
45 #define Xclose(xs, xp) (char*) aresize((void*)(xs).beg, \
46 (size_t)((xp) - (xs).beg), (xs).areap)
48 #define Xstring(xs, xp) ((xs).beg)
51 #define Xlength(xs, xp) ((xp) - (xs).beg)
52 #define Xsize(xs, xp) ((xs).end - (xs).beg)
64 void **beg, **end; \/* begin, end of vector *\/ member in struct:XPtrV
    [all...]
  /src/common/dist/zlib/
inffast.c 57 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
84 beg = out - (start - strm->avail_out);
168 op = (unsigned)(out - beg); /* max distance in output */
  /src/usr.bin/whatis/
whatis.c 76 char *beg, *conffile, **p, *p_augment, *p_path; local
108 if ((beg = strrchr(*p, '/')))
109 *p = beg + 1;
  /src/external/bsd/elftosb/dist/sbtool/
EncoreBootImageReader.cpp 23 m_stream.seekg(0, std::ios_base::beg);
79 m_stream.seekg(digestPosition, std::ios_base::beg);
106 m_stream.seekg(0, std::ios_base::beg);
131 m_stream.seekg(sizeOfCipherBlocks(m_header.m_headerBlocks), std::ios_base::beg); member in class:std::ios_base
190 m_stream.seekg(sizeOfCipherBlocks(m_header.m_keyDictionaryBlock), std::ios_base::beg); member in class:std::ios_base
244 m_stream.seekg(sizeOfCipherBlocks(bootTagOffset), std::ios_base::beg); member in class:std::ios_base
316 m_stream.seekg(sizeOfCipherBlocks(header.m_offset), std::ios_base::beg);
  /src/external/bsd/nvi/dist/vi/
v_increment.c 64 size_t beg, blen, end, len, nlen, wlen; local
99 for (beg = vp->m_start.cno; beg < len && ISSPACE((UCHAR_T)p[beg]); ++beg);
100 if (beg >= len)
102 if (beg != vp->m_start.cno) {
103 sp->cno = beg;
116 wlen = len - beg;
117 if (p[beg] == L('0') && wlen > 2 &
    [all...]
  /src/external/cddl/osnet/dist/uts/common/zmod/
inffast.c 77 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
104 beg = out - (start - strm->avail_out);
188 op = (unsigned)(out - beg); /* max distance in output */
  /src/external/gpl3/binutils/dist/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);
  /src/external/gpl3/binutils/dist/zlib/
inffast.c 55 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
82 beg = out - (start - strm->avail_out);
166 op = (unsigned)(out - beg); /* max distance in output */
  /src/external/gpl3/binutils.old/dist/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);
  /src/external/gpl3/binutils.old/dist/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 */
  /src/external/gpl3/gdb/dist/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);

Completed in 41 milliseconds

1 2 3 4 5 6