Home | History | Annotate | Download | only in protobuf

Lines Matching defs:accumulated

8618    * segment where this submessage's length is being accumulated. */
8680 /* We aren't inside a delimited region. Flush our accumulated bytes to
8760 * regions, we can now emit all of the buffered data we accumulated. */
9696 const char *accumulated;
9914 assert(p->accumulated == NULL);
9919 p->accumulated = NULL;
9951 if (!p->accumulated && can_alias) {
9952 p->accumulated = buf;
9967 if (p->accumulated != p->accumulate_buf) {
9968 memcpy(p->accumulate_buf, p->accumulated, p->accumulated_len);
9969 p->accumulated = p->accumulate_buf;
9977 /* Returns a pointer to the data accumulated since the last accumulate_clear()
9981 assert(p->accumulated);
9983 return p->accumulated;
10241 long val = strtol(p->accumulated, &end, 0);
10249 long long val = strtol(p->accumulated, &end, 0);
10257 unsigned long val = strtoul(p->accumulated, &end, 0);
10265 unsigned long long val = strtoul(p->accumulated, &end, 0);
10273 double val = strtod(p->accumulated, &end);
10281 float val = strtod(p->accumulated, &end);
10375 p->accumulated, p->accumulated_len)) {
11166 p->accumulated = NULL;