Searched refs:cache_idx (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Dpstcache.c48 pstcache_touch_bitmap(uint8 cache_id, uint16 cache_idx, uint32 stamp) argument
52 if (!IS_PERSISTENT(cache_id) || cache_idx >= BMPCACHE2_NUM_PSTCELLS)
56 rd_lseek_file(fd, 12 + cache_idx * (g_pstcache_Bpp * MAX_CELL_SIZE + sizeof(CELLHEADER)));
62 pstcache_load_bitmap(uint8 cache_id, uint16 cache_idx) argument
72 if (!IS_PERSISTENT(cache_id) || cache_idx >= BMPCACHE2_NUM_PSTCELLS)
76 rd_lseek_file(fd, cache_idx * (g_pstcache_Bpp * MAX_CELL_SIZE + sizeof(CELLHEADER)));
82 DEBUG(("Load bitmap from disk: id=%d, idx=%d, bmp=%p)\n", cache_id, cache_idx, bitmap));
83 cache_put_bitmap(cache_id, cache_idx, bitmap);
91 pstcache_save_bitmap(uint8 cache_id, uint16 cache_idx, uint8 * key, argument
97 if (!IS_PERSISTENT(cache_id) || cache_idx >
[all...]
H A Dcache.c409 cache_get_cursor(uint16 cache_idx) argument
413 if (cache_idx < NUM_ELEMENTS(g_cursorcache))
415 cursor = g_cursorcache[cache_idx];
420 error("get cursor %d\n", cache_idx);
426 cache_put_cursor(uint16 cache_idx, RD_HCURSOR cursor) argument
430 if (cache_idx < NUM_ELEMENTS(g_cursorcache))
432 old = g_cursorcache[cache_idx];
436 g_cursorcache[cache_idx] = cursor;
440 error("put cursor %d\n", cache_idx);
H A Dorders.c163 uint8 cache_idx; local
170 cache_idx = out_brush->pattern[0];
171 brush_data = cache_get_brush_data(colour_code, cache_idx);
451 in_uint16_le(s, os->cache_idx);
454 os->opcode, os->x, os->y, os->cx, os->cy, os->cache_id, os->cache_idx));
456 bitmap = cache_get_bitmap(os->cache_id, os->cache_idx);
506 in_uint16_le(s, os->cache_idx);
512 os->opcode, os->x, os->y, os->cx, os->cy, os->cache_id, os->cache_idx,
515 bitmap = cache_get_bitmap(os->cache_id, os->cache_idx);
930 uint16 cache_idx, bufsiz local
963 uint16 cache_idx, size; local
1021 uint16 cache_idx, bufsize; local
1197 uint8 cache_idx, colour_code, width, height, size, type; local
[all...]
H A Dorders.h156 uint16 cache_idx; member in struct:_TRIBLT_ORDER
173 uint16 cache_idx; member in struct:_MEMBLT_ORDER
309 uint16 cache_idx; member in struct:_RDP_RAW_BMPCACHE_ORDER
323 uint16 cache_idx; member in struct:_RDP_BMPCACHE_ORDER
H A Dproto.h59 RD_HCURSOR cache_get_cursor(uint16 cache_idx);
60 void cache_put_cursor(uint16 cache_idx, RD_HCURSOR cursor);
129 void pstcache_touch_bitmap(uint8 cache_id, uint16 cache_idx, uint32 stamp);
130 RD_BOOL pstcache_load_bitmap(uint8 cache_id, uint16 cache_idx);
131 RD_BOOL pstcache_save_bitmap(uint8 cache_id, uint16 cache_idx, uint8 * key, uint8 width,
H A Drdp.c1164 uint16 width, height, cache_idx, masklen, datalen; local
1170 in_uint16_le(s, cache_idx);
1189 cache_put_cursor(cache_idx, cursor);
1213 uint16 cache_idx; local
1215 in_uint16_le(s, cache_idx);
1216 ui_set_cursor(cache_get_cursor(cache_idx));
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/
H A Dib_pathrec.c241 unsigned int cache_idx; local
269 cache_idx = ( (ib_path_cache_idx++) % IB_NUM_CACHED_PATHS );
270 cached = &ib_path_cache[cache_idx];

Completed in 943 milliseconds