/reactos/dll/win32/wbemprox/ |
H A D | table.c | 101 UINT col_offset, row_size; in get_value() local 105 row_size = get_row_size( table ); in get_value() 106 ptr = table->data + row * row_size + col_offset; in get_value() 222 UINT col_offset, row_size; in set_value() local 228 row_size = get_row_size( table ); in set_value() 229 ptr = table->data + row * row_size + col_offset; in set_value()
|
H A D | builtin.c | 1462 static BOOL resize_table( struct table *table, UINT row_count, UINT row_size ) in resize_table() argument 1466 if (!(table->data = heap_alloc( row_count * row_size ))) return FALSE; in resize_table() 1474 if (!(data = heap_realloc( table->data, count * row_size ))) return FALSE; in resize_table()
|
/reactos/dll/win32/msi/ |
H A D | table.c | 397 UINT rawsize = 0, i, j, row_size, row_size_mem; in read_table_from_storage() local 411 if( rawsize % row_size ) in read_table_from_storage() 417 if ((t->row_count = rawsize / row_size)) in read_table_from_storage() 863 UINT rawsize, i, j, row_size, row_count; in save_table() local 882 rawsize = row_count * row_size; in save_table() 924 rawsize += row_size; in save_table() 1003 UINT row_size; member 1022 if( tv->columns[col-1].offset >= tv->row_size ) in TABLE_fetch_int() 1172 if( tv->columns[col-1].offset >= tv->row_size ) in table_set_bytes() 1490 row = calloc( 1, tv->row_size ); in table_create_new_row() [all …]
|
H A D | storages.c | 56 UINT row_size; member
|
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/ |
H A D | orders.h | 321 uint16 row_size; member
|
H A D | orders.c | 981 uint16 bufsize, pad2, row_size, final_size; in process_bmpcache() local 984 pad2 = row_size = final_size = 0xffff; /* Shut the compiler up */ in process_bmpcache() 1006 in_uint16_le(s, row_size); in process_bmpcache() 1012 …%d)\n", width, height, cache_id, cache_idx, bpp, size, pad1, bufsize, pad2, row_size, final_size)); in process_bmpcache()
|
/reactos/base/applications/mstsc/ |
H A D | orders.h | 317 uint16 row_size; member
|
H A D | orders.c | 957 uint16 bufsize, pad2, row_size, final_size; in process_bmpcache() local 960 pad2 = row_size = final_size = 0xffff; /* Shut the compiler up */ in process_bmpcache() 982 in_uint16_le(s, row_size); in process_bmpcache() 988 …%d)\n", width, height, cache_id, cache_idx, bpp, size, pad1, bufsize, pad2, row_size, final_size)); in process_bmpcache()
|
/reactos/dll/win32/windowscodecs/ |
H A D | jpegformat.c | 1068 int row_size; in JpegEncoder_Frame_WritePixels() local 1115 row_size = This->format->bpp / 8 * This->width; in JpegEncoder_Frame_WritePixels() 1119 swapped_data = HeapAlloc(GetProcessHeap(), 0, row_size); in JpegEncoder_Frame_WritePixels() 1133 memcpy(swapped_data, pbPixels + (cbStride * line), row_size); in JpegEncoder_Frame_WritePixels()
|
/reactos/dll/win32/gdiplus/ |
H A D | image.c | 1764 INT row_size, dib_stride; in GdipCreateBitmapFromScan0() local 1784 row_size = (width * PIXELFORMATBPP(format)+7) / 8; in GdipCreateBitmapFromScan0() 1785 dib_stride = (row_size + 3) & ~3; in GdipCreateBitmapFromScan0() 4606 UINT row_size = (lockeddata.Width * PIXELFORMATBPP(gdipformat) + 7)/8; in encode_image_wic() local 4613 hr = IWICBitmapFrameEncode_WritePixels(frameencode, 1, row_size, row_size, row); in encode_image_wic()
|