Home | History | Annotate | Download | only in protobuf_c

Lines Matching defs:accumulated

9329    * segment where this submessage's length is being accumulated. */
9391 /* We aren't inside a delimited region. Flush our accumulated bytes to
9471 * regions, we can now emit all of the buffered data we accumulated. */
10372 const char *accumulated;
10610 assert(p->accumulated == NULL);
10615 p->accumulated = NULL;
10647 if (!p->accumulated && can_alias) {
10648 p->accumulated = buf;
10663 if (p->accumulated != p->accumulate_buf) {
10664 memcpy(p->accumulate_buf, p->accumulated, p->accumulated_len);
10665 p->accumulated = p->accumulate_buf;
10673 /* Returns a pointer to the data accumulated since the last accumulate_clear()
10677 assert(p->accumulated);
10679 return p->accumulated;
10937 long val = strtol(p->accumulated, &end, 0);
10945 long long val = strtol(p->accumulated, &end, 0);
10953 unsigned long val = strtoul(p->accumulated, &end, 0);
10961 unsigned long long val = strtoul(p->accumulated, &end, 0);
10969 double val = strtod(p->accumulated, &end);
10977 float val = strtod(p->accumulated, &end);
11072 p->accumulated, p->accumulated_len)) {
11867 p->accumulated = NULL;