Home
last modified time | relevance | path

Searched refs:swap_buffer (Results 1 – 25 of 97) sorted by relevance

1234

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/object_collection_manager/
H A Doperator_utils.py29 swap_buffer,
347 if not swap_buffer["A"]["values"]:
349 swap_buffer["A"]["RTO"] = rto
360 swap_buffer["B"]["RTO"] = rto
389 swap_a = swap_buffer["A"]["RTO"]
390 swap_b = swap_buffer["B"]["RTO"]
398 swap_buffer["A"]["RTO"] = ""
400 swap_buffer["B"]["RTO"] = ""
411 if swap_buffer["A"]["RTO"] == rto:
412 swap_buffer["A"]["RTO"] = ""
[all …]
H A Dui.py47 swap_buffer,
226 if swap_buffer["A"]["RTO"] == "exclude":
245 if swap_buffer["A"]["RTO"] == "select":
264 if swap_buffer["A"]["RTO"] == "hide":
283 if swap_buffer["A"]["RTO"] == "disable":
302 if swap_buffer["A"]["RTO"] == "render":
321 if swap_buffer["A"]["RTO"] == "holdout":
407 swap_buffer["A"]["RTO"] = ""
408 swap_buffer["A"]["values"].clear()
409 swap_buffer["B"]["RTO"] = ""
[all …]
/dports/games/opentyrian/opentyrian-opentyrian-77a8715634e3/src/
H A Dfile.c155 void *swap_buffer; in efwrite() local
160 swap_buffer = malloc(size * num); in efwrite()
162 ((Uint16 *)swap_buffer)[i] = SDL_SwapLE16(((Uint16 *)buffer)[i]); in efwrite()
165 swap_buffer = malloc(size * num); in efwrite()
167 ((Uint32 *)swap_buffer)[i] = SDL_SwapLE32(((Uint32 *)buffer)[i]); in efwrite()
170 swap_buffer = malloc(size * num); in efwrite()
172 ((Uint64 *)swap_buffer)[i] = SDL_SwapLE64(((Uint64 *)buffer)[i]); in efwrite()
175 swap_buffer = buffer; in efwrite()
179 size_t f = fwrite(swap_buffer, size, num, stream); in efwrite()
181 if (swap_buffer != buffer) in efwrite()
[all …]
/dports/net/haproxy18/haproxy-1.8.30/src/
H A Dbuffer.c41 static THREAD_LOCAL char *swap_buffer = NULL; variable
45 swap_buffer = calloc(1, global.tune.bufsize); in init_buffer_per_thread()
46 if (swap_buffer == NULL) in init_buffer_per_thread()
53 free(swap_buffer); swap_buffer = NULL; in deinit_buffer_per_thread()
187 memcpy(swap_buffer + buf->size - buf->o, bo_ptr(buf), block1); in buffer_slow_realign()
188 memcpy(swap_buffer + buf->size - block2, buf->data, block2); in buffer_slow_realign()
198 memcpy(swap_buffer, bi_ptr(buf), block1); in buffer_slow_realign()
199 memcpy(swap_buffer + block1, buf->data, block2); in buffer_slow_realign()
202 memcpy(buf->data, swap_buffer, buf->i); in buffer_slow_realign()
203 memcpy(buf->data + buf->size - buf->o, swap_buffer + buf->size - buf->o, buf->o); in buffer_slow_realign()
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/DSTRUCT/Source/
H A Dpqueue.c52 static char* swap_buffer = NULL; variable
67 LG_memcpy(swap_buffer,NTH(q,i),q->elemsize); in swapelems()
69 LG_memcpy(NTH(q,j),swap_buffer,q->elemsize); in swapelems()
146 if (swap_buffer == NULL) in pqueue_init()
147 swap_buffer = malloc(elemsize); in pqueue_init()
150 free(swap_buffer); in pqueue_init()
151 swap_buffer = malloc(elemsize); in pqueue_init()
154 if (swap_buffer == NULL) return ERR_NOMEM; in pqueue_init()
/dports/games/alex4/alex4src/src/
H A Dscript.c41 BITMAP *swap_buffer; variable
289 blit(buffer, swap_buffer, 0, 0, 0, 0, 160, 120); in cmd_showbmp()
295 clear_to_color(swap_buffer, 2); in cmd_showbmp()
300 blit(swap_buffer, buffer, 0, 0, 0, 0, 160, 120); in cmd_savebmp()
310 draw_frame(swap_buffer, 0); in cmd_drawmap()
407 blit_to_screen(swap_buffer); in cmd_blit()
527 blit(buffer, swap_buffer, 0, 0, 0, 0, 160, 120); in cmd_run()
537 draw_sprite(swap_buffer, o->bmp[frame], o->x, o->y); in cmd_run()
552 blit_to_screen(swap_buffer); in cmd_run()
593 swap_buffer = create_bitmap(160, 120); in run_script()
[all …]
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/externals/fetk/gamer/src/biom/
H A DReadWriteMesh.C181 swap_buffer((char *)minext, 3, sizeof(float)); in ReadRawiv()
182 swap_buffer((char *)maxext, 3, sizeof(float)); in ReadRawiv()
183 swap_buffer((char *)&nverts, 1, sizeof(int)); in ReadRawiv()
184 swap_buffer((char *)&ncells, 1, sizeof(int)); in ReadRawiv()
215 swap_buffer((char *)orig, 3, sizeof(float)); in ReadRawiv()
216 swap_buffer((char *)span, 3, sizeof(float)); in ReadRawiv()
570 swap_buffer((char *)min, 3, sizeof(float)); in write_rawiv_float()
571 swap_buffer((char *)max, 3, sizeof(float)); in write_rawiv_float()
575 swap_buffer((char *)orig, 3, sizeof(float)); in write_rawiv_float()
587 swap_buffer((char *)min, 3, sizeof(float)); in write_rawiv_float()
[all …]
/dports/net/haproxy17/haproxy-1.7.14/src/
H A Dbuffer.c158 memcpy(swap_buffer + buf->size - buf->o, bo_ptr(buf), block1); in buffer_slow_realign()
159 memcpy(swap_buffer + buf->size - block2, buf->data, block2); in buffer_slow_realign()
169 memcpy(swap_buffer, bi_ptr(buf), block1); in buffer_slow_realign()
170 memcpy(swap_buffer + block1, buf->data, block2); in buffer_slow_realign()
173 memcpy(buf->data, swap_buffer, buf->i); in buffer_slow_realign()
174 memcpy(buf->data + buf->size - buf->o, swap_buffer + buf->size - buf->o, buf->o); in buffer_slow_realign()
/dports/multimedia/libva-intel-hybrid-driver/intel-hybrid-driver-1.0.2/src/
H A Dmedia_drv_output_dri.c68 dri_swap_buffer_func swap_buffer; member
114 offsetof (struct dri_vtable, swap_buffer)}, in media_output_dri_init()
122 offsetof (struct dri_vtable, swap_buffer)}, in media_output_dri_init()
235 dri_vtable->swap_buffer(ctx, dri_drawable); in media_put_surface_dri()
/dports/devel/py-distributed/distributed-2021.11.2/distributed/diagnostics/
H A Deventstream.py26 def swap_buffer(scheduler, es): function
67 "function": dumps_function(swap_buffer),
/dports/multimedia/libva-intel-driver/intel-vaapi-driver-2.4.1/src/
H A Di965_output_dri.c42 dri_swap_buffer_func swap_buffer; member
68 offsetof(struct dri_vtable, swap_buffer) in i965_output_dri_init()
200 dri_vtable->swap_buffer(ctx, dri_drawable); in i965_put_surface_dri()
/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/mupen64plus-core/src/main/
H A Dutil.c45 void swap_buffer(void *buffer, size_t length, size_t count) in swap_buffer() function
71 swap_buffer(buffer, length, count); in to_little_endian_buffer()
78 swap_buffer(buffer, length, count); in to_big_endian_buffer()
/dports/audio/xanalyser/xanalyser-1.32/src/
H A Dpcm-cdr.cc158 swap_buffer (buffer, k);
168 swap_buffer (buffer, frames);
/dports/audio/libao/libao-1.2.0/src/
H A Daudio_out.c457 device->swap_buffer = NULL; in _create_device()
476 temp = realloc(device->swap_buffer, min_size); in _realloc_swap_buffer()
478 device->swap_buffer = temp; in _realloc_swap_buffer()
1391 if (device->swap_buffer != NULL) { in ao_play()
1400 _buffer_zero(device->swap_buffer,i,device->bytewidth,device->output_channels, in ao_play()
1403 … _buffer_permute_swap(device->swap_buffer,i,device->bytewidth,device->output_channels, in ao_play()
1406 _buffer_permute(device->swap_buffer,i,device->bytewidth,device->output_channels, in ao_play()
1410 playback_buffer = device->swap_buffer; in ao_play()
1436 if (device->swap_buffer != NULL) in ao_close()
1437 free(device->swap_buffer); in ao_close()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/media/pci/ngene/
H A Dngene-dvb.c120 static void swap_buffer(u32 *p, u32 len) in swap_buffer() function
167 swap_buffer(buf, len); in tsin_exchange()
268 swap_buffer((u32 *)buf, alen); in tsout_exchange()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/media/pci/ngene/
H A Dngene-dvb.c120 static void swap_buffer(u32 *p, u32 len) in swap_buffer() function
167 swap_buffer(buf, len); in tsin_exchange()
268 swap_buffer((u32 *)buf, alen); in tsout_exchange()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/media/pci/ngene/
H A Dngene-dvb.c120 static void swap_buffer(u32 *p, u32 len) in swap_buffer() function
167 swap_buffer(buf, len); in tsin_exchange()
268 swap_buffer((u32 *)buf, alen); in tsout_exchange()
/dports/databases/percona57-server/percona-server-5.7.36-39/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()
H A Dgcs_xcom_interface.cc1142 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1160 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1188 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1207 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1218 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1236 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1242 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()
H A Dgcs_xcom_interface.cc1142 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1160 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1188 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1207 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1218 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1236 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
1242 free(p.swap_buffer(NULL, 0)); in do_cb_xcom_receive_data()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()
/dports/databases/percona57-client/percona-server-5.7.36-39/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()
/dports/databases/mysql57-client/mysql-5.7.36/rapid/plugin/group_replication/libmysqlgcs/src/bindings/xcom/
H A Dgcs_message_stage_lz4.cc92 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in apply()
168 old_buffer= packet.swap_buffer(new_buffer, new_capacity); in revert()

1234