Home
last modified time | relevance | path

Searched refs:oldlen (Results 1 – 11 of 11) sorted by relevance

/external/apache-http/src/org/apache/http/util/
DByteArrayBuffer.java101 int oldlen = this.len; in append() local
102 int newlen = oldlen + len; in append()
106 for (int i1 = off, i2 = oldlen; i2 < newlen; i1++, i2++) { in append()
DCharArrayBuffer.java130 int oldlen = this.len; in append() local
131 int newlen = oldlen + len; in append()
135 for (int i1 = off, i2 = oldlen; i2 < newlen; i1++, i2++) { in append()
/external/linux-tools-perf/util/
Dstrbuf.c110 size_t oldlen = sb->len; in strbuf_read() local
122 strbuf_setlen(sb, oldlen); in strbuf_read()
132 return sb->len - oldlen; in strbuf_read()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMManagerDefault.java156 int oldlen=m_dtms.length; in addDTM() local
157 if(oldlen<=id) in addDTM()
167 System.arraycopy(m_dtms,0,new_m_dtms,0,oldlen); in addDTM()
170 System.arraycopy(m_dtm_offsets,0,new_m_dtm_offsets,0,oldlen); in addDTM()
/external/chromium/third_party/libevent/test/
Dregress.c1370 int oldlen, newlen; in evtag_int_test() local
1371 oldlen = EVBUFFER_LENGTH(tmp); in evtag_int_test()
1375 integers[i], newlen - oldlen); in evtag_int_test()
1453 int oldlen, newlen; in evtag_tag_encoding() local
1454 oldlen = EVBUFFER_LENGTH(tmp); in evtag_tag_encoding()
1458 integers[i], newlen - oldlen); in evtag_tag_encoding()
/external/dnsmasq/src/
Dtftp.c241 size_t oldlen = strlen(daemon->namebuff); in tftp_request() local
249 daemon->namebuff[oldlen] = 0; in tftp_request()
/external/strace/
Dsystem.c2088 size_t oldlen; local
2089 if (umove(tcp, (size_t)info.oldlenp, &oldlen) >= 0
2102 tprintf(", %Zu, ", oldlen);
2111 tprintf("%p, %Zd, %p, %Zd", info.oldval, oldlen,
/external/ipsec-tools/src/racoon/
Disakmp.c2404 int oldlen = 0; local
2409 oldlen = buf0->l;
2410 buf = vrealloc(buf0, oldlen + tlen);
2419 data = (struct isakmp_data *)(buf->v + oldlen);
2437 int oldlen = 0; local
2442 oldlen = buf0->l;
2443 buf = vrealloc(buf0, oldlen + tlen);
2452 data = (struct isakmp_data *)(buf->v + oldlen);
Disakmp_inf.c1061 int oldlen = 0; local
1071 oldlen = buf0->l;
1081 n = (struct isakmp_pl_n *)(buf->v + oldlen);
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-darwin.c3634 size_t oldlen = *oldlenp; in PRE() local
3637 if (oldp && oldlen >= sizeof(Addr)) { in PRE()
3645 if (oldp) VG_(memcpy)(oldp, &stack_end, oldlen); in PRE()
/external/regex-re2/lib/codereview/
Dcodereview.py1674 for (old, oldlen, newdelta) in deltas: