Home
last modified time | relevance | path

Searched refs:start_buf (Results 1 – 6 of 6) sorted by relevance

/external/libxml2/
Dbuf.c364 size_t start_buf = buf->content - buf->contentIO; in xmlBufEmpty() local
366 buf->size += start_buf; in xmlBufEmpty()
409 size_t start_buf = buf->content - buf->contentIO; in xmlBufShrink() local
410 if (start_buf >= buf->size) { in xmlBufShrink()
414 buf->size += start_buf; in xmlBufShrink()
476 size_t start_buf = buf->content - buf->contentIO; in xmlBufGrowInternal() local
478 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size); in xmlBufGrowInternal()
484 buf->content = newbuf + start_buf; in xmlBufGrowInternal()
749 size_t start_buf; in xmlBufResize() local
808 start_buf = buf->content - buf->contentIO; in xmlBufResize()
[all …]
Dtree.c7200 size_t start_buf = buf->content - buf->contentIO; in xmlBufferEmpty() local
7202 buf->size += start_buf; in xmlBufferEmpty()
7240 size_t start_buf = buf->content - buf->contentIO; in xmlBufferShrink() local
7241 if (start_buf >= buf->size) { in xmlBufferShrink()
7245 buf->size += start_buf; in xmlBufferShrink()
7290 size_t start_buf = buf->content - buf->contentIO; in xmlBufferGrow() local
7292 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size); in xmlBufferGrow()
7298 buf->content = newbuf + start_buf; in xmlBufferGrow()
7393 size_t start_buf; in xmlBufferResize() local
7442 start_buf = buf->content - buf->contentIO; in xmlBufferResize()
[all …]
/external/wpa_supplicant_8/src/eap_peer/
Deap_tnc.c211 char *start_buf, *end_buf; in eap_tnc_process() local
367 start_buf = tncc_if_tnccs_start(data->tncc); in eap_tnc_process()
368 if (start_buf == NULL) in eap_tnc_process()
370 start_len = os_strlen(start_buf); in eap_tnc_process()
373 os_free(start_buf); in eap_tnc_process()
381 os_free(start_buf); in eap_tnc_process()
386 wpabuf_put_data(resp, start_buf, start_len); in eap_tnc_process()
387 os_free(start_buf); in eap_tnc_process()
/external/wpa_supplicant_8/src/eap_server/
Deap_server_tnc.c132 char *start_buf, *end_buf; in eap_tnc_build() local
138 start_buf = tncs_if_tnccs_start(data->tncs); in eap_tnc_build()
139 if (start_buf == NULL) in eap_tnc_build()
141 start_len = os_strlen(start_buf); in eap_tnc_build()
144 os_free(start_buf); in eap_tnc_build()
152 os_free(start_buf); in eap_tnc_build()
157 wpabuf_put_data(req, start_buf, start_len); in eap_tnc_build()
158 os_free(start_buf); in eap_tnc_build()
/external/python/cpython3/PC/
Dgetpathp.c825 wchar_t *buf, *start_buf; in calculate_module_search_path() local
840 start_buf = buf; in calculate_module_search_path()
843 if (wcscpy_s(buf, bufsz - (buf - start_buf), in calculate_module_search_path()
851 if (wcscpy_s(buf, bufsz - (buf - start_buf), calculate->zip_path)) { in calculate_module_search_path()
858 if (wcscpy_s(buf, bufsz - (buf - start_buf), calculate->user_path)) { in calculate_module_search_path()
865 if (wcscpy_s(buf, bufsz - (buf - start_buf), calculate->machine_path)) { in calculate_module_search_path()
873 if (wcscpy_s(buf, bufsz - (buf - start_buf), PYTHONPATH)) { in calculate_module_search_path()
892 if (wcscpy_s(buf, bufsz - (buf - start_buf), calculate->home)) { in calculate_module_search_path()
933 while (look >= start_buf && *look != DELIM) in calculate_module_search_path()
944 if (look < start_buf) { in calculate_module_search_path()
[all …]
/external/u-boot/cmd/
Dsf.c221 const char *start_buf = buf; in spi_flash_update() local
235 bytes_per_second(buf - start_buf, in spi_flash_update()