Home
last modified time | relevance | path

Searched refs:storage_used (Results 1 – 2 of 2) sorted by relevance

/third_party/libsnd/src/
Dstrings.c74 if (k == 0 && psf->strings.storage_used != 0) in psf_store_string()
79 if (k != 0 && psf->strings.storage_used == 0) in psf_store_string()
86 psf->strings.storage_used = 0 ; in psf_store_string()
128 if (psf->strings.storage_used + str_len + 1 > psf->strings.storage_len) in psf_store_string()
143 psf->strings.data [k].offset = psf->strings.storage_used ; in psf_store_string()
146 memcpy (psf->strings.storage + psf->strings.storage_used, str, str_len) ; in psf_store_string()
147 psf->strings.storage_used += str_len ; in psf_store_string()
152 …printf ("storage_used : %zd / %zd\n", psf->strings.storage_used, psf->strings.storage_len)… in psf_store_string()
153 psf_hexdump (psf->strings.storage, psf->strings.storage_used) ; in psf_store_string()
Dcommon.h427 size_t storage_used ; member