Searched defs:BUFLEN (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A DPR5086-ambig-resolution-enum.cpp12 enum {BUFLEN = 128 }; enumerator in enum:__anon19200
13 const char *p = rc.fun1(BUFLEN - 2, C::e1);
/external/jemalloc/test/unit/
H A Dutil.c140 #define BUFLEN 15 macro
141 char buf[BUFLEN];
153 for (len = 1; len < BUFLEN; len++) {
166 #undef BUFLEN macro
173 #define BUFLEN 128 macro
174 char buf[BUFLEN];
280 #undef BUFLEN macro
/external/chromium_org/third_party/icu/source/common/
H A Dlocutil.cpp125 enum { BUFLEN = 128 }; // larger than ever needed enumerator in enum:__anon11910
127 if (id.isBogus() || id.length() >= BUFLEN) {
148 char buffer[BUFLEN];
155 id.extract(prev, INT32_MAX, buffer + prev, BUFLEN - prev, US_INV);
159 id.extract(prev, i - prev, buffer + prev, BUFLEN - prev, US_INV);
/external/icu/icu4c/source/common/
H A Dlocutil.cpp125 enum { BUFLEN = 128 }; // larger than ever needed enumerator in enum:__anon21698
127 if (id.isBogus() || id.length() >= BUFLEN) {
148 char buffer[BUFLEN];
155 id.extract(prev, INT32_MAX, buffer + prev, BUFLEN - prev, US_INV);
159 id.extract(prev, i - prev, buffer + prev, BUFLEN - prev, US_INV);
/external/zlib/src/test/
H A Dminigzip.c135 #define BUFLEN 16384 macro
242 unsigned char out[BUFLEN];
251 strm->avail_out = BUFLEN;
253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
301 unsigned char out[BUFLEN];
311 strm->avail_out = BUFLEN;
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
366 local char buf[BUFLEN];
434 local char buf[BUFLEN];
/external/ipsec-tools/src/racoon/
H A Dipsec_doi.c4380 #define BUFLEN 512 macro
4384 static char buf[BUFLEN];
4437 len = snprintf( buf, BUFLEN, "%s", saddrwop2str(saddr));
4493 len = snprintf( buf, BUFLEN, "%s/%i", saddrwop2str(saddr), plen);
4499 len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(saddr));
4510 len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(saddr));
4517 len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(saddr));
4532 len += snprintf( buf + len, BUFLEN - len, "%s", saddrwop2str(saddr));
4540 if (len > BUFLEN)
4541 len = BUFLEN;
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c1603 #define BUFLEN 50 macro
1608 if (VG_(get_fnname_raw) ( ip, buf, BUFLEN )) {
1609 buf[BUFLEN-1] = '\0'; // paranoia

Completed in 580 milliseconds