Searched refs:write_ptr (Results 1 - 11 of 11) sorted by relevance

/external/speex/libspeex/
H A Dbuffer.c47 int write_ptr; member in struct:SpeexBuffer_
57 st->write_ptr = 0;
78 end = st->write_ptr + len;
82 SPEEX_COPY(st->data + st->write_ptr, data, end1 - st->write_ptr);
86 SPEEX_COPY(st->data, data+end1 - st->write_ptr, end);
92 st->read_ptr = st->write_ptr;
94 st->write_ptr += len;
95 if (st->write_ptr > st->size)
96 st->write_ptr
[all...]
/external/libpng/
H A Dpngtest.c763 write_sTER_chunk(png_structp write_ptr) argument
770 png_write_chunk(write_ptr, sTER, &user_chunk_data.sTER_mode, 1);
774 write_vpAg_chunk(png_structp write_ptr) argument
789 png_write_chunk(write_ptr, vpAg, vpag_chunk_data, 9);
793 write_chunks(png_structp write_ptr, int location) argument
806 write_sTER_chunk(write_ptr);
809 write_vpAg_chunk(write_ptr);
870 png_structp write_ptr; local
877 png_structp write_ptr = NULL; local
918 write_ptr
[all...]
H A Dexample.c910 png_set_text(write_ptr, write_info_ptr, text_ptr, 3);
926 * png_write_info_before_PLTE(write_ptr, write_info_ptr);
/external/skia/third_party/libpng/
H A Dpngtest.c762 write_sTER_chunk(png_structp write_ptr) argument
769 png_write_chunk(write_ptr, sTER, &user_chunk_data.sTER_mode, 1);
773 write_vpAg_chunk(png_structp write_ptr) argument
788 png_write_chunk(write_ptr, vpAg, vpag_chunk_data, 9);
792 write_chunks(png_structp write_ptr, int location) argument
805 write_sTER_chunk(write_ptr);
808 write_vpAg_chunk(write_ptr);
869 png_structp write_ptr; local
876 png_structp write_ptr = NULL; local
917 write_ptr
[all...]
H A Dexample.c910 png_set_text(write_ptr, write_info_ptr, text_ptr, 3);
926 * png_write_info_before_PLTE(write_ptr, write_info_ptr);
/external/syslinux/com32/lib/libpng/
H A Dpngtest.c694 png_structp write_ptr; local
698 png_structp write_ptr = NULL; local
772 write_ptr =
777 write_ptr =
782 png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error,
790 write_info_ptr = png_create_info_struct(write_ptr);
791 write_end_info_ptr = png_create_info_struct(write_ptr);
807 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
808 png_destroy_write_struct(&write_ptr, &write_info_ptr);
823 if (setjmp(png_jmpbuf(write_ptr)))
[all...]
/external/syslinux/gpxe/src/drivers/net/
H A Detherfabric_nic.h104 unsigned int write_ptr; member in struct:efab_tx_queue
122 unsigned int write_ptr; member in struct:efab_rx_queue
H A Detherfabric.c3512 tx_queue->read_ptr = tx_queue->write_ptr = 0;
3513 rx_queue->read_ptr = rx_queue->write_ptr = 0;
3613 int ptr = rx_queue->write_ptr % EFAB_RXD_SIZE;
3641 int ptr = tx_queue->write_ptr % EFAB_TXD_SIZE;
3660 int fill_level = rx_queue->write_ptr - rx_queue->read_ptr;
3665 int buf_id = rx_queue->write_ptr % EFAB_NUM_RX_DESC;
3666 int desc_id = rx_queue->write_ptr % EFAB_RXD_SIZE;
3681 ++rx_queue->write_ptr;
3690 fill_level = rx_queue->write_ptr - rx_queue->read_ptr;
3745 fill_level = tx_queue->write_ptr
[all...]
/external/libpng/contrib/libtests/
H A Dtimepng.c84 FILE *write_ptr, FILE *read_ptr)
92 if (write_ptr != NULL)
96 io_copy.output = write_ptr;
83 read_by_row(png_structp png_ptr, png_infop info_ptr, FILE *write_ptr, FILE *read_ptr) argument
/external/libmojo/mojo/edk/system/
H A Ddata_pipe_unittest.cc689 void* write_ptr = nullptr; local
690 ASSERT_EQ(MOJO_RESULT_OK, BeginWriteData(&write_ptr, &num_bytes));
691 EXPECT_TRUE(write_ptr);
710 static_cast<int32_t*>(write_ptr)[0] = 123;
733 write_ptr = nullptr;
734 ASSERT_EQ(MOJO_RESULT_OK, BeginWriteData(&write_ptr, &num_bytes));
735 EXPECT_TRUE(write_ptr);
1359 void* write_ptr = nullptr; local
1360 ASSERT_EQ(MOJO_RESULT_OK, BeginWriteData(&write_ptr, &num_bytes));
1378 write_ptr
[all...]
H A Dcore_unittest.cc900 void* write_ptr = nullptr; local
903 core()->BeginWriteData(ph, &write_ptr, &num_bytes,
916 static_cast<char*>(write_ptr)[0] = 'C';
917 static_cast<char*>(write_ptr)[1] = 'D';
918 static_cast<char*>(write_ptr)[2] = 'E';
1152 void* write_ptr = nullptr; local
1155 core()->BeginWriteData(ph, &write_ptr, &num_bytes,
1183 static_cast<char*>(write_ptr)[0] = 'x';

Completed in 330 milliseconds