Home
last modified time | relevance | path

Searched refs:temp_buf_size (Results 1 – 10 of 10) sorted by relevance

/dports/games/ags/ags_linux_v.3.4.4.1/Engine/libsrc/alogg/
H A Dalogg.c710 int last_block, temp_buf_size, using_full_databuf, items; in _alogg_oggstream_read() local
724 temp_buf_size = ogg->databuf_len * 2; in _alogg_oggstream_read()
726 temp_buf_size = ogg->databuf_len + ogg->bytes_used; in _alogg_oggstream_read()
736 temp_buf_size = ogg->databuf_len; in _alogg_oggstream_read()
738 temp_buf_size = ogg->bytes_used; in _alogg_oggstream_read()
742 data_left = temp_buf_size - ogg->data_cursor; in _alogg_oggstream_read()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/libsrc/almp3/
H A Dalmp3.c1527 int temp_buf_size, using_full_databuf; in almp3_poll_mp3stream() local
1567 temp_buf_size = mp3->databuf_len * 2; in almp3_poll_mp3stream()
1569 temp_buf_size = mp3->databuf_len + mp3->bytes_used; in almp3_poll_mp3stream()
1579 temp_buf_size = mp3->databuf_len; in almp3_poll_mp3stream()
1581 temp_buf_size = mp3->bytes_used; in almp3_poll_mp3stream()
1608 temp_buf_left = temp_buf_size - mp3->data_cursor; in almp3_poll_mp3stream()
1643 if (mp3->data_cursor >= temp_buf_size) { in almp3_poll_mp3stream()
1665 if (p < ((char *)temp_databuf + temp_buf_size)) { in almp3_poll_mp3stream()
/dports/x11/kf5-kwindowsystem/kwindowsystem-5.89.0/src/platforms/xcb/
H A Dnetwm_p.h100 size_t temp_buf_size; member
H A Dnetwm.cpp448 p->temp_buf_size = 0; in NETRootInfo()
503 p->temp_buf_size = 0; in NETRootInfo()
/dports/net-im/toxic/toxic-0.11.3/src/
H A Dtoxic.c713 size_t temp_buf_size = strlen(path) + strlen(TEMP_PROFILE_EXT) + 1; in store_data() local
714 char *temp_path = malloc(temp_buf_size); in store_data()
720 snprintf(temp_path, temp_buf_size, "%s%s", path, TEMP_PROFILE_EXT); in store_data()
H A Dfriendlist.c200 size_t temp_buf_size = strlen(path) + strlen(TEMP_BLOCKLIST_EXT) + 1; in save_blocklist() local
201 char *temp_path = malloc(temp_buf_size); in save_blocklist()
208 snprintf(temp_path, temp_buf_size, "%s%s", path, TEMP_BLOCKLIST_EXT); in save_blocklist()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/src/gpu/ocl/gemm/
H A Dgen9_gemm.cpp459 auto temp_buf_size in execute_superkernel() local
526 temp_buf->map_data(&plan_void, nullptr, temp_buf_size); in execute_superkernel()
/dports/math/onednn/oneDNN-2.5.1/src/gpu/ocl/gemm/
H A Dgen9_gemm.cpp459 auto temp_buf_size in execute_superkernel() local
526 temp_buf->map_data(&plan_void, nullptr, temp_buf_size); in execute_superkernel()
/dports/net-mgmt/yaf/yaf-2.11.0/src/applabel/hooks/
H A Ddpacketplugin.c4210 int temp_buf_size = 0; in ypGetDNSQName() local
4218 temp_buf[temp_buf_size] = '\0'; in ypGetDNSQName()
4247 if ( (nameSize + temp_buf_size + 1) > DNS_MAX_NAME_LENGTH ) { in ypGetDNSQName()
4251 memcpy(temp_buf + temp_buf_size, (payload + toffset + 1), in ypGetDNSQName()
4253 temp_buf[temp_buf_size + nameSize] = '.'; in ypGetDNSQName()
4254 temp_buf_size += nameSize + 1; in ypGetDNSQName()
4268 if (bufoffset + temp_buf_size > export_limit) { in ypGetDNSQName()
4274 memcpy(buf + bufoffset, temp_buf, temp_buf_size); in ypGetDNSQName()
4275 bufoffset += temp_buf_size; in ypGetDNSQName()
4277 return temp_buf_size; in ypGetDNSQName()
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/src/audio/
H A Daudio.cpp252 const size_t temp_buf_size = 64 * 1024 * 1024; in Load_Ogg() local
253 size_t buffer_left = temp_buf_size / 2; in Load_Ogg()
254 short *temp_buff = (short*)malloc(temp_buf_size); in Load_Ogg()