Searched refs:endp (Results 1 - 25 of 112) sorted by path

12345

/external/bison/darwin-lib/
H A Dstdlib.h1130 _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)
1132 _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));
1135 _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)
1138 _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));
/external/bison/lib/
H A Dstdlib.in.h808 _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)
810 _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));
813 _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)
816 _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));
/external/bison/linux-lib/
H A Dstdlib.h1130 _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)
1132 _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));
1135 _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)
1138 _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c340 char *d = ((char *)bd), *endp; local
343 *d++ = strtol(str, &endp, 16);
344 if (*endp != ':' && i != 5) {
348 str = endp + 1;
/external/chromium_org/components/nacl/loader/
H A Dnacl_helper_linux.cc334 char* endp; local
335 uintptr_t r_debug_addr = strtoul(r_debug_switch_value.c_str(), &endp, 0);
336 if (r_debug_addr != 0 && *endp == '\0') {
367 char* endp; local
369 strtoul(reserved_at_zero_switch_value.c_str(), &endp, 0);
370 if (*endp != '\0')
/external/chromium_org/net/quic/
H A Diovector_test.cc125 const char* endp = iov.LastBlockEnd(); local
152 ASSERT_TRUE(iov.LastBlockEnd() == endp);
172 const char* endp = iov.LastBlockEnd(); local
181 ASSERT_TRUE(iov.LastBlockEnd() == endp);
/external/chromium_org/net/tools/flip_server/
H A Doutput_ordering.cc102 char* endp; local
103 double tmp_think_time_in_s = strtod(x_server_latency.c_str(), &endp);
104 if (endp != x_server_latency.c_str() + x_server_latency.size()) {
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DMemoryView_C.c929 {{type_decl}} *endp;
932 endp = p + stride * extent;
934 while (p < endp) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dcoleitr.cpp103 int thislength = (int)(m_data_->iteratordata_.endp - m_data_->iteratordata_.string);
104 int thatlength = (int)(that.m_data_->iteratordata_.endp - that.m_data_->iteratordata_.string);
402 length = (int)(othercoliter->endp - othercoliter->string);
422 coliter->endp = coliter->string == NULL ? NULL : coliter->string + length;
433 othercoliter->pos <= othercoliter->endp)
H A Ducol.cpp125 (s)->endp = (UChar *)sourceString+sourceLen;
129 (s)->endp = NULL;
183 return s == NULL || s->pos == s->endp;
363 return (s->pos == s->endp);
382 return s->fcdPosition == s->endp;
1375 endP = collationSource->endp;
1462 if (collationSource->pos >= collationSource->endp) {
1537 if ((collationSource->flags & UCOL_ITER_HASLEN) && collationSource->pos >= collationSource->endp) {
2259 if (data->pos + 1 == data->endp) {
2282 data->fcdPosition + 1 == data->endp) {
6972 uint32_t *endp; member in struct:ucol_CEBuf
[all...]
H A Ducol_imp.h280 const UChar *endp; /* string end ptr. Is undefined for null terminated strings */ member in struct:collIterate
351 /* @return s->pos == s->endp */
462 (s)->endp = (sourceLen) == -1 ? NULL :(UChar *)(sourceString)+(sourceLen); \
H A Ducoleitr.cpp372 if ((ci->flags & UCOL_ITER_HASLEN) == 0 || ci->endp == NULL) {
373 ci->endp = ci->string + u_strlen(ci->string);
482 if (elems->iteratordata_.endp == NULL) {
483 elems->iteratordata_.endp = elems->iteratordata_.string +
487 elems->iteratordata_.pos = elems->iteratordata_.endp;
488 elems->iteratordata_.fcdPosition = elems->iteratordata_.endp;
525 if (elems->iteratordata_.endp == NULL) {
526 elems->iteratordata_.endp = elems->iteratordata_.string +
531 elems->iteratordata_.pos = elems->iteratordata_.endp;
532 elems->iteratordata_.fcdPosition = elems->iteratordata_.endp;
[all...]
/external/chromium_org/third_party/icu/source/samples/coll/
H A Dcoll.cpp112 char *endp; local
113 int i = strtol(argv[argNum], &endp, 0);
114 if (endp == argv[argNum]) {
/external/chromium_org/third_party/icu/source/samples/strsrch/
H A Dstrsrch.cpp123 char *endp; local
124 int i = strtol(argv[argNum], &endp, 0);
125 if (endp == argv[argNum]) {
/external/chromium_org/third_party/icu/source/test/perf/collationperf/
H A Dcollperf.cpp248 char *endp; local
249 i = strtol(argv[argNum], &endp, 0);
250 if (endp == argv[argNum]) {
/external/chromium_org/third_party/icu/source/test/perf/collperf/
H A Dcollperf.cpp591 char *endp; local
592 int tmp = strtol(options[i].value, &endp, 0);
593 if (endp == options[i].value) {
643 char *endp; local
644 int tmp = strtol(options[l].value, &endp, 0);
645 if (endp == options[l].value) {
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp258 char *endp; local
259 i = strtol(argv[argNum], &endp, 0);
260 if (endp == argv[argNum]) {
/external/chromium_org/third_party/icu/source/tools/dumpce/
H A Ddumpce.cpp170 serialize(f, codepoint, iter->iteratordata_.endp - codepoint);
172 iter->iteratordata_.endp - codepoint, sortkey, 64);
/external/chromium_org/third_party/libevent/
H A Dhttp.c793 char *endp; local
802 ntoread = evutil_strtoll(p, &endp, 16);
804 (*endp != '\0' && *endp != ' ') ||
1552 char *endp; local
1553 ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10);
1554 if (*content_length == '\0' || *endp != '\0' || ntoread < 0) {
/external/chromium_org/third_party/libxml/src/
H A Dtriostr.c942 @param endp Pointer to end of the converted string.
962 TRIO_ARGS2((source, endp),
964 char **endp)
967 return strtold(source, endp);
1079 if (endp)
1080 *endp = (char *)source;
1090 @param endp Pointer to end of the converted string.
1097 TRIO_ARGS2((source, endp),
1099 char **endp)
1102 return strtod(source, endp);
961 trio_to_long_double(source, endp), TRIO_CONST char *source, char **endp argument
1096 trio_to_double(source, endp), TRIO_CONST char *source, char **endp argument
1119 trio_to_float(source, endp), TRIO_CONST char *source, char **endp argument
1141 trio_to_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
1190 trio_to_unsigned_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
[all...]
H A Dtriostr.h55 TRIO_STRING_PUBLIC double trio_to_double TRIO_PROTO((const char *source, char **endp));
56 TRIO_STRING_PUBLIC long trio_to_long TRIO_PROTO((const char *source, char **endp, int base));
57 TRIO_STRING_PUBLIC trio_long_double_t trio_to_long_double TRIO_PROTO((const char *source, char **endp));
80 TRIO_STRING_PUBLIC float trio_to_float TRIO_PROTO((const char *source, char **endp));
82 TRIO_STRING_PUBLIC unsigned long trio_to_unsigned_long TRIO_PROTO((const char *source, char **endp, int base));
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsysinfo.cc163 const char* endp = (char*)memchr(p, '\0', sizeof(envbuf) - (p - envbuf)); local
164 if (endp == NULL) // this entry isn't NUL terminated
168 p = endp + 1;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsysinfo.cc158 const char* endp = (char*)memchr(p, '\0', sizeof(envbuf) - (p - envbuf)); local
159 if (endp == NULL) // this entry isn't NUL terminated
163 p = endp + 1;
/external/chromium_org/third_party/webrtc/base/
H A Dflags.cc212 char* endp = empty; local
218 *flag->int_variable() = strtol(value, &endp, 10);
221 *flag->float_variable() = strtod(value, &endp);
231 *endp != '\0') {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/exe/
H A Dexe.asm4 start endp

Completed in 1006 milliseconds

12345