Home
last modified time | relevance | path

Searched refs:rowbuf (Results 1 – 25 of 254) sorted by relevance

1234567891011

/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/utilint/
H A DStatLoggerTest.java40 rowbuf.setLength(0); in testBasic()
47 header = rowbuf.toString(); in testBasic()
49 rowbuf.setLength(0); in testBasic()
54 rowbuf.append(i); in testBasic()
79 sl.log(rowbuf.toString()); in testBasic()
107 sl.log(rowbuf.toString()); in testBasic()
143 rowbuf.setLength(0); in testDelta()
150 header = rowbuf.toString(); in testDelta()
151 rowbuf.setLength(0); in testDelta()
156 rowbuf.append(i); in testDelta()
[all …]
/dports/science/hypre/hypre-2.23.0/src/distributed_matrix/
H A Ddistributed_matrix_ISIS.cc50 RowBuf *rowbuf = new RowBuf; in hypre_InitializeDistributedMatrixISIS() local
51 rowbuf->ind = new HYPRE_Int[num_cols]; in hypre_InitializeDistributedMatrixISIS()
54 dm->auxiliary_data = (void *) rowbuf; in hypre_InitializeDistributedMatrixISIS()
70 delete rowbuf->ind; in hypre_FreeDistributedMatrixISIS()
71 delete rowbuf->val; in hypre_FreeDistributedMatrixISIS()
72 delete rowbuf; in hypre_FreeDistributedMatrixISIS()
128 RowBuf *rowbuf; in hypre_GetDistributedMatrixRowISIS() local
133 mat->getRow(row+1, temp, rowbuf->val, rowbuf->ind); in hypre_GetDistributedMatrixRowISIS()
149 rowbuf->ind[temp] = row+1; in hypre_GetDistributedMatrixRowISIS()
162 *col_ind = rowbuf->ind; in hypre_GetDistributedMatrixRowISIS()
[all …]
H A Ddistributed_matrix_ISIS.c50 RowBuf *rowbuf = new RowBuf; in hypre_InitializeDistributedMatrixISIS() local
52 rowbuf->val = new HYPRE_Real[num_cols]; in hypre_InitializeDistributedMatrixISIS()
54 dm->auxiliary_data = (void *) rowbuf; in hypre_InitializeDistributedMatrixISIS()
70 delete rowbuf->ind; in hypre_FreeDistributedMatrixISIS()
71 delete rowbuf->val; in hypre_FreeDistributedMatrixISIS()
72 delete rowbuf; in hypre_FreeDistributedMatrixISIS() local
128 RowBuf *rowbuf; in hypre_GetDistributedMatrixRowISIS() local
133 mat->getRow(row+1, temp, rowbuf->val, rowbuf->ind); in hypre_GetDistributedMatrixRowISIS()
149 rowbuf->ind[temp] = row+1; in hypre_GetDistributedMatrixRowISIS()
162 *col_ind = rowbuf->ind; in hypre_GetDistributedMatrixRowISIS()
[all …]
/dports/graphics/plotutils/plotutils-2.6/libplot/
H A Dn_write.c153 unsigned char *rowbuf; in _pl_n_write_pbm() local
188 free (rowbuf); in _pl_n_write_pbm()
225 unsigned char *rowbuf; in _pl_n_write_pbm() local
262 free (rowbuf); in _pl_n_write_pbm()
324 unsigned char *rowbuf; in _pl_n_write_pgm() local
339 free (rowbuf); in _pl_n_write_pgm()
379 unsigned char *rowbuf; in _pl_n_write_pgm() local
395 free (rowbuf); in _pl_n_write_pgm()
461 unsigned char *rowbuf; in _pl_n_write_ppm() local
478 free (rowbuf); in _pl_n_write_ppm()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/VideoPlayer/DVDCodecs/Overlay/contrib/
H A Dcc_decoder.c172 int pos = rowbuf->pos; in ccbuf_add_char()
183 if (rowbuf->pac_attr_chg && !rowbuf->attr_chg && !left_displayable) in ccbuf_add_char()
186 rowbuf->cells[pos].attributes = rowbuf->pac_attr; in ccbuf_add_char()
191 rowbuf->cells[pos].midrow_attr = rowbuf->attr_chg; in ccbuf_add_char()
192 rowbuf->pos++; in ccbuf_add_char()
194 if (rowbuf->num_chars < rowbuf->pos) in ccbuf_add_char()
195 rowbuf->num_chars = rowbuf->pos; in ccbuf_add_char()
197 rowbuf->attr_chg = 0; in ccbuf_add_char()
217 rowbuf->pos = column; in ccbuf_set_cursor()
218 rowbuf->attr_chg = 0; in ccbuf_set_cursor()
[all …]
/dports/graphics/tachyon/tachyon/src/
H A Dwinbmp.c37 unsigned char * rowbuf = NULL; in writebmp() local
63 rowbuf = (unsigned char *) malloc(rowsz); in writebmp()
64 if (rowbuf != NULL) { in writebmp()
65 memset(rowbuf, 0, rowsz); /* clear the buffer (and padding) to black */ in writebmp()
73 rowbuf[i ] = img[addr + i + 2]; /* blue */ in writebmp()
74 rowbuf[i + 1] = img[addr + i + 1]; /* green */ in writebmp()
75 rowbuf[i + 2] = img[addr + i ]; /* red */ in writebmp()
78 fwrite(rowbuf, rowsz, 1, dfile); /* write the whole row of pixels */ in writebmp()
80 free(rowbuf); in writebmp()
/dports/multimedia/libxine/xine-lib-1.2.11/src/spu_dec/
H A Dcc_decoder.c522 rowbuf->pos - rowbuf->num_chars); in ccrow_fill_transp()
524 for (i = rowbuf->num_chars; i < rowbuf->pos; i++) { in ccrow_fill_transp()
736 if (rowbuf->pac_attr_chg && !rowbuf->attr_chg && !left_displayable) { in ccbuf_add_char()
738 rowbuf->cells[pos].attributes = rowbuf->pac_attr; in ccbuf_add_char()
745 rowbuf->cells[pos].midrow_attr = rowbuf->attr_chg; in ccbuf_add_char()
746 rowbuf->pos++; in ccbuf_add_char()
748 if (rowbuf->num_chars < rowbuf->pos) in ccbuf_add_char()
749 rowbuf->num_chars = rowbuf->pos; in ccbuf_add_char()
751 rowbuf->attr_chg = 0; in ccbuf_add_char()
771 rowbuf->pos = column; in ccbuf_set_cursor()
[all …]
/dports/graphics/imageworsener/imageworsener-1.3.4/src/
H A Dimagew-pnm.c488 iw_byte *rowbuf; member
568 if(!wctx->rowbuf) goto done; in iwpnm_write_rgb_main()
604 iwpnm_write(wctx, wctx->rowbuf, outrowsize); in iwpnm_write_rgb_main()
656 if(!wctx->rowbuf) goto done; in iwpnm_write_rgba_main()
668 iwpnm_write(wctx, wctx->rowbuf, outrowsize); in iwpnm_write_rgba_main()
740 if(!wctx->rowbuf) goto done; in iwpnm_write_gray_main()
807 if(!wctx->rowbuf) goto done; in iwpnm_write_graya_main()
845 if(!wctx->rowbuf) goto done; in iwpnm_write_pbm_main()
852 memset(wctx->rowbuf, 0, outrowsize); in iwpnm_write_pbm_main()
855 wctx->rowbuf[i/8] |= 1<<(7-i%8); in iwpnm_write_pbm_main()
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/editor/
H A Dpnmconvol.c989 tuple ** rowbuf; in allocRowbuf() local
991 MALLOCARRAY(rowbuf, height); in allocRowbuf()
993 if (rowbuf == NULL) in allocRowbuf()
1002 return rowbuf; in allocRowbuf()
1016 free(rowbuf); in freeRowbuf()
1147 circMap[i] = rowbuf[row]; in setupCircMap()
1150 circMap[i] = rowbuf[row]; in setupCircMap()
1211 tuple ** rowbuf; in convolveGeneral() local
1580 tuple ** rowbuf; in convolveMean() local
1918 tuple ** rowbuf; in convolveHorizontal() local
[all …]
/dports/databases/fpc-mysql/fpc-3.2.2/packages/mysql/examples/
H A Dtestdb3.pp16 rowbuf : TMYSQL_ROW;
70 rowbuf := mysql_fetch_row(recbuf);
71 while (rowbuf <>nil) do
73 Write ('(Id: ', rowbuf[0]);
74 Write (', Name: ', rowbuf[1]);
75 Writeln(', Email : ', rowbuf[2],')');
76 rowbuf := mysql_fetch_row(recbuf);
H A Dtestdb4.pp16 rowbuf : TMYSQL_ROW;
71 rowbuf := mysql_fetch_row(recbuf);
72 while (rowbuf <>nil) do
74 Write ('(Id: ', rowbuf[0]);
75 Write (', Name: ', rowbuf[1]);
76 Writeln(', Email : ', rowbuf[2],')');
77 rowbuf := mysql_fetch_row(recbuf);
/dports/lang/fpc-source/fpc-3.2.2/packages/mysql/examples/
H A Dtestdb3.pp16 rowbuf : TMYSQL_ROW;
70 rowbuf := mysql_fetch_row(recbuf);
71 while (rowbuf <>nil) do
73 Write ('(Id: ', rowbuf[0]);
74 Write (', Name: ', rowbuf[1]);
75 Writeln(', Email : ', rowbuf[2],')');
76 rowbuf := mysql_fetch_row(recbuf);
H A Dtestdb4.pp16 rowbuf : TMYSQL_ROW;
71 rowbuf := mysql_fetch_row(recbuf);
72 while (rowbuf <>nil) do
74 Write ('(Id: ', rowbuf[0]);
75 Write (', Name: ', rowbuf[1]);
76 Writeln(', Email : ', rowbuf[2],')');
77 rowbuf := mysql_fetch_row(recbuf);
/dports/graphics/megapov/megapov-1.2.1/libraries/tiff/tools/
H A Dfax2tiff.c46 char *rowbuf; variable
194 rowbuf = _TIFFmalloc(TIFFhowmany(xsize,8)); in main()
196 if (rowbuf == NULL || refbuf == NULL) { in main()
311 _TIFFfree(rowbuf); in main()
346 ok = (*tifin->tif_decoderow)(tifin, (tdata_t) rowbuf, in copyFaxFile()
347 sizeof (rowbuf), 0); in copyFaxFile()
352 _TIFFmemcpy(rowbuf, refbuf, sizeof (rowbuf)); in copyFaxFile()
357 _TIFFmemcpy(refbuf, rowbuf, sizeof (rowbuf)); in copyFaxFile()
361 if (TIFFWriteScanline(tifout, rowbuf, row, 0) < 0) { in copyFaxFile()
368 if (TIFFWriteScanline(tifout, rowbuf, row, 0) < 0) { in copyFaxFile()
/dports/graphics/povray36/povray-3.6.1/libraries/tiff/tools/
H A Dfax2tiff.c46 char *rowbuf; variable
194 rowbuf = _TIFFmalloc(TIFFhowmany(xsize,8)); in main()
196 if (rowbuf == NULL || refbuf == NULL) { in main()
311 _TIFFfree(rowbuf); in main()
346 ok = (*tifin->tif_decoderow)(tifin, (tdata_t) rowbuf, in copyFaxFile()
347 sizeof (rowbuf), 0); in copyFaxFile()
352 _TIFFmemcpy(rowbuf, refbuf, sizeof (rowbuf)); in copyFaxFile()
357 _TIFFmemcpy(refbuf, rowbuf, sizeof (rowbuf)); in copyFaxFile()
361 if (TIFFWriteScanline(tifout, rowbuf, row, 0) < 0) { in copyFaxFile()
368 if (TIFFWriteScanline(tifout, rowbuf, row, 0) < 0) { in copyFaxFile()
/dports/games/pvpgn/pvpgn-1.8.5/src/bnetd/
H A Dsql_pgsql.c63 char ** rowbuf; member
130 res->rowbuf = xmalloc(sizeof(char *) * PQnfields(pgres)); in sql_pgsql_query_res()
191 res->rowbuf[i] = PQgetvalue(res->pgres, res->crow, i); in sql_pgsql_fetch_row()
193 if (res->rowbuf[i] && res->rowbuf[i][0] == '\0') res->rowbuf[i] = NULL; in sql_pgsql_fetch_row()
199 return res->rowbuf; in sql_pgsql_fetch_row()
210 if (res->rowbuf) xfree((void*)res->rowbuf); in sql_pgsql_free_result()
/dports/graphics/freeimage/FreeImage/Source/FreeImage/
H A DPluginG3.cpp104 BYTE *rowbuf = NULL; in copyFaxFile() local
115 rowbuf = (BYTE*) _TIFFmalloc(linesize); in copyFaxFile()
117 if (rowbuf == NULL || refbuf == NULL) { in copyFaxFile()
143 ok = (*tifin->tif_decoderow)(tifin, rowbuf, linesize, 0); in copyFaxFile()
148 _TIFFmemcpy(rowbuf, refbuf, linesize); in copyFaxFile()
153 _TIFFmemcpy(refbuf, rowbuf, linesize); in copyFaxFile()
157 FreeImage_WriteMemory(rowbuf, linesize, 1, memory); in copyFaxFile()
160 FreeImage_WriteMemory(rowbuf, linesize, 1, memory); in copyFaxFile()
170 _TIFFfree(rowbuf); in copyFaxFile()
182 if(rowbuf) _TIFFfree(rowbuf); in copyFaxFile()
/dports/databases/grass7/grass-7.8.6/imagery/i.his.rgb/
H A Dopenfiles.c10 int fd_input[3], int fd_output[3], CELL * rowbuf[3]) in openfiles()
18 rowbuf[0] = Rast_allocate_c_buf(); in openfiles()
19 rowbuf[1] = Rast_allocate_c_buf(); in openfiles()
20 rowbuf[2] = Rast_allocate_c_buf(); in openfiles()
/dports/databases/grass7/grass-7.8.6/imagery/i.rgb.his/
H A Dopenfiles.c10 int fd_input[3], int fd_output[3], CELL * rowbuf[3]) in openfiles()
22 rowbuf[0] = Rast_allocate_c_buf(); in openfiles()
23 rowbuf[1] = Rast_allocate_c_buf(); in openfiles()
24 rowbuf[2] = Rast_allocate_c_buf(); in openfiles()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC0/
H A DJDBCResultSet.java82 this.rowbuf = null;
133 if (rowbuf == null) {
801 tr.newrow(rowbuf);
802 rowbuf = null;
848 System.arraycopy(rowbuf, 0, rd, 0, rowbuf.length);
849 rowbuf = null;
879 rowbuf = null;
921 rowbuf = null;
926 rowbuf = null;
940 rowbuf = null;
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC1/
H A DJDBCResultSet.java82 this.rowbuf = null;
137 if (rowbuf == null) {
778 tr.newrow(rowbuf);
779 rowbuf = null;
825 System.arraycopy(rowbuf, 0, rd, 0, rowbuf.length);
826 rowbuf = null;
856 rowbuf = null;
898 rowbuf = null;
903 rowbuf = null;
917 rowbuf = null;
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2/
H A DJDBCResultSet.java88 this.rowbuf = null;
139 if (rowbuf == null) {
852 tr.newrow(rowbuf);
853 rowbuf = null;
899 System.arraycopy(rowbuf, 0, rd, 0, rowbuf.length);
900 rowbuf = null;
930 rowbuf = null;
972 rowbuf = null;
977 rowbuf = null;
991 rowbuf = null;
[all …]
/dports/astro/astrometry/astrometry.net-0.85/util/
H A Dsearch-index.c131 char* rowbuf = NULL; in main() local
154 rowbuf = malloc(rowsize); in main()
167 if (fitstable_read_struct(tagtable, inds[j], rowbuf)) { in main()
173 memcpy(rowbuf + tagsize, radecs+2*j+0, sizeof(double)); in main()
174 memcpy(rowbuf + tagsize + sizeof(double), radecs+2*j+1, sizeof(double)); in main()
175 if (fitstable_write_struct(table, rowbuf)) { in main()
180 free(rowbuf); in main()
/dports/graphics/azpainterb/azpainterb-1.1.3/mlib/src/image/
H A DmSaveImage_gif.c38 uint8_t *rowbuf, member
113 p->rowbuf = (uint8_t *)mMalloc(param->width, FALSE); in _init()
114 if(!p->rowbuf) return MSAVEIMAGE_ERR_ALLOC; in _init()
137 ret = (param->send_row)(param, p->rowbuf, param->width); in _main_proc()
142 mGIFEncode_writeImage(p->gifenc, p->rowbuf, param->width); in _main_proc()
191 mFree(p->rowbuf); in mSaveImageGIF()
/dports/graphics/azpainter/azpainter-2.1.7/mlib/src/image/
H A DmSaveImage_gif.c38 uint8_t *rowbuf, member
113 p->rowbuf = (uint8_t *)mMalloc(param->width, FALSE); in _init()
114 if(!p->rowbuf) return MSAVEIMAGE_ERR_ALLOC; in _init()
137 ret = (param->send_row)(param, p->rowbuf, param->width); in _main_proc()
142 mGIFEncode_writeImage(p->gifenc, p->rowbuf, param->width); in _main_proc()
191 mFree(p->rowbuf); in mSaveImageGIF()

1234567891011