| /xsrc/external/mit/xditview/dist/ |
| H A D | parse.c | 48 static void ParseDrawFunction(DviWidget dw, char *buf); 49 static void ParseDeviceControl(DviWidget dw); 50 static void PutCharacters(DviWidget dw, unsigned char *src, int len); 51 static void push_env(DviWidget dw); 52 static void pop_env(DviWidget dw); 56 charWidth(DviWidget dw, XftFont *font, char c) argument 60 XftTextExtents8(XtDisplay(dw), font, (unsigned char *) &c, 1, &extents); 64 #define charWidth(dw,fi,c) (\ 73 ParseInput(DviWidget dw) argument 81 if (!dw 261 push_env(DviWidget dw) argument 280 pop_env(DviWidget dw) argument 288 InitTypesetter(DviWidget dw) argument 298 SetFont(DviWidget dw) argument 308 PutCharacters(DviWidget dw,unsigned char * src,int len) argument 398 ParseDrawFunction(DviWidget dw,char * buf) argument 440 ParseDeviceControl(DviWidget dw) argument [all...] |
| H A D | draw.c | 78 static void DrawSplineSegments(DviWidget dw); 86 DrawText(DviWidget dw) argument 88 XftFont *font = dw->dvi.cache.font; 90 for (int i = 0; i <= dw->dvi.cache.index; i++) { 91 if (dw->dvi.cache.cache[i].font) 92 font = dw->dvi.cache.cache[i].font; 93 XftDrawString8(dw->dvi.draw, &dw->dvi.black, 95 dw->dvi.cache.cache[i].x, 96 dw 104 FlushCharCache(DviWidget dw) argument 129 SetGCForDraw(DviWidget dw) argument 145 DrawLine(DviWidget dw,int x,int y) argument 156 DrawCircle(DviWidget dw,int diameter) argument 167 DrawEllipse(DviWidget dw,int a,int b) argument 185 DrawArc(DviWidget dw,int x0,int y0,int x1,int y1) argument 277 DrawSpline(DviWidget dw,const char * s,int len) argument 409 DrawSplineSegments(DviWidget dw) argument [all...] |
| H A D | lex.c | 13 DviGetAndPut(DviWidget dw, int *cp) argument 15 if (dw->dvi.ungot) { 16 dw->dvi.ungot = 0; 17 *cp = getc(dw->dvi.file); 20 *cp = getc(dw->dvi.file); 21 putc(*cp, dw->dvi.tmpFile); 27 GetLine(DviWidget dw, char *Buffer, int Length) argument 34 while ((!p || i++ < Length) && DviGetC(dw, &c) != EOF && c != '\n') { 39 DviUngetC(dw, c); 46 GetWord(DviWidget dw, cha argument 68 GetNumber(DviWidget dw) argument [all...] |
| H A D | page.c | 19 MapPageNumberToFileMap(DviWidget dw, int number) argument 23 for (m = dw->dvi.file_map; m; m = m->next) { 42 ForgetPagePositions(DviWidget dw) argument 44 DestroyFileMap(dw->dvi.file_map); 45 dw->dvi.file_map = NULL; 49 RememberPagePosition(DviWidget dw, int number) argument 51 DviFileMap *m = MapPageNumberToFileMap(dw, number); 56 m->next = dw->dvi.file_map; 57 dw->dvi.file_map = m; 59 if (dw 66 SearchPagePosition(DviWidget dw,int number) argument 76 FileSeek(DviWidget dw,long position) argument [all...] |
| H A D | Dvi.c | 218 DviWidget dw = (DviWidget) new; local in function:Initialize 220 dw->dvi.tmpFile = NULL; 221 dw->dvi.readingTmp = 0; 222 dw->dvi.ungot = 0; 223 dw->dvi.normal_GC = NULL; 224 dw->dvi.file_map = NULL; 225 dw->dvi.fonts = NULL; 226 dw->dvi.font_map = NULL; 227 dw->dvi.current_page = 0; 228 dw 247 DviWidget dw = (DviWidget) w; local in function:Realize 284 DviWidget dw = (DviWidget) w; local in function:Destroy 299 DviWidget dw = (DviWidget) w; local in function:Redisplay 322 RequestDesiredSize(DviWidget dw) argument 399 DviWidget dw = (DviWidget) widget; local in function:SetValuesHook 412 CloseFile(DviWidget dw) argument 420 OpenFile(DviWidget dw) argument 450 DviWidget dw = (DviWidget) w; local in function:QueryGeometry 462 SetDeviceResolution(DviWidget dw,int resolution) argument 472 ShowDvi(DviWidget dw) argument [all...] |
| H A D | DviP.h | 202 #define DviGetIn(dw,cp)\ 203 (dw->dvi.tmpFile ? (\ 204 DviGetAndPut (dw, cp) \ 206 (*cp = getc (dw->dvi.file))\ 209 #define DviGetC(dw, cp)\ 210 (dw->dvi.readingTmp ? (\ 211 ((*cp = getc (dw->dvi.tmpFile)) == EOF) ? (\ 212 fseek (dw->dvi.tmpFile, 0l, SEEK_END),\ 213 (dw->dvi.readingTmp = 0),\ 214 DviGetIn (dw,c 248 HorizontalMove(DviWidget dw,int delta) argument 254 HorizontalGoto(DviWidget dw,int NewPosition) argument 260 VerticalMove(DviWidget dw,int delta) argument 266 VerticalGoto(DviWidget dw,int NewPosition) argument [all...] |
| H A D | font.c | 35 LookupFontByPosition(DviWidget dw, int position) argument 39 for (f = dw->dvi.fonts; f; f = f->next) { 47 LookupFontSizeBySize(DviWidget dw, DviFontList *f, int size) argument 68 fontName.ResolutionX = dw->dvi.screen_resolution; 69 fontName.ResolutionY = dw->dvi.screen_resolution; 70 fontName.PointSize = size * 10 / dw->dvi.size_scale; 147 DisposeFontSizes(DviWidget dw, DviFontSizeList *fs) argument 157 XftFontClose(XtDisplay(dw), fs->font); 159 XUnloadFont(XtDisplay(dw), fs->font->fid); 168 ResetFonts(DviWidget dw) argument 188 InstallFontSizes(DviWidget dw,const char * x_name,Boolean * scalablep) argument 239 InstallFont(DviWidget dw,int position,const char * dvi_name,const char * x_name) argument 286 MapDviNameToXName(DviWidget dw,const char * dvi_name) argument 303 ParseFontMap(DviWidget dw) argument 355 SetFontPosition(DviWidget dw,int position,const char * dvi_name,const char * extra) argument 369 QueryFont(DviWidget dw,int position,int size) argument 415 QueryFontMap(DviWidget dw,int position) argument [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xwin/ |
| H A D | winmisc.c | 41 winCountBits(DWORD dw) argument 45 while (dw) { 46 dwBits += (dw & 1); 47 dw >>= 1;
|
| /xsrc/external/mit/MesaLib/src/intel/genxml/ |
| H A D | gen_rt_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 199 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_BINDLESS_SHADER_RECORD_pack 201 dw[0] = 206 dw[1] = 0; 219 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_GENERAL_SBT_HANDLE_pack 221 GFX_BINDLESS_SHADER_RECORD_pack(data, &dw[0], &values->General); 223 dw[2] = 0; 225 dw[3] = 0; 227 dw[ 247 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_TRIANGLES_SBT_HANDLE_pack 273 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_PROCEDURAL_SBT_HANDLE_pack 299 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_SHADER_TABLE_pack 333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_DISPATCH_GLOBALS_pack 390 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_VEC3_pack 414 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_pack 472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_INTERNAL_NODE_pack 581 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_PRIMITIVE_LEAF_DESCRIPTOR_pack 610 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_QUAD_LEAF_pack 683 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_INSTANCE_LEAF_pack 798 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX_RT_BVH_PROCEDURAL_LEAF_pack [all...] |
| H A D | gen45_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 311 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_CC_VIEWPORT_pack 313 dw[0] = 316 dw[1] = 377 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_CLIP_STATE_pack 381 dw[0] = __gen_address(data, &dw[0], values->KernelStartPointer, v0, 6, 31); 383 dw[1] = 394 dw[ 449 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_CLIP_VIEWPORT_pack 522 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_COLOR_CALC_STATE_pack 620 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_GS_STATE_pack 721 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_RENDER_SURFACE_STATE_pack 777 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_SAMPLER_BORDER_COLOR_STATE_pack 871 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_SAMPLER_STATE_pack 921 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_SCISSOR_RECT_pack 1014 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_SF_STATE_pack 1092 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_SF_VIEWPORT_pack 1132 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_VERTEX_BUFFER_STATE_pack 1166 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_VERTEX_ELEMENT_STATE_pack 1219 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_VS_STATE_pack 1321 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_WM_STATE_pack 1412 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DPRIMITIVE_pack 1466 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_AA_LINE_PARAMETERS_pack 1511 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_BINDING_TABLE_POINTERS_pack 1562 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_CONSTANT_COLOR_pack 1641 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_DEPTH_BUFFER_pack 1705 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_DRAWING_RECTANGLE_pack 1750 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP_pack 1792 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_INDEX_BUFFER_pack 1836 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_LINE_STIPPLE_pack 1886 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_PIPELINED_POINTERS_pack 1936 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_POLY_STIPPLE_OFFSET_pack 1973 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_POLY_STIPPLE_PATTERN_pack 2101 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_VERTEX_BUFFERS_pack 2133 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_VERTEX_ELEMENTS_pack 2164 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_3DSTATE_VF_STATISTICS_pack 2200 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_CONSTANT_BUFFER_pack 2239 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_CS_URB_STATE_pack 2278 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_MI_FLUSH_pack 2310 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_MI_LOAD_REGISTER_IMM_pack 2348 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_MI_STORE_DATA_IMM_pack 2389 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_MI_STORE_REGISTER_MEM_pack 2427 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_PIPELINE_SELECT_pack 2475 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_PIPE_CONTROL_pack 2533 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_STATE_BASE_ADDRESS_pack 2586 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_STATE_SIP_pack 2633 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_URB_FENCE_pack 2693 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_XY_COLOR_BLT_pack 2759 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_XY_SETUP_BLT_pack 2833 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_XY_SRC_COPY_BLT_pack 2897 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX45_XY_TEXT_IMMEDIATE_BLT_pack [all...] |
| H A D | gen4_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 311 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_CC_VIEWPORT_pack 313 dw[0] = 316 dw[1] = 376 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_CLIP_STATE_pack 380 dw[0] = __gen_address(data, &dw[0], values->KernelStartPointer, v0, 6, 31); 382 dw[1] = 393 dw[ 447 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_CLIP_VIEWPORT_pack 520 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_COLOR_CALC_STATE_pack 616 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_GS_STATE_pack 711 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_RENDER_SURFACE_STATE_pack 763 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_SAMPLER_BORDER_COLOR_STATE_pack 855 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_SAMPLER_STATE_pack 903 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_SCISSOR_RECT_pack 992 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_SF_STATE_pack 1068 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_SF_VIEWPORT_pack 1108 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_VERTEX_BUFFER_STATE_pack 1142 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_VERTEX_ELEMENT_STATE_pack 1195 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_VS_STATE_pack 1294 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_WM_STATE_pack 1384 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DPRIMITIVE_pack 1437 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_BINDING_TABLE_POINTERS_pack 1488 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_CONSTANT_COLOR_pack 1565 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_DEPTH_BUFFER_pack 1625 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_DRAWING_RECTANGLE_pack 1670 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP_pack 1712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_INDEX_BUFFER_pack 1756 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_LINE_STIPPLE_pack 1806 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_PIPELINED_POINTERS_pack 1856 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_POLY_STIPPLE_OFFSET_pack 1893 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_POLY_STIPPLE_PATTERN_pack 2021 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_VERTEX_BUFFERS_pack 2053 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_VERTEX_ELEMENTS_pack 2084 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_3DSTATE_VF_STATISTICS_pack 2120 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_CONSTANT_BUFFER_pack 2159 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_CS_URB_STATE_pack 2198 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_MI_FLUSH_pack 2230 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_MI_LOAD_REGISTER_IMM_pack 2268 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_MI_STORE_DATA_IMM_pack 2309 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_MI_STORE_REGISTER_MEM_pack 2347 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_PIPELINE_SELECT_pack 2392 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_PIPE_CONTROL_pack 2448 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_STATE_BASE_ADDRESS_pack 2501 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_STATE_SIP_pack 2548 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_URB_FENCE_pack 2608 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_XY_COLOR_BLT_pack 2674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_XY_SETUP_BLT_pack 2748 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_XY_SRC_COPY_BLT_pack 2812 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX4_XY_TEXT_IMMEDIATE_BLT_pack [all...] |
| H A D | gen9_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 429 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_BODY_pack 431 dw[0] = 435 dw[1] = 440 __gen_address(data, &dw[2], values->Buffer[0], 0, 5, 63); 441 dw[2] = v2_address; 442 dw[3] = v2_address >> 32; 445 __gen_address(data, &dw[4], values->Buffer[1], 0, 5, 63); 446 dw[ 471 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BINDING_TABLE_EDIT_ENTRY_pack 488 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BINDING_TABLE_STATE_pack 523 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BLEND_STATE_ENTRY_pack 566 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BLEND_STATE_pack 591 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CC_VIEWPORT_pack 619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_COLOR_CALC_STATE_pack 656 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_FILTER_COEFFICIENT_pack 690 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_FRAMEDELTAQP_pack 715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_FRAMEDELTAQPRANGE_pack 742 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GATHER_CONSTANT_ENTRY_pack 773 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEMORYADDRESSATTRIBUTES_pack 795 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 828 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HCP_REF_LIST_ENTRY_pack 853 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HCP_TILE_POSITION_IN_CTB_pack 875 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 895 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 916 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HEVC_ARBITRATION_PRIORITY_pack 933 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 951 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HUC_VIRTUAL_ADDR_REGION_pack 1007 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1099 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_INTERFACE_DESCRIPTOR_DATA_pack 1158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1242 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_MATH_ALU_INSTRUCTION_pack 1263 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PALETTE_ENTRY_pack 1391 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_RENDER_SURFACE_STATE_pack 1508 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_ROUNDINGPRECISIONTABLE_3_BITS_pack 1531 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SAMPLER_BORDER_COLOR_STATE_pack 1638 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SAMPLER_STATE_pack 1693 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 1737 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SCISSOR_RECT_pack 1766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 1962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SFC_AVS_STATE_BODY_pack 2256 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SFC_IEF_STATE_BODY_pack 2391 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SFC_LOCK_BODY_pack 2421 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SF_CLIP_VIEWPORT_pack 2495 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2521 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_DECL_pack 2543 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_DECL_ENTRY_pack 2588 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VDENC_SURFACE_CONTROL_BITS_pack 2610 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VDENC_PICTURE_pack 2651 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VDENC_SURFACE_STATE_FIELDS_pack 2693 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VERTEX_BUFFER_STATE_pack 2729 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VERTEX_ELEMENT_STATE_pack 2780 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DPRIMITIVE_pack 2843 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_AA_LINE_PARAMETERS_pack 2892 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_EDIT_DS_pack 2933 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_EDIT_GS_pack 2974 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_EDIT_HS_pack 3015 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3056 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3093 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3129 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3165 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3201 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3237 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3277 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3322 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_BLEND_STATE_POINTERS_pack 3360 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CC_STATE_POINTERS_pack 3399 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CHROMA_KEY_pack 3442 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CLEAR_PARAMS_pack 3509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CLIP_pack 3571 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_DS_pack 3608 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_GS_pack 3645 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_HS_pack 3682 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_PS_pack 3719 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_CONSTANT_VS_pack 3780 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_DEPTH_BUFFER_pack 3853 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_DRAWING_RECTANGLE_pack 3934 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_DS_pack 4022 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_CONSTANT_DS_pack 4074 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_CONSTANT_GS_pack 4126 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_CONSTANT_HS_pack 4180 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_CONSTANT_PS_pack 4236 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_CONSTANT_VS_pack 4284 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GATHER_POOL_ALLOC_pack 4382 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_GS_pack 4477 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_HIER_DEPTH_BUFFER_pack 4555 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_HS_pack 4634 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_INDEX_BUFFER_pack 4684 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_LINE_STIPPLE_pack 4728 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_MONOFILTER_SIZE_pack 4769 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_MULTISAMPLE_pack 4808 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_POLY_STIPPLE_OFFSET_pack 4845 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_POLY_STIPPLE_PATTERN_pack 5020 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PS_pack 5111 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PS_BLEND_pack 5177 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PS_EXTRA_pack 5228 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5266 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5304 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5342 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5380 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 5462 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_RASTER_pack 5531 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_RS_CONSTANT_POINTER_pack 5570 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 5602 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 5635 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 5671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 5707 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 5743 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 5779 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 5815 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLE_MASK_pack 5912 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SAMPLE_PATTERN_pack 6043 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SBE_pack 6133 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SBE_SWIZ_pack 6266 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SCISSOR_STATE_POINTERS_pack 6324 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SF_pack 6385 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SO_BUFFER_pack 6447 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_SO_DECL_LIST_pack 6496 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_STENCIL_BUFFER_pack 6564 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_STREAMOUT_pack 6640 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_TE_pack 6687 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_URB_CLEAR_pack 6726 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_URB_DS_pack 6766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_URB_GS_pack 6806 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_URB_HS_pack 6846 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_URB_VS_pack 6883 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VERTEX_BUFFERS_pack 6915 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VERTEX_ELEMENTS_pack 6951 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_pack 7021 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_COMPONENT_PACKING_pack 7096 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_INSTANCING_pack 7149 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_SGVS_pack 7188 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_STATISTICS_pack 7221 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VF_TOPOLOGY_pack 7257 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 7293 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 7360 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_VS_pack 7474 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_WM_pack 7524 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_WM_CHROMAKEY_pack 7579 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_WM_DEPTH_STENCIL_pack 7651 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_3DSTATE_WM_HZ_OP_pack 7706 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GPGPU_CSR_BASE_ADDRESS_pack 7763 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GPGPU_WALKER_pack 7842 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_CURBE_LOAD_pack 7884 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 7949 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_OBJECT_pack 8027 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_OBJECT_GRPID_pack 8091 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_OBJECT_PRT_pack 8209 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_OBJECT_WALKER_pack 8306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_STATE_FLUSH_pack 8378 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MEDIA_VFE_STATE_pack 8449 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_ARB_CHECK_pack 8474 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_ARB_ON_OFF_pack 8522 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_ATOMIC_pack 8558 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_BATCH_BUFFER_END_pack 8593 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_BATCH_BUFFER_START_pack 8632 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_CLFLUSH_pack 8674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_CONDITIONAL_BATCH_BUFFER_END_pack 8715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_COPY_MEM_MEM_pack 8776 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_DISPLAY_FLIP_pack 8816 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_FORCE_WAKEUP_pack 8851 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_REGISTER_IMM_pack 8888 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_REGISTER_MEM_pack 8926 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_REGISTER_REG_pack 8964 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_SCAN_LINES_EXCL_pack 9002 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_SCAN_LINES_INCL_pack 9036 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_LOAD_URB_MEM_pack 9070 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_MATH_pack 9096 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_NOOP_pack 9135 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_PREDICATE_pack 9161 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_REPORT_HEAD_pack 9190 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_REPORT_PERF_COUNT_pack 9228 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_RS_CONTEXT_pack 9255 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_RS_CONTROL_pack 9284 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_RS_STORE_DATA_IMM_pack 9328 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_SEMAPHORE_SIGNAL_pack 9375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_SEMAPHORE_WAIT_pack 9420 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_SET_CONTEXT_pack 9463 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_SET_PREDICATE_pack 9494 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_STORE_DATA_IMM_pack 9538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_STORE_DATA_INDEX_pack 9575 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_STORE_REGISTER_MEM_pack 9613 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_STORE_URB_MEM_pack 9646 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_SUSPEND_FLUSH_pack 9671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_TOPOLOGY_FILTER_pack 9697 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_URB_ATOMIC_ALLOC_pack 9722 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_USER_INTERRUPT_pack 9763 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_MI_WAIT_FOR_EVENT_pack 9815 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PIPELINE_SELECT_pack 9882 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PIPE_CONTROL_pack 9976 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_STATE_BASE_ADDRESS_pack 10080 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_STATE_PREFETCH_pack 10117 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_STATE_SIP_pack 10143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_ACTHD_UDW_pack 10160 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BCS_ACTHD_UDW_pack 10180 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BCS_INSTDONE_pack 10209 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_BCS_RING_BUFFER_CTL_pack 10253 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CACHE_MODE_0_pack 10314 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CACHE_MODE_1_pack 10356 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CL_INVOCATION_COUNT_pack 10375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CL_PRIMITIVES_COUNT_pack 10397 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CS_CHICKEN1_pack 10420 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CS_DEBUG_MODE2_pack 10442 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_CS_INVOCATION_COUNT_pack 10461 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_DS_INVOCATION_COUNT_pack 10496 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_FAULT_REG_pack 10531 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GFX_ARB_ERROR_RPT_pack 10562 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GS_INVOCATION_COUNT_pack 10581 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GS_PRIMITIVES_COUNT_pack 10611 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_GT_MODE_pack 10631 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_HS_INVOCATION_COUNT_pack 10650 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_IA_PRIMITIVES_COUNT_pack 10669 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_IA_VERTICES_COUNT_pack 10709 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_INSTDONE_1_pack 10751 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_L3CNTLREG_pack 10777 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PERFCNT1_pack 10806 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PERFCNT2_pack 10830 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_PS_INVOCATION_COUNT_pack 10857 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_RCS_RING_BUFFER_CTL_pack 10892 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_ROW_INSTDONE_pack 10924 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_RPSTAT0_pack 10961 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SAMPLER_INSTDONE_pack 11019 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SC_INSTDONE_pack 11061 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SLICE_COMMON_ECO_CHICKEN1_pack 11079 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_NUM_PRIMS_WRITTEN0_pack 11098 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_NUM_PRIMS_WRITTEN1_pack 11117 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_NUM_PRIMS_WRITTEN2_pack 11136 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_NUM_PRIMS_WRITTEN3_pack 11155 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_PRIM_STORAGE_NEEDED0_pack 11174 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_PRIM_STORAGE_NEEDED1_pack 11193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_PRIM_STORAGE_NEEDED2_pack 11212 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_PRIM_STORAGE_NEEDED3_pack 11231 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_WRITE_OFFSET0_pack 11248 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_WRITE_OFFSET1_pack 11265 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_WRITE_OFFSET2_pack 11282 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_SO_WRITE_OFFSET3_pack 11308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VCS2_RING_BUFFER_CTL_pack 11330 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VCS_ACTHD_UDW_pack 11378 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VCS_INSTDONE_pack 11435 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VCS_RING_BUFFER_CTL_pack 11457 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VECS_ACTHD_UDW_pack 11476 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VECS_INSTDONE_pack 11504 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VECS_RING_BUFFER_CTL_pack 11526 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX9_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen11_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 430 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_BODY_pack 432 dw[0] = 436 dw[1] = 441 __gen_address(data, &dw[2], values->Buffer[0], 0, 5, 63); 442 dw[2] = v2_address; 443 dw[3] = v2_address >> 32; 446 __gen_address(data, &dw[4], values->Buffer[1], 0, 5, 63); 447 dw[ 472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_BINDING_TABLE_EDIT_ENTRY_pack 489 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_BINDING_TABLE_STATE_pack 524 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_BLEND_STATE_ENTRY_pack 567 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_BLEND_STATE_pack 592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CC_VIEWPORT_pack 618 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CHROMA_FILTER_COEFFICIENTS_ARRAY_pack 647 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CLEAR_COLOR_pack 690 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_COLOR_CALC_STATE_pack 727 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 745 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_FILTER_COEFFICIENT_pack 761 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_FRAMEDELTAQP_pack 786 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_FRAMEDELTAQPRANGE_pack 813 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_GATHER_CONSTANT_ENTRY_pack 835 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HEVC_ARBITRATION_PRIORITY_pack 859 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEMORYADDRESSATTRIBUTES_pack 885 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 918 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_REF_LIST_ENTRY_pack 943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_TILE_POSITION_IN_CTB_pack 962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_TILE_POSITION_IN_CTB_MSB_pack 1004 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 1026 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_WEIGHTOFFSET_CHROMA_EXT_ENTRY_pack 1047 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 1066 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 1084 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HUC_VIRTUAL_ADDR_REGION_pack 1111 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_IMAGE_STATE_COST_pack 1172 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1264 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_INTERFACE_DESCRIPTOR_DATA_pack 1328 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_LUMA_FILTER_COEFFICIENTS_ARRAY_pack 1375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1459 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_MATH_ALU_INSTRUCTION_pack 1480 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PALETTE_ENTRY_pack 1614 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_RENDER_SURFACE_STATE_pack 1736 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_ROUNDINGPRECISIONTABLE_3_BITS_pack 1759 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_BORDER_COLOR_STATE_pack 1803 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_INDIRECT_STATE_BORDER_COLOR_pack 1925 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_STATE_pack 1985 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 2029 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SCISSOR_RECT_pack 2058 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 2161 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2273 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SFC_AVS_STATE_BODY_pack 2374 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SFC_IEF_STATE_BODY_pack 2509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SFC_LOCK_BODY_pack 2539 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SF_CLIP_VIEWPORT_pack 2613 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2636 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SLICE_HASH_TABLE_pack 2972 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_DECL_pack 2994 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_DECL_ENTRY_pack 3039 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VDENC_SURFACE_CONTROL_BITS_pack 3061 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VDENC_PICTURE_pack 3103 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VDENC_SURFACE_STATE_FIELDS_pack 3146 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VERTEX_BUFFER_STATE_pack 3182 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VERTEX_ELEMENT_STATE_pack 3237 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DPRIMITIVE_pack 3303 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_3D_MODE_pack 3349 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_AA_LINE_PARAMETERS_pack 3398 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_EDIT_DS_pack 3439 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_EDIT_GS_pack 3480 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_EDIT_HS_pack 3521 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3562 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3599 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3635 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3707 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3743 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3783 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3828 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_BLEND_STATE_POINTERS_pack 3866 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CC_STATE_POINTERS_pack 3905 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CHROMA_KEY_pack 3948 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CLEAR_PARAMS_pack 4015 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CLIP_pack 4077 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_DS_pack 4114 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_GS_pack 4151 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_HS_pack 4189 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_PS_pack 4227 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CONSTANT_VS_pack 4280 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_CPS_pack 4367 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_DEPTH_BUFFER_pack 4440 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_DRAWING_RECTANGLE_pack 4520 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_DS_pack 4608 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_CONSTANT_DS_pack 4660 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_CONSTANT_GS_pack 4712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_CONSTANT_HS_pack 4766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_CONSTANT_PS_pack 4822 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_CONSTANT_VS_pack 4870 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GATHER_POOL_ALLOC_pack 4966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_GS_pack 5065 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_HIER_DEPTH_BUFFER_pack 5143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_HS_pack 5222 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_INDEX_BUFFER_pack 5272 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_LINE_STIPPLE_pack 5316 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_MONOFILTER_SIZE_pack 5357 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_MULTISAMPLE_pack 5396 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_POLY_STIPPLE_OFFSET_pack 5433 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_POLY_STIPPLE_PATTERN_pack 5609 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PS_pack 5700 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PS_BLEND_pack 5773 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PS_EXTRA_pack 5831 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5869 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5907 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5945 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5983 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 6065 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_RASTER_pack 6134 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_RS_CONSTANT_POINTER_pack 6173 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 6205 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 6238 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 6274 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 6310 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 6346 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 6382 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 6418 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLE_MASK_pack 6515 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SAMPLE_PATTERN_pack 6646 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SBE_pack 6736 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SBE_SWIZ_pack 6869 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SCISSOR_STATE_POINTERS_pack 6927 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SF_pack 6981 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SLICE_TABLE_STATE_POINTERS_pack 7026 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SO_BUFFER_pack 7088 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_SO_DECL_LIST_pack 7137 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_STENCIL_BUFFER_pack 7205 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_STREAMOUT_pack 7281 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_TE_pack 7328 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_URB_CLEAR_pack 7367 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_URB_DS_pack 7407 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_URB_GS_pack 7447 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_URB_HS_pack 7487 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_URB_VS_pack 7524 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VERTEX_BUFFERS_pack 7556 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VERTEX_ELEMENTS_pack 7593 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_pack 7664 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_COMPONENT_PACKING_pack 7739 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_INSTANCING_pack 7792 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_SGVS_pack 7859 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_SGVS_2_pack 7905 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_STATISTICS_pack 7938 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VF_TOPOLOGY_pack 7974 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 8010 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 8077 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_VS_pack 8191 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_WM_pack 8241 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_WM_CHROMAKEY_pack 8296 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_WM_DEPTH_STENCIL_pack 8368 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3DSTATE_WM_HZ_OP_pack 8442 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_GPGPU_WALKER_pack 8521 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_CURBE_LOAD_pack 8563 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 8624 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_OBJECT_pack 8685 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_OBJECT_GRPID_pack 8743 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_OBJECT_PRT_pack 8857 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_OBJECT_WALKER_pack 8951 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_STATE_FLUSH_pack 8998 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MEDIA_VFE_STATE_pack 9050 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_ARB_CHECK_pack 9076 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_ARB_ON_OFF_pack 9125 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_ATOMIC_pack 9162 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_BATCH_BUFFER_END_pack 9197 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_BATCH_BUFFER_START_pack 9235 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_CLFLUSH_pack 9277 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_CONDITIONAL_BATCH_BUFFER_END_pack 9318 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_COPY_MEM_MEM_pack 9400 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_DISPLAY_FLIP_pack 9444 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_FORCE_WAKEUP_pack 9483 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_LOAD_REGISTER_IMM_pack 9523 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_LOAD_REGISTER_MEM_pack 9565 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_LOAD_REGISTER_REG_pack 9606 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_LOAD_SCAN_LINES_EXCL_pack 9645 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_LOAD_SCAN_LINES_INCL_pack 9677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_MATH_pack 9703 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_NOOP_pack 9742 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_PREDICATE_pack 9768 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_REPORT_HEAD_pack 9797 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_REPORT_PERF_COUNT_pack 9835 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_RS_CONTEXT_pack 9862 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_RS_CONTROL_pack 9891 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_RS_STORE_DATA_IMM_pack 9944 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_SEMAPHORE_SIGNAL_pack 9991 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_SEMAPHORE_WAIT_pack 10036 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_SET_CONTEXT_pack 10076 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_SET_PREDICATE_pack 10107 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_STORE_DATA_IMM_pack 10151 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_STORE_DATA_INDEX_pack 10189 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_STORE_REGISTER_MEM_pack 10225 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_SUSPEND_FLUSH_pack 10250 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_TOPOLOGY_FILTER_pack 10274 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_USER_INTERRUPT_pack 10315 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_WAIT_FOR_EVENT_pack 10359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_MI_WAIT_FOR_EVENT_2_pack 10396 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PIPELINE_SELECT_pack 10466 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PIPE_CONTROL_pack 10567 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_STATE_BASE_ADDRESS_pack 10681 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_STATE_SIP_pack 10708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_3D_CHICKEN3_pack 10729 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_BCS_INSTDONE_pack 10770 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CACHE_MODE_0_pack 10821 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CACHE_MODE_1_pack 10854 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_GT_MODE_pack 10879 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CACHE_MODE_SS_pack 10903 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CL_INVOCATION_COUNT_pack 10922 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CL_PRIMITIVES_COUNT_pack 10942 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_COMMON_SLICE_CHICKEN3_pack 10961 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_COMMON_SLICE_CHICKEN4_pack 10982 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CS_CHICKEN1_pack 11005 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CS_DEBUG_MODE2_pack 11027 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_CS_INVOCATION_COUNT_pack 11046 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_DS_INVOCATION_COUNT_pack 11065 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_GS_INVOCATION_COUNT_pack 11084 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_GS_PRIMITIVES_COUNT_pack 11104 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HALF_SLICE_CHICKEN7_pack 11122 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_HS_INVOCATION_COUNT_pack 11141 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_IA_PRIMITIVES_COUNT_pack 11160 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_IA_VERTICES_COUNT_pack 11202 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_INSTDONE_1_pack 11247 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_L3CNTLREG_pack 11274 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PERFCNT1_pack 11303 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PERFCNT2_pack 11327 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_PS_INVOCATION_COUNT_pack 11360 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_ROW_INSTDONE_pack 11392 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_RPSTAT0_pack 11429 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_INSTDONE_pack 11466 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SAMPLER_MODE_pack 11507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SC_INSTDONE_pack 11548 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SLICE_COMMON_ECO_CHICKEN1_pack 11566 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_NUM_PRIMS_WRITTEN0_pack 11585 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_NUM_PRIMS_WRITTEN1_pack 11604 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_NUM_PRIMS_WRITTEN2_pack 11623 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_NUM_PRIMS_WRITTEN3_pack 11642 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_PRIM_STORAGE_NEEDED0_pack 11661 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_PRIM_STORAGE_NEEDED1_pack 11680 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_PRIM_STORAGE_NEEDED2_pack 11699 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_PRIM_STORAGE_NEEDED3_pack 11718 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_WRITE_OFFSET0_pack 11735 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_WRITE_OFFSET1_pack 11752 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_WRITE_OFFSET2_pack 11769 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_SO_WRITE_OFFSET3_pack 11789 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_TCCNTLREG_pack 11839 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VCS_INSTDONE_pack 11886 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX11_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen10_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_BODY_pack 415 dw[0] = 419 dw[1] = 424 __gen_combine_address(data, &dw[2], values->Buffer[0], 0); 425 dw[2] = v2_address; 426 dw[3] = v2_address >> 32; 429 __gen_combine_address(data, &dw[4], values->Buffer[1], 0); 430 dw[ 455 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BINDING_TABLE_EDIT_ENTRY_pack 472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BINDING_TABLE_STATE_pack 507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BLEND_STATE_ENTRY_pack 550 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BLEND_STATE_pack 575 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CC_VIEWPORT_pack 601 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CHROMA_FILTER_COEFFICIENTS_ARRAY_pack 629 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CLEAR_COLOR_pack 671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_COLOR_CALC_STATE_pack 708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 726 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FILTER_COEFFICIENT_pack 742 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FRAMEDELTAQP_pack 767 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FRAMEDELTAQPRANGE_pack 794 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GATHER_CONSTANT_ENTRY_pack 816 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HEVC_ARBITRATION_PRIORITY_pack 840 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEMORYADDRESSATTRIBUTES_pack 866 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 899 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_REF_LIST_ENTRY_pack 924 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_TILE_POSITION_IN_CTB_pack 946 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 984 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 1002 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HUC_VIRTUAL_ADDR_REGION_pack 1029 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IMAGE_STATE_COST_pack 1090 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1183 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INTERFACE_DESCRIPTOR_DATA_pack 1248 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_LUMA_FILTER_COEFFICIENTS_ARRAY_pack 1295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1379 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_MATH_ALU_INSTRUCTION_pack 1400 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PALETTE_ENTRY_pack 1533 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_RENDER_SURFACE_STATE_pack 1654 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_ROUNDINGPRECISIONTABLE_3_BITS_pack 1677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_BORDER_COLOR_STATE_pack 1721 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_INDIRECT_STATE_BORDER_COLOR_pack 1837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_STATE_pack 1893 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 1937 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SCISSOR_RECT_pack 1966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 2069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2172 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_STATE_BODY_pack 2270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_IEF_STATE_BODY_pack 2405 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_LOCK_BODY_pack 2435 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SF_CLIP_VIEWPORT_pack 2509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2535 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_DECL_pack 2557 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_DECL_ENTRY_pack 2602 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_SURFACE_CONTROL_BITS_pack 2624 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_PICTURE_pack 2674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_SURFACE_STATE_FIELDS_pack 2717 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VERTEX_BUFFER_STATE_pack 2753 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VERTEX_ELEMENT_STATE_pack 2808 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DPRIMITIVE_pack 2872 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_AA_LINE_PARAMETERS_pack 2921 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_DS_pack 2962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_GS_pack 3003 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_HS_pack 3044 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3122 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3194 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3230 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3266 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3351 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BLEND_STATE_POINTERS_pack 3389 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CC_STATE_POINTERS_pack 3428 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CHROMA_KEY_pack 3471 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CLEAR_PARAMS_pack 3538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CLIP_pack 3600 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_DS_pack 3637 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_GS_pack 3674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_HS_pack 3712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_PS_pack 3750 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_VS_pack 3811 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DEPTH_BUFFER_pack 3884 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DRAWING_RECTANGLE_pack 3965 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DS_pack 4053 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_DS_pack 4105 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_GS_pack 4157 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_HS_pack 4211 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_PS_pack 4267 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_VS_pack 4315 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_POOL_ALLOC_pack 4413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GS_pack 4508 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_HIER_DEPTH_BUFFER_pack 4586 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_HS_pack 4665 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_INDEX_BUFFER_pack 4715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_LINE_STIPPLE_pack 4759 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_MONOFILTER_SIZE_pack 4800 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_MULTISAMPLE_pack 4839 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_POLY_STIPPLE_OFFSET_pack 4876 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_POLY_STIPPLE_PATTERN_pack 5052 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_pack 5143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_BLEND_pack 5214 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_EXTRA_pack 5270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5346 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5384 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5422 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 5504 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_RASTER_pack 5573 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_RS_CONSTANT_POINTER_pack 5612 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 5644 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 5677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 5713 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 5749 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 5785 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 5821 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 5857 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLE_MASK_pack 5954 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLE_PATTERN_pack 6085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SBE_pack 6175 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SBE_SWIZ_pack 6308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SCISSOR_STATE_POINTERS_pack 6366 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SF_pack 6427 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SO_BUFFER_pack 6489 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SO_DECL_LIST_pack 6538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_STENCIL_BUFFER_pack 6606 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_STREAMOUT_pack 6682 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_TE_pack 6729 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_CLEAR_pack 6768 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_DS_pack 6808 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_GS_pack 6848 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_HS_pack 6888 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_VS_pack 6925 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VERTEX_BUFFERS_pack 6957 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VERTEX_ELEMENTS_pack 6994 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_pack 7065 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_COMPONENT_PACKING_pack 7140 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_INSTANCING_pack 7193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_SGVS_pack 7260 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_SGVS_2_pack 7306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_STATISTICS_pack 7339 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_TOPOLOGY_pack 7375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 7411 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 7479 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VS_pack 7594 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_pack 7644 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_CHROMAKEY_pack 7699 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_DEPTH_STENCIL_pack 7771 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_HZ_OP_pack 7845 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GPGPU_WALKER_pack 7924 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_CURBE_LOAD_pack 7966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 8031 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_pack 8098 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_GRPID_pack 8158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_PRT_pack 8276 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_WALKER_pack 8373 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_STATE_FLUSH_pack 8454 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_VFE_STATE_pack 8528 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ARB_CHECK_pack 8554 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ARB_ON_OFF_pack 8603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ATOMIC_pack 8640 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_BATCH_BUFFER_END_pack 8676 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_BATCH_BUFFER_START_pack 8715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_CLFLUSH_pack 8757 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_CONDITIONAL_BATCH_BUFFER_END_pack 8798 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_COPY_MEM_MEM_pack 8860 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_DISPLAY_FLIP_pack 8901 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_FORCE_WAKEUP_pack 8936 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_IMM_pack 8973 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_MEM_pack 9011 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_REG_pack 9049 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_SCAN_LINES_EXCL_pack 9087 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_SCAN_LINES_INCL_pack 9119 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_MATH_pack 9145 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_NOOP_pack 9184 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_PREDICATE_pack 9210 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_REPORT_HEAD_pack 9239 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_REPORT_PERF_COUNT_pack 9277 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_CONTEXT_pack 9304 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_CONTROL_pack 9333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_STORE_DATA_IMM_pack 9377 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SEMAPHORE_SIGNAL_pack 9424 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SEMAPHORE_WAIT_pack 9469 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SET_CONTEXT_pack 9509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SET_PREDICATE_pack 9540 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_DATA_IMM_pack 9584 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_DATA_INDEX_pack 9621 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_REGISTER_MEM_pack 9656 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SUSPEND_FLUSH_pack 9681 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_TOPOLOGY_FILTER_pack 9708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_UPDATE_GTT_pack 9734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_USER_INTERRUPT_pack 9775 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_WAIT_FOR_EVENT_pack 9827 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PIPELINE_SELECT_pack 9895 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PIPE_CONTROL_pack 9994 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_STATE_BASE_ADDRESS_pack 10108 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_STATE_SIP_pack 10137 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BCS_INSTDONE_pack 10179 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_0_pack 10228 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_1_pack 10265 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_SS_pack 10289 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CL_INVOCATION_COUNT_pack 10308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CL_PRIMITIVES_COUNT_pack 10330 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_CHICKEN1_pack 10353 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_DEBUG_MODE2_pack 10375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_INVOCATION_COUNT_pack 10394 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_DS_INVOCATION_COUNT_pack 10413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GS_INVOCATION_COUNT_pack 10432 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GS_PRIMITIVES_COUNT_pack 10451 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HS_INVOCATION_COUNT_pack 10470 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IA_PRIMITIVES_COUNT_pack 10489 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IA_VERTICES_COUNT_pack 10529 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INSTDONE_1_pack 10571 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_L3CNTLREG_pack 10592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PS_INVOCATION_COUNT_pack 10625 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_ROW_INSTDONE_pack 10675 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_INSTDONE_pack 10734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SC_INSTDONE_pack 10774 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN0_pack 10793 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN1_pack 10812 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN2_pack 10831 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN3_pack 10850 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED0_pack 10869 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED1_pack 10888 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED2_pack 10907 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED3_pack 10926 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET0_pack 10943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET1_pack 10960 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET2_pack 10977 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET3_pack 11025 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VCS_INSTDONE_pack 11075 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VECS_INSTDONE_pack 11094 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen7_pack.h | 54 uint32_t dw; member in union:__intel_value 132 return ((union __intel_value) { .f = (v) }).dw; 344 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_BODY_pack 346 dw[0] = 350 dw[1] = 356 dw[2] = __gen_address(data, &dw[2], values->Buffer[0], v2, 5, 31); 358 dw[3] = __gen_address(data, &dw[3], values->Buffer[1], 0, 5, 31); 360 dw[ 375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_BINDING_TABLE_STATE_pack 418 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_BLEND_STATE_ENTRY_pack 473 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_CC_VIEWPORT_pack 503 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_COLOR_CALC_STATE_pack 555 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_DEPTH_STENCIL_STATE_pack 614 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 683 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_INTERFACE_DESCRIPTOR_DATA_pack 731 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEMORY_OBJECT_CONTROL_STATE_pack 755 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 782 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_PALETTE_ENTRY_pack 882 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_RENDER_SURFACE_STATE_pack 964 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SAMPLER_BORDER_COLOR_STATE_pack 1060 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SAMPLER_STATE_pack 1113 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SCISSOR_RECT_pack 1143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SF_CLIP_VIEWPORT_pack 1213 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 1239 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_DECL_pack 1261 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_DECL_ENTRY_pack 1305 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VERTEX_BUFFER_STATE_pack 1342 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VERTEX_ELEMENT_STATE_pack 1392 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DPRIMITIVE_pack 1450 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_AA_LINE_PARAMETERS_pack 1491 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 1527 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 1563 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 1599 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 1635 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 1671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_BLEND_STATE_POINTERS_pack 1708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CC_STATE_POINTERS_pack 1747 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CHROMA_KEY_pack 1790 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CLEAR_PARAMS_pack 1867 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CLIP_pack 1928 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_DS_pack 1963 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_GS_pack 1998 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_HS_pack 2033 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_PS_pack 2068 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_CONSTANT_VS_pack 2127 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_DEPTH_BUFFER_pack 2187 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_DEPTH_STENCIL_STATE_POINTERS_pack 2229 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_DRAWING_RECTANGLE_pack 2298 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_DS_pack 2406 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_GS_pack 2485 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_HIER_DEPTH_BUFFER_pack 2549 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_HS_pack 2620 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_INDEX_BUFFER_pack 2665 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_LINE_STIPPLE_pack 2709 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_MONOFILTER_SIZE_pack 2768 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_MULTISAMPLE_pack 2826 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_POLY_STIPPLE_OFFSET_pack 2863 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_POLY_STIPPLE_PATTERN_pack 3031 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PS_pack 3110 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 3150 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 3190 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 3230 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 3270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 3305 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 3337 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 3370 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 3406 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 3442 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 3478 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 3514 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 3550 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SAMPLE_MASK_pack 3614 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SBE_pack 3761 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SCISSOR_STATE_POINTERS_pack 3857 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SF_pack 3933 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SO_BUFFER_pack 3981 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_SO_DECL_LIST_pack 4028 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_STENCIL_BUFFER_pack 4085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_STREAMOUT_pack 4157 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_TE_pack 4205 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_URB_DS_pack 4245 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_URB_GS_pack 4285 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_URB_HS_pack 4325 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_URB_VS_pack 4362 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VERTEX_BUFFERS_pack 4394 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VERTEX_ELEMENTS_pack 4425 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VF_STATISTICS_pack 4458 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 4494 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 4553 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_VS_pack 4661 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_3DSTATE_WM_pack 4733 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_GPGPU_OBJECT_pack 4809 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_GPGPU_WALKER_pack 4878 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_CURBE_LOAD_pack 4920 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 4978 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_OBJECT_pack 5037 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_OBJECT_PRT_pack 5152 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_OBJECT_WALKER_pack 5251 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_STATE_FLUSH_pack 5326 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MEDIA_VFE_STATE_pack 5395 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_ARB_CHECK_pack 5419 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_ARB_ON_OFF_pack 5443 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_BATCH_BUFFER_END_pack 5473 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_BATCH_BUFFER_START_pack 5507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_CLFLUSH_pack 5545 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_CONDITIONAL_BATCH_BUFFER_END_pack 5585 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_FLUSH_pack 5619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_LOAD_REGISTER_IMM_pack 5656 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_LOAD_REGISTER_MEM_pack 5689 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_NOOP_pack 5728 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_PREDICATE_pack 5754 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_REPORT_HEAD_pack 5782 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_REPORT_PERF_COUNT_pack 5820 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_SEMAPHORE_MBOX_pack 5858 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_SET_CONTEXT_pack 5896 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_STORE_DATA_IMM_pack 5937 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_STORE_DATA_INDEX_pack 5972 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_STORE_REGISTER_MEM_pack 6003 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_SUSPEND_FLUSH_pack 6028 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_TOPOLOGY_FILTER_pack 6056 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_URB_CLEAR_pack 6084 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_USER_INTERRUPT_pack 6124 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_MI_WAIT_FOR_EVENT_pack 6171 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_PIPELINE_SELECT_pack 6234 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_PIPE_CONTROL_pack 6321 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_STATE_BASE_ADDRESS_pack 6398 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_STATE_PREFETCH_pack 6435 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_STATE_SIP_pack 6472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SWTESS_BASE_ADDRESS_pack 6507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_BCS_FAULT_REG_pack 6531 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_BCS_INSTDONE_pack 6560 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_BCS_RING_BUFFER_CTL_pack 6582 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_CL_INVOCATION_COUNT_pack 6601 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_CL_PRIMITIVES_COUNT_pack 6620 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_CS_INVOCATION_COUNT_pack 6639 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_DS_INVOCATION_COUNT_pack 6665 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_ERR_INT_pack 6697 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_GFX_ARB_ERROR_RPT_pack 6722 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_GS_INVOCATION_COUNT_pack 6741 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_GS_PRIMITIVES_COUNT_pack 6760 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_HS_INVOCATION_COUNT_pack 6779 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_IA_PRIMITIVES_COUNT_pack 6798 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_IA_VERTICES_COUNT_pack 6836 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_INSTDONE_1_pack 6879 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_INSTPM_pack 6910 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_L3CNTLREG2_pack 6939 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_L3CNTLREG3_pack 6969 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_L3SQCREG1_pack 6991 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_PS_INVOCATION_COUNT_pack 7020 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_RCS_FAULT_REG_pack 7048 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_RCS_RING_BUFFER_CTL_pack 7085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_ROW_INSTDONE_pack 7119 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_RPSTAT1_pack 7155 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SAMPLER_INSTDONE_pack 7205 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SC_INSTDONE_pack 7237 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_NUM_PRIMS_WRITTEN0_pack 7256 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_NUM_PRIMS_WRITTEN1_pack 7275 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_NUM_PRIMS_WRITTEN2_pack 7294 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_NUM_PRIMS_WRITTEN3_pack 7313 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_PRIM_STORAGE_NEEDED0_pack 7332 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_PRIM_STORAGE_NEEDED1_pack 7351 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_PRIM_STORAGE_NEEDED2_pack 7370 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_PRIM_STORAGE_NEEDED3_pack 7389 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_WRITE_OFFSET0_pack 7406 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_WRITE_OFFSET1_pack 7423 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_WRITE_OFFSET2_pack 7440 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_SO_WRITE_OFFSET3_pack 7467 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VCS_FAULT_REG_pack 7518 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VCS_INSTDONE_pack 7574 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VCS_RING_BUFFER_CTL_pack 7596 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GFX7_VS_INVOCATION_COUNT_pack [all...] |
| /xsrc/external/mit/MesaLib.old/src/intel/genxml/ |
| H A D | gen5_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_CC_VIEWPORT_pack 297 dw[0] = 300 dw[1] = 359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_CLIP_STATE_pack 361 dw[0] = 365 dw[1] = 376 dw[2] = __gen_combine_address(data, &dw[ 429 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_CLIP_VIEWPORT_pack 502 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_COLOR_CALC_STATE_pack 600 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_GS_STATE_pack 654 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_MEMORY_OBJECT_CONTROL_STATE_pack 726 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_RENDER_SURFACE_STATE_pack 804 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_SAMPLER_BORDER_COLOR_STATE_pack 918 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_SAMPLER_STATE_pack 968 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_SCISSOR_RECT_pack 1060 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_SF_STATE_pack 1137 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_SF_VIEWPORT_pack 1178 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_VERTEX_BUFFER_STATE_pack 1212 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_VERTEX_ELEMENT_STATE_pack 1265 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_VS_STATE_pack 1376 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_WM_STATE_pack 1483 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DPRIMITIVE_pack 1537 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_AA_LINE_PARAMETERS_pack 1582 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_BINDING_TABLE_POINTERS_pack 1631 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_CLEAR_PARAMS_pack 1671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_CONSTANT_COLOR_pack 1749 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_DEPTH_BUFFER_pack 1814 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_DRAWING_RECTANGLE_pack 1859 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP_pack 1896 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_HIER_DEPTH_BUFFER_pack 1940 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_INDEX_BUFFER_pack 1984 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_LINE_STIPPLE_pack 2034 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_PIPELINED_POINTERS_pack 2084 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_POLY_STIPPLE_OFFSET_pack 2121 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_POLY_STIPPLE_PATTERN_pack 2251 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_STENCIL_BUFFER_pack 2288 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_VERTEX_BUFFERS_pack 2320 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_VERTEX_ELEMENTS_pack 2351 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_3DSTATE_VF_STATISTICS_pack 2386 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_CONSTANT_BUFFER_pack 2425 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_CS_URB_STATE_pack 2467 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_MI_FLUSH_pack 2502 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_MI_LOAD_REGISTER_IMM_pack 2540 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_MI_STORE_DATA_IMM_pack 2580 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_MI_STORE_REGISTER_MEM_pack 2618 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_PIPELINE_SELECT_pack 2670 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_PIPE_CONTROL_pack 2734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_STATE_BASE_ADDRESS_pack 2795 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_STATE_SIP_pack 2842 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN5_URB_FENCE_pack [all...] |
| H A D | gen9_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_BODY_pack 415 dw[0] = 419 dw[1] = 424 __gen_combine_address(data, &dw[2], values->Buffer[0], 0); 425 dw[2] = v2_address; 426 dw[3] = v2_address >> 32; 429 __gen_combine_address(data, &dw[4], values->Buffer[1], 0); 430 dw[ 455 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BINDING_TABLE_EDIT_ENTRY_pack 472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BINDING_TABLE_STATE_pack 507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BLEND_STATE_ENTRY_pack 550 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BLEND_STATE_pack 575 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CC_VIEWPORT_pack 603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_COLOR_CALC_STATE_pack 640 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 658 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_FILTER_COEFFICIENT_pack 674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_FRAMEDELTAQP_pack 699 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_FRAMEDELTAQPRANGE_pack 726 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GATHER_CONSTANT_ENTRY_pack 757 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEMORYADDRESSATTRIBUTES_pack 779 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 812 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HCP_REF_LIST_ENTRY_pack 837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HCP_TILE_POSITION_IN_CTB_pack 859 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 879 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 900 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HEVC_ARBITRATION_PRIORITY_pack 917 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 935 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HUC_VIRTUAL_ADDR_REGION_pack 991 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1083 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_INTERFACE_DESCRIPTOR_DATA_pack 1142 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1226 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_MATH_ALU_INSTRUCTION_pack 1247 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_PALETTE_ENTRY_pack 1375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_RENDER_SURFACE_STATE_pack 1492 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_ROUNDINGPRECISIONTABLE_3_BITS_pack 1515 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SAMPLER_BORDER_COLOR_STATE_pack 1622 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SAMPLER_STATE_pack 1677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 1721 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SCISSOR_RECT_pack 1750 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 1946 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2142 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SFC_AVS_STATE_BODY_pack 2240 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SFC_IEF_STATE_BODY_pack 2375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SFC_LOCK_BODY_pack 2405 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SF_CLIP_VIEWPORT_pack 2479 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2505 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_DECL_pack 2527 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_DECL_ENTRY_pack 2572 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VDENC_SURFACE_CONTROL_BITS_pack 2594 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VDENC_PICTURE_pack 2635 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VDENC_SURFACE_STATE_FIELDS_pack 2677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VERTEX_BUFFER_STATE_pack 2713 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VERTEX_ELEMENT_STATE_pack 2764 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DPRIMITIVE_pack 2827 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_AA_LINE_PARAMETERS_pack 2876 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_EDIT_DS_pack 2917 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_EDIT_GS_pack 2958 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_EDIT_HS_pack 2999 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3040 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3077 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3113 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3149 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3185 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3221 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3261 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_BLEND_STATE_POINTERS_pack 3344 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CC_STATE_POINTERS_pack 3383 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CHROMA_KEY_pack 3426 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CLEAR_PARAMS_pack 3493 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CLIP_pack 3555 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_DS_pack 3592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_GS_pack 3629 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_HS_pack 3666 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_PS_pack 3703 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_CONSTANT_VS_pack 3764 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_DEPTH_BUFFER_pack 3837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_DRAWING_RECTANGLE_pack 3918 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_DS_pack 4006 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_CONSTANT_DS_pack 4058 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_CONSTANT_GS_pack 4110 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_CONSTANT_HS_pack 4164 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_CONSTANT_PS_pack 4220 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_CONSTANT_VS_pack 4268 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GATHER_POOL_ALLOC_pack 4366 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_GS_pack 4461 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_HIER_DEPTH_BUFFER_pack 4539 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_HS_pack 4618 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_INDEX_BUFFER_pack 4668 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_LINE_STIPPLE_pack 4712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_MONOFILTER_SIZE_pack 4753 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_MULTISAMPLE_pack 4792 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_POLY_STIPPLE_OFFSET_pack 4829 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_POLY_STIPPLE_PATTERN_pack 5004 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PS_pack 5095 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PS_BLEND_pack 5161 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PS_EXTRA_pack 5212 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5250 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5288 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5326 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5364 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 5446 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_RASTER_pack 5515 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_RS_CONSTANT_POINTER_pack 5554 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 5586 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 5619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 5655 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 5691 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 5727 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 5763 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 5799 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLE_MASK_pack 5896 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SAMPLE_PATTERN_pack 6027 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SBE_pack 6117 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SBE_SWIZ_pack 6250 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SCISSOR_STATE_POINTERS_pack 6308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SF_pack 6369 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SO_BUFFER_pack 6431 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_SO_DECL_LIST_pack 6480 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_STENCIL_BUFFER_pack 6548 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_STREAMOUT_pack 6624 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_TE_pack 6671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_URB_CLEAR_pack 6710 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_URB_DS_pack 6750 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_URB_GS_pack 6790 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_URB_HS_pack 6830 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_URB_VS_pack 6867 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VERTEX_BUFFERS_pack 6899 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VERTEX_ELEMENTS_pack 6935 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_pack 7005 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_COMPONENT_PACKING_pack 7080 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_INSTANCING_pack 7133 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_SGVS_pack 7172 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_STATISTICS_pack 7205 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VF_TOPOLOGY_pack 7241 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 7277 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 7344 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_VS_pack 7458 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_WM_pack 7508 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_WM_CHROMAKEY_pack 7563 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_WM_DEPTH_STENCIL_pack 7635 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_3DSTATE_WM_HZ_OP_pack 7690 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GPGPU_CSR_BASE_ADDRESS_pack 7747 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GPGPU_WALKER_pack 7826 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_CURBE_LOAD_pack 7868 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 7933 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_OBJECT_pack 8011 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_OBJECT_GRPID_pack 8075 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_OBJECT_PRT_pack 8193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_OBJECT_WALKER_pack 8290 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_STATE_FLUSH_pack 8362 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MEDIA_VFE_STATE_pack 8433 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_ARB_CHECK_pack 8458 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_ARB_ON_OFF_pack 8506 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_ATOMIC_pack 8542 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_BATCH_BUFFER_END_pack 8577 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_BATCH_BUFFER_START_pack 8616 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_CLFLUSH_pack 8658 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_CONDITIONAL_BATCH_BUFFER_END_pack 8699 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_COPY_MEM_MEM_pack 8760 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_DISPLAY_FLIP_pack 8800 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_FORCE_WAKEUP_pack 8835 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_REGISTER_IMM_pack 8872 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_REGISTER_MEM_pack 8910 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_REGISTER_REG_pack 8948 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_SCAN_LINES_EXCL_pack 8986 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_SCAN_LINES_INCL_pack 9020 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_LOAD_URB_MEM_pack 9054 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_MATH_pack 9080 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_NOOP_pack 9119 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_PREDICATE_pack 9145 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_REPORT_HEAD_pack 9174 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_REPORT_PERF_COUNT_pack 9212 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_RS_CONTEXT_pack 9239 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_RS_CONTROL_pack 9268 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_RS_STORE_DATA_IMM_pack 9312 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_SEMAPHORE_SIGNAL_pack 9359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_SEMAPHORE_WAIT_pack 9404 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_SET_CONTEXT_pack 9447 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_SET_PREDICATE_pack 9478 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_STORE_DATA_IMM_pack 9522 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_STORE_DATA_INDEX_pack 9559 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_STORE_REGISTER_MEM_pack 9597 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_STORE_URB_MEM_pack 9630 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_SUSPEND_FLUSH_pack 9655 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_TOPOLOGY_FILTER_pack 9681 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_URB_ATOMIC_ALLOC_pack 9706 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_USER_INTERRUPT_pack 9747 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_MI_WAIT_FOR_EVENT_pack 9799 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_PIPELINE_SELECT_pack 9866 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_PIPE_CONTROL_pack 9960 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_STATE_BASE_ADDRESS_pack 10064 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_STATE_PREFETCH_pack 10101 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_STATE_SIP_pack 10127 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_ACTHD_UDW_pack 10144 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BCS_ACTHD_UDW_pack 10164 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BCS_INSTDONE_pack 10193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_BCS_RING_BUFFER_CTL_pack 10237 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CACHE_MODE_0_pack 10298 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CACHE_MODE_1_pack 10340 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CL_INVOCATION_COUNT_pack 10359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CL_PRIMITIVES_COUNT_pack 10381 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CS_CHICKEN1_pack 10404 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CS_DEBUG_MODE2_pack 10426 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_CS_INVOCATION_COUNT_pack 10445 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_DS_INVOCATION_COUNT_pack 10480 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_FAULT_REG_pack 10515 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GFX_ARB_ERROR_RPT_pack 10546 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GS_INVOCATION_COUNT_pack 10565 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_GS_PRIMITIVES_COUNT_pack 10584 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_HS_INVOCATION_COUNT_pack 10603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_IA_PRIMITIVES_COUNT_pack 10622 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_IA_VERTICES_COUNT_pack 10662 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_INSTDONE_1_pack 10704 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_L3CNTLREG_pack 10725 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_PS_INVOCATION_COUNT_pack 10752 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_RCS_RING_BUFFER_CTL_pack 10787 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_ROW_INSTDONE_pack 10837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SAMPLER_INSTDONE_pack 10895 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SC_INSTDONE_pack 10937 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SLICE_COMMON_ECO_CHICKEN1_pack 10955 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_NUM_PRIMS_WRITTEN0_pack 10974 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_NUM_PRIMS_WRITTEN1_pack 10993 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_NUM_PRIMS_WRITTEN2_pack 11012 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_NUM_PRIMS_WRITTEN3_pack 11031 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_PRIM_STORAGE_NEEDED0_pack 11050 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_PRIM_STORAGE_NEEDED1_pack 11069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_PRIM_STORAGE_NEEDED2_pack 11088 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_PRIM_STORAGE_NEEDED3_pack 11107 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_WRITE_OFFSET0_pack 11124 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_WRITE_OFFSET1_pack 11141 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_WRITE_OFFSET2_pack 11158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_SO_WRITE_OFFSET3_pack 11184 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VCS2_RING_BUFFER_CTL_pack 11206 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VCS_ACTHD_UDW_pack 11254 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VCS_INSTDONE_pack 11311 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VCS_RING_BUFFER_CTL_pack 11333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VECS_ACTHD_UDW_pack 11352 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VECS_INSTDONE_pack 11380 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VECS_RING_BUFFER_CTL_pack 11402 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN9_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen45_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_CC_VIEWPORT_pack 297 dw[0] = 300 dw[1] = 361 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_CLIP_STATE_pack 365 dw[0] = __gen_combine_address(data, &dw[0], values->KernelStartPointer, v0); 367 dw[1] = 378 dw[ 433 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_CLIP_VIEWPORT_pack 506 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_COLOR_CALC_STATE_pack 604 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_GS_STATE_pack 705 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_RENDER_SURFACE_STATE_pack 761 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_SAMPLER_BORDER_COLOR_STATE_pack 855 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_SAMPLER_STATE_pack 905 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_SCISSOR_RECT_pack 998 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_SF_STATE_pack 1076 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_SF_VIEWPORT_pack 1116 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_VERTEX_BUFFER_STATE_pack 1150 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_VERTEX_ELEMENT_STATE_pack 1203 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_VS_STATE_pack 1305 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_WM_STATE_pack 1396 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DPRIMITIVE_pack 1450 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_AA_LINE_PARAMETERS_pack 1495 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_BINDING_TABLE_POINTERS_pack 1546 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_CONSTANT_COLOR_pack 1625 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_DEPTH_BUFFER_pack 1689 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_DRAWING_RECTANGLE_pack 1734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP_pack 1776 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_INDEX_BUFFER_pack 1820 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_LINE_STIPPLE_pack 1870 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_PIPELINED_POINTERS_pack 1920 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_POLY_STIPPLE_OFFSET_pack 1957 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_POLY_STIPPLE_PATTERN_pack 2085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_VERTEX_BUFFERS_pack 2117 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_VERTEX_ELEMENTS_pack 2148 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_3DSTATE_VF_STATISTICS_pack 2184 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_CONSTANT_BUFFER_pack 2223 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_CS_URB_STATE_pack 2262 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_MI_FLUSH_pack 2294 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_MI_LOAD_REGISTER_IMM_pack 2333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_MI_STORE_DATA_IMM_pack 2375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_MI_STORE_REGISTER_MEM_pack 2413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_PIPELINE_SELECT_pack 2461 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_PIPE_CONTROL_pack 2519 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_STATE_BASE_ADDRESS_pack 2572 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_STATE_SIP_pack 2619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN45_URB_FENCE_pack [all...] |
| H A D | gen4_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_CC_VIEWPORT_pack 297 dw[0] = 300 dw[1] = 360 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_CLIP_STATE_pack 364 dw[0] = __gen_combine_address(data, &dw[0], values->KernelStartPointer, v0); 366 dw[1] = 377 dw[ 431 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_CLIP_VIEWPORT_pack 504 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_COLOR_CALC_STATE_pack 600 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_GS_STATE_pack 695 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_RENDER_SURFACE_STATE_pack 747 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_SAMPLER_BORDER_COLOR_STATE_pack 839 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_SAMPLER_STATE_pack 887 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_SCISSOR_RECT_pack 976 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_SF_STATE_pack 1052 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_SF_VIEWPORT_pack 1092 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_VERTEX_BUFFER_STATE_pack 1126 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_VERTEX_ELEMENT_STATE_pack 1179 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_VS_STATE_pack 1278 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_WM_STATE_pack 1368 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DPRIMITIVE_pack 1421 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_BINDING_TABLE_POINTERS_pack 1472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_CONSTANT_COLOR_pack 1549 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_DEPTH_BUFFER_pack 1609 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_DRAWING_RECTANGLE_pack 1654 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP_pack 1696 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_INDEX_BUFFER_pack 1740 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_LINE_STIPPLE_pack 1790 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_PIPELINED_POINTERS_pack 1840 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_POLY_STIPPLE_OFFSET_pack 1877 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_POLY_STIPPLE_PATTERN_pack 2005 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_VERTEX_BUFFERS_pack 2037 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_VERTEX_ELEMENTS_pack 2068 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_3DSTATE_VF_STATISTICS_pack 2104 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_CONSTANT_BUFFER_pack 2143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_CS_URB_STATE_pack 2182 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_MI_FLUSH_pack 2214 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_MI_LOAD_REGISTER_IMM_pack 2253 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_MI_STORE_DATA_IMM_pack 2295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_MI_STORE_REGISTER_MEM_pack 2333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_PIPELINE_SELECT_pack 2378 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_PIPE_CONTROL_pack 2434 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_STATE_BASE_ADDRESS_pack 2487 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_STATE_SIP_pack 2534 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN4_URB_FENCE_pack [all...] |
| H A D | gen11_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 414 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_BODY_pack 416 dw[0] = 420 dw[1] = 425 __gen_combine_address(data, &dw[2], values->Buffer[0], 0); 426 dw[2] = v2_address; 427 dw[3] = v2_address >> 32; 430 __gen_combine_address(data, &dw[4], values->Buffer[1], 0); 431 dw[ 456 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_BINDING_TABLE_EDIT_ENTRY_pack 473 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_BINDING_TABLE_STATE_pack 508 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_BLEND_STATE_ENTRY_pack 551 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_BLEND_STATE_pack 576 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CC_VIEWPORT_pack 602 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CHROMA_FILTER_COEFFICIENTS_ARRAY_pack 631 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CLEAR_COLOR_pack 674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_COLOR_CALC_STATE_pack 711 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 729 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_FILTER_COEFFICIENT_pack 745 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_FRAMEDELTAQP_pack 770 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_FRAMEDELTAQPRANGE_pack 797 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_GATHER_CONSTANT_ENTRY_pack 819 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HEVC_ARBITRATION_PRIORITY_pack 843 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEMORYADDRESSATTRIBUTES_pack 869 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 902 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_REF_LIST_ENTRY_pack 927 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_TILE_POSITION_IN_CTB_pack 946 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_TILE_POSITION_IN_CTB_MSB_pack 988 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 1010 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_WEIGHTOFFSET_CHROMA_EXT_ENTRY_pack 1031 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 1050 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 1068 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HUC_VIRTUAL_ADDR_REGION_pack 1095 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_IMAGE_STATE_COST_pack 1156 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1248 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_INTERFACE_DESCRIPTOR_DATA_pack 1312 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_LUMA_FILTER_COEFFICIENTS_ARRAY_pack 1359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1443 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_MATH_ALU_INSTRUCTION_pack 1464 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_PALETTE_ENTRY_pack 1598 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_RENDER_SURFACE_STATE_pack 1720 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_ROUNDINGPRECISIONTABLE_3_BITS_pack 1743 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_BORDER_COLOR_STATE_pack 1787 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_INDIRECT_STATE_BORDER_COLOR_pack 1908 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_STATE_pack 1967 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 2011 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SCISSOR_RECT_pack 2040 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 2143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2255 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SFC_AVS_STATE_BODY_pack 2356 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SFC_IEF_STATE_BODY_pack 2491 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SFC_LOCK_BODY_pack 2521 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SF_CLIP_VIEWPORT_pack 2595 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2621 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_DECL_pack 2643 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_DECL_ENTRY_pack 2688 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VDENC_SURFACE_CONTROL_BITS_pack 2710 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VDENC_PICTURE_pack 2752 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VDENC_SURFACE_STATE_FIELDS_pack 2795 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VERTEX_BUFFER_STATE_pack 2831 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VERTEX_ELEMENT_STATE_pack 2886 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DPRIMITIVE_pack 2943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_3D_MODE_pack 2986 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_AA_LINE_PARAMETERS_pack 3035 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_EDIT_DS_pack 3076 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_EDIT_GS_pack 3117 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_EDIT_HS_pack 3158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3199 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3236 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3272 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3344 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3380 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3420 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3465 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_BLEND_STATE_POINTERS_pack 3503 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CC_STATE_POINTERS_pack 3542 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CHROMA_KEY_pack 3585 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CLEAR_PARAMS_pack 3652 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CLIP_pack 3714 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_DS_pack 3751 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_GS_pack 3788 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_HS_pack 3826 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_PS_pack 3864 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_CONSTANT_VS_pack 3925 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_DEPTH_BUFFER_pack 3998 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_DRAWING_RECTANGLE_pack 4078 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_DS_pack 4166 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_CONSTANT_DS_pack 4218 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_CONSTANT_GS_pack 4270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_CONSTANT_HS_pack 4324 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_CONSTANT_PS_pack 4380 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_CONSTANT_VS_pack 4428 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GATHER_POOL_ALLOC_pack 4524 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_GS_pack 4623 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_HIER_DEPTH_BUFFER_pack 4701 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_HS_pack 4780 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_INDEX_BUFFER_pack 4830 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_LINE_STIPPLE_pack 4874 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_MONOFILTER_SIZE_pack 4915 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_MULTISAMPLE_pack 4954 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_POLY_STIPPLE_OFFSET_pack 4991 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_POLY_STIPPLE_PATTERN_pack 5167 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PS_pack 5258 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PS_BLEND_pack 5329 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PS_EXTRA_pack 5385 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5423 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5461 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5499 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5537 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 5619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_RASTER_pack 5688 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_RS_CONSTANT_POINTER_pack 5727 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 5759 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 5792 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 5828 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 5864 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 5900 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 5936 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 5972 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLE_MASK_pack 6069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SAMPLE_PATTERN_pack 6200 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SBE_pack 6290 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SBE_SWIZ_pack 6423 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SCISSOR_STATE_POINTERS_pack 6481 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SF_pack 6542 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SO_BUFFER_pack 6604 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_SO_DECL_LIST_pack 6653 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_STENCIL_BUFFER_pack 6721 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_STREAMOUT_pack 6797 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_TE_pack 6844 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_URB_CLEAR_pack 6883 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_URB_DS_pack 6923 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_URB_GS_pack 6963 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_URB_HS_pack 7003 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_URB_VS_pack 7040 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VERTEX_BUFFERS_pack 7072 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VERTEX_ELEMENTS_pack 7109 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_pack 7180 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_COMPONENT_PACKING_pack 7255 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_INSTANCING_pack 7308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_SGVS_pack 7375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_SGVS_2_pack 7421 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_STATISTICS_pack 7454 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VF_TOPOLOGY_pack 7490 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 7526 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 7593 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_VS_pack 7707 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_WM_pack 7757 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_WM_CHROMAKEY_pack 7812 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_WM_DEPTH_STENCIL_pack 7884 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_3DSTATE_WM_HZ_OP_pack 7958 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_GPGPU_WALKER_pack 8037 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_CURBE_LOAD_pack 8079 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 8140 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_OBJECT_pack 8201 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_OBJECT_GRPID_pack 8259 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_OBJECT_PRT_pack 8373 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_OBJECT_WALKER_pack 8467 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_STATE_FLUSH_pack 8514 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MEDIA_VFE_STATE_pack 8566 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_ARB_CHECK_pack 8592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_ARB_ON_OFF_pack 8641 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_ATOMIC_pack 8678 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_BATCH_BUFFER_END_pack 8713 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_BATCH_BUFFER_START_pack 8751 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_CLFLUSH_pack 8793 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_CONDITIONAL_BATCH_BUFFER_END_pack 8834 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_COPY_MEM_MEM_pack 8916 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_DISPLAY_FLIP_pack 8960 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_FORCE_WAKEUP_pack 8999 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_LOAD_REGISTER_IMM_pack 9039 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_LOAD_REGISTER_MEM_pack 9081 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_LOAD_REGISTER_REG_pack 9122 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_LOAD_SCAN_LINES_EXCL_pack 9161 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_LOAD_SCAN_LINES_INCL_pack 9193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_MATH_pack 9219 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_NOOP_pack 9258 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_PREDICATE_pack 9284 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_REPORT_HEAD_pack 9313 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_REPORT_PERF_COUNT_pack 9351 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_RS_CONTEXT_pack 9378 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_RS_CONTROL_pack 9407 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_RS_STORE_DATA_IMM_pack 9460 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_SEMAPHORE_SIGNAL_pack 9507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_SEMAPHORE_WAIT_pack 9552 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_SET_CONTEXT_pack 9592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_SET_PREDICATE_pack 9623 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_STORE_DATA_IMM_pack 9667 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_STORE_DATA_INDEX_pack 9705 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_STORE_REGISTER_MEM_pack 9741 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_SUSPEND_FLUSH_pack 9766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_TOPOLOGY_FILTER_pack 9790 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_USER_INTERRUPT_pack 9831 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_WAIT_FOR_EVENT_pack 9875 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_MI_WAIT_FOR_EVENT_2_pack 9912 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_PIPELINE_SELECT_pack 9980 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_PIPE_CONTROL_pack 10079 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_STATE_BASE_ADDRESS_pack 10193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_STATE_SIP_pack 10222 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_BCS_INSTDONE_pack 10264 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CACHE_MODE_0_pack 10313 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CACHE_MODE_1_pack 10350 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CACHE_MODE_SS_pack 10374 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CL_INVOCATION_COUNT_pack 10393 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CL_PRIMITIVES_COUNT_pack 10413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_COMMON_SLICE_CHICKEN3_pack 10434 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CS_CHICKEN1_pack 10457 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CS_DEBUG_MODE2_pack 10479 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_CS_INVOCATION_COUNT_pack 10498 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_DS_INVOCATION_COUNT_pack 10517 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_GS_INVOCATION_COUNT_pack 10536 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_GS_PRIMITIVES_COUNT_pack 10556 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HALF_SLICE_CHICKEN7_pack 10574 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_HS_INVOCATION_COUNT_pack 10593 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_IA_PRIMITIVES_COUNT_pack 10612 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_IA_VERTICES_COUNT_pack 10654 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_INSTDONE_1_pack 10700 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_L3CNTLREG_pack 10723 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_PS_INVOCATION_COUNT_pack 10756 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_ROW_INSTDONE_pack 10806 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_INSTDONE_pack 10843 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SAMPLER_MODE_pack 10884 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SC_INSTDONE_pack 10925 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SLICE_COMMON_ECO_CHICKEN1_pack 10943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_NUM_PRIMS_WRITTEN0_pack 10962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_NUM_PRIMS_WRITTEN1_pack 10981 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_NUM_PRIMS_WRITTEN2_pack 11000 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_NUM_PRIMS_WRITTEN3_pack 11019 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_PRIM_STORAGE_NEEDED0_pack 11038 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_PRIM_STORAGE_NEEDED1_pack 11057 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_PRIM_STORAGE_NEEDED2_pack 11076 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_PRIM_STORAGE_NEEDED3_pack 11095 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_WRITE_OFFSET0_pack 11112 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_WRITE_OFFSET1_pack 11129 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_WRITE_OFFSET2_pack 11146 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_SO_WRITE_OFFSET3_pack 11193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VCS_INSTDONE_pack 11240 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN11_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen10_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_BODY_pack 415 dw[0] = 419 dw[1] = 424 __gen_combine_address(data, &dw[2], values->Buffer[0], 0); 425 dw[2] = v2_address; 426 dw[3] = v2_address >> 32; 429 __gen_combine_address(data, &dw[4], values->Buffer[1], 0); 430 dw[ 455 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BINDING_TABLE_EDIT_ENTRY_pack 472 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BINDING_TABLE_STATE_pack 507 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BLEND_STATE_ENTRY_pack 550 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BLEND_STATE_pack 575 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CC_VIEWPORT_pack 601 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CHROMA_FILTER_COEFFICIENTS_ARRAY_pack 629 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CLEAR_COLOR_pack 671 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_COLOR_CALC_STATE_pack 708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_EXECUTION_UNIT_EXTENDED_MESSAGE_DESCRIPTOR_pack 726 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FILTER_COEFFICIENT_pack 742 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FRAMEDELTAQP_pack 767 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_FRAMEDELTAQPRANGE_pack 794 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GATHER_CONSTANT_ENTRY_pack 816 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HEVC_ARBITRATION_PRIORITY_pack 840 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEMORYADDRESSATTRIBUTES_pack 866 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_PAK_INSERT_OBJECT_INDIRECT_PAYLOAD_pack 899 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_REF_LIST_ENTRY_pack 924 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_TILE_POSITION_IN_CTB_pack 946 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_WEIGHTOFFSET_CHROMA_ENTRY_pack 966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HCP_WEIGHTOFFSET_LUMA_ENTRY_pack 984 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HEVC_VP9_RDOQ_LAMBDA_FIELDS_pack 1002 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HUC_VIRTUAL_ADDR_REGION_pack 1029 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IMAGE_STATE_COST_pack 1090 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 1183 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INTERFACE_DESCRIPTOR_DATA_pack 1248 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_LUMA_FILTER_COEFFICIENTS_ARRAY_pack 1295 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 1379 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_MATH_ALU_INSTRUCTION_pack 1400 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PALETTE_ENTRY_pack 1533 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_RENDER_SURFACE_STATE_pack 1654 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_ROUNDINGPRECISIONTABLE_3_BITS_pack 1677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_BORDER_COLOR_STATE_pack 1721 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_INDIRECT_STATE_BORDER_COLOR_pack 1837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_STATE_pack 1893 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_STATE_8X8_AVS_COEFFICIENTS_pack 1937 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SCISSOR_RECT_pack 1966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_CHROMA_COEFF_TABLE_BODY_pack 2069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_LUMA_COEFF_TABLE_BODY_pack 2172 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_AVS_STATE_BODY_pack 2270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_IEF_STATE_BODY_pack 2405 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SFC_LOCK_BODY_pack 2435 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SF_CLIP_VIEWPORT_pack 2509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 2535 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_DECL_pack 2557 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_DECL_ENTRY_pack 2602 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_SURFACE_CONTROL_BITS_pack 2624 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_PICTURE_pack 2674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VDENC_SURFACE_STATE_FIELDS_pack 2717 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VERTEX_BUFFER_STATE_pack 2753 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VERTEX_ELEMENT_STATE_pack 2808 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DPRIMITIVE_pack 2872 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_AA_LINE_PARAMETERS_pack 2921 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_DS_pack 2962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_GS_pack 3003 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_HS_pack 3044 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_PS_pack 3085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_EDIT_VS_pack 3122 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 3158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 3194 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 3230 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 3266 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 3306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BINDING_TABLE_POOL_ALLOC_pack 3351 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_BLEND_STATE_POINTERS_pack 3389 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CC_STATE_POINTERS_pack 3428 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CHROMA_KEY_pack 3471 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CLEAR_PARAMS_pack 3538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CLIP_pack 3600 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_DS_pack 3637 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_GS_pack 3674 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_HS_pack 3712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_PS_pack 3750 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_CONSTANT_VS_pack 3811 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DEPTH_BUFFER_pack 3884 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DRAWING_RECTANGLE_pack 3965 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_DS_pack 4053 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_DS_pack 4105 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_GS_pack 4157 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_HS_pack 4211 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_PS_pack 4267 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_CONSTANT_VS_pack 4315 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GATHER_POOL_ALLOC_pack 4413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_GS_pack 4508 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_HIER_DEPTH_BUFFER_pack 4586 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_HS_pack 4665 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_INDEX_BUFFER_pack 4715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_LINE_STIPPLE_pack 4759 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_MONOFILTER_SIZE_pack 4800 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_MULTISAMPLE_pack 4839 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_POLY_STIPPLE_OFFSET_pack 4876 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_POLY_STIPPLE_PATTERN_pack 5052 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_pack 5143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_BLEND_pack 5214 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PS_EXTRA_pack 5270 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 5308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 5346 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 5384 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 5422 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 5504 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_RASTER_pack 5573 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_RS_CONSTANT_POINTER_pack 5612 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 5644 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 5677 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 5713 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 5749 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 5785 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 5821 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 5857 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLE_MASK_pack 5954 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SAMPLE_PATTERN_pack 6085 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SBE_pack 6175 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SBE_SWIZ_pack 6308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SCISSOR_STATE_POINTERS_pack 6366 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SF_pack 6427 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SO_BUFFER_pack 6489 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_SO_DECL_LIST_pack 6538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_STENCIL_BUFFER_pack 6606 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_STREAMOUT_pack 6682 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_TE_pack 6729 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_CLEAR_pack 6768 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_DS_pack 6808 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_GS_pack 6848 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_HS_pack 6888 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_URB_VS_pack 6925 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VERTEX_BUFFERS_pack 6957 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VERTEX_ELEMENTS_pack 6994 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_pack 7065 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_COMPONENT_PACKING_pack 7140 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_INSTANCING_pack 7193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_SGVS_pack 7260 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_SGVS_2_pack 7306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_STATISTICS_pack 7339 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VF_TOPOLOGY_pack 7375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 7411 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 7479 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_VS_pack 7594 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_pack 7644 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_CHROMAKEY_pack 7699 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_DEPTH_STENCIL_pack 7771 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_3DSTATE_WM_HZ_OP_pack 7845 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GPGPU_WALKER_pack 7924 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_CURBE_LOAD_pack 7966 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 8031 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_pack 8098 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_GRPID_pack 8158 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_PRT_pack 8276 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_OBJECT_WALKER_pack 8373 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_STATE_FLUSH_pack 8454 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MEDIA_VFE_STATE_pack 8528 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ARB_CHECK_pack 8554 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ARB_ON_OFF_pack 8603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_ATOMIC_pack 8640 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_BATCH_BUFFER_END_pack 8676 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_BATCH_BUFFER_START_pack 8715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_CLFLUSH_pack 8757 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_CONDITIONAL_BATCH_BUFFER_END_pack 8798 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_COPY_MEM_MEM_pack 8860 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_DISPLAY_FLIP_pack 8901 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_FORCE_WAKEUP_pack 8936 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_IMM_pack 8973 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_MEM_pack 9011 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_REGISTER_REG_pack 9049 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_SCAN_LINES_EXCL_pack 9087 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_LOAD_SCAN_LINES_INCL_pack 9119 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_MATH_pack 9145 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_NOOP_pack 9184 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_PREDICATE_pack 9210 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_REPORT_HEAD_pack 9239 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_REPORT_PERF_COUNT_pack 9277 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_CONTEXT_pack 9304 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_CONTROL_pack 9333 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_RS_STORE_DATA_IMM_pack 9377 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SEMAPHORE_SIGNAL_pack 9424 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SEMAPHORE_WAIT_pack 9469 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SET_CONTEXT_pack 9509 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SET_PREDICATE_pack 9540 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_DATA_IMM_pack 9584 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_DATA_INDEX_pack 9621 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_STORE_REGISTER_MEM_pack 9656 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_SUSPEND_FLUSH_pack 9681 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_TOPOLOGY_FILTER_pack 9708 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_UPDATE_GTT_pack 9734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_USER_INTERRUPT_pack 9775 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_MI_WAIT_FOR_EVENT_pack 9827 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PIPELINE_SELECT_pack 9895 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PIPE_CONTROL_pack 9994 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_STATE_BASE_ADDRESS_pack 10108 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_STATE_SIP_pack 10137 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_BCS_INSTDONE_pack 10179 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_0_pack 10228 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_1_pack 10265 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CACHE_MODE_SS_pack 10289 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CL_INVOCATION_COUNT_pack 10308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CL_PRIMITIVES_COUNT_pack 10330 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_CHICKEN1_pack 10353 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_DEBUG_MODE2_pack 10375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_CS_INVOCATION_COUNT_pack 10394 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_DS_INVOCATION_COUNT_pack 10413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GS_INVOCATION_COUNT_pack 10432 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_GS_PRIMITIVES_COUNT_pack 10451 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_HS_INVOCATION_COUNT_pack 10470 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IA_PRIMITIVES_COUNT_pack 10489 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_IA_VERTICES_COUNT_pack 10529 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_INSTDONE_1_pack 10571 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_L3CNTLREG_pack 10592 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_PS_INVOCATION_COUNT_pack 10625 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_ROW_INSTDONE_pack 10675 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SAMPLER_INSTDONE_pack 10734 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SC_INSTDONE_pack 10774 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN0_pack 10793 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN1_pack 10812 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN2_pack 10831 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_NUM_PRIMS_WRITTEN3_pack 10850 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED0_pack 10869 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED1_pack 10888 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED2_pack 10907 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_PRIM_STORAGE_NEEDED3_pack 10926 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET0_pack 10943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET1_pack 10960 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET2_pack 10977 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_SO_WRITE_OFFSET3_pack 11025 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VCS_INSTDONE_pack 11075 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VECS_INSTDONE_pack 11094 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN10_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen7_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 328 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_BODY_pack 330 dw[0] = 334 dw[1] = 340 dw[2] = __gen_combine_address(data, &dw[2], values->Buffer[0], v2); 342 dw[3] = __gen_combine_address(data, &dw[3], values->Buffer[1], 0); 344 dw[ 359 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_BINDING_TABLE_STATE_pack 402 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_BLEND_STATE_ENTRY_pack 457 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_CC_VIEWPORT_pack 487 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_COLOR_CALC_STATE_pack 539 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_DEPTH_STENCIL_STATE_pack 598 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_INLINE_DATA_DESCRIPTION_FOR_MFD_AVC_BSD_OBJECT_pack 667 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_INTERFACE_DESCRIPTOR_DATA_pack 715 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEMORY_OBJECT_CONTROL_STATE_pack 739 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MFD_MPEG2_BSD_OBJECT_INLINE_DATA_DESCRIPTION_pack 766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_PALETTE_ENTRY_pack 866 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_RENDER_SURFACE_STATE_pack 948 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SAMPLER_BORDER_COLOR_STATE_pack 1044 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SAMPLER_STATE_pack 1097 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SCISSOR_RECT_pack 1127 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SF_CLIP_VIEWPORT_pack 1197 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 1223 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_DECL_pack 1245 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_DECL_ENTRY_pack 1289 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VERTEX_BUFFER_STATE_pack 1326 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VERTEX_ELEMENT_STATE_pack 1376 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DPRIMITIVE_pack 1434 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_AA_LINE_PARAMETERS_pack 1475 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BINDING_TABLE_POINTERS_DS_pack 1511 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BINDING_TABLE_POINTERS_GS_pack 1547 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BINDING_TABLE_POINTERS_HS_pack 1583 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BINDING_TABLE_POINTERS_PS_pack 1619 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BINDING_TABLE_POINTERS_VS_pack 1655 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_BLEND_STATE_POINTERS_pack 1692 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CC_STATE_POINTERS_pack 1731 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CHROMA_KEY_pack 1774 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CLEAR_PARAMS_pack 1851 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CLIP_pack 1912 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_DS_pack 1947 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_GS_pack 1982 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_HS_pack 2017 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_PS_pack 2052 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_CONSTANT_VS_pack 2111 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_DEPTH_BUFFER_pack 2171 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_DEPTH_STENCIL_STATE_POINTERS_pack 2213 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_DRAWING_RECTANGLE_pack 2282 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_DS_pack 2390 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_GS_pack 2469 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_HIER_DEPTH_BUFFER_pack 2533 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_HS_pack 2604 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_INDEX_BUFFER_pack 2649 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_LINE_STIPPLE_pack 2693 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_MONOFILTER_SIZE_pack 2752 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_MULTISAMPLE_pack 2810 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_POLY_STIPPLE_OFFSET_pack 2847 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_POLY_STIPPLE_PATTERN_pack 3015 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PS_pack 3094 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PUSH_CONSTANT_ALLOC_DS_pack 3134 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PUSH_CONSTANT_ALLOC_GS_pack 3174 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PUSH_CONSTANT_ALLOC_HS_pack 3214 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PUSH_CONSTANT_ALLOC_PS_pack 3254 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_PUSH_CONSTANT_ALLOC_VS_pack 3289 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 3321 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 3354 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_STATE_POINTERS_DS_pack 3390 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_STATE_POINTERS_GS_pack 3426 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_STATE_POINTERS_HS_pack 3462 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_STATE_POINTERS_PS_pack 3498 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLER_STATE_POINTERS_VS_pack 3534 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SAMPLE_MASK_pack 3598 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SBE_pack 3745 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SCISSOR_STATE_POINTERS_pack 3841 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SF_pack 3917 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SO_BUFFER_pack 3965 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_SO_DECL_LIST_pack 4012 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_STENCIL_BUFFER_pack 4069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_STREAMOUT_pack 4141 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_TE_pack 4189 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_URB_DS_pack 4229 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_URB_GS_pack 4269 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_URB_HS_pack 4309 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_URB_VS_pack 4346 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VERTEX_BUFFERS_pack 4378 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VERTEX_ELEMENTS_pack 4409 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VF_STATISTICS_pack 4442 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VIEWPORT_STATE_POINTERS_CC_pack 4478 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP_pack 4537 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_VS_pack 4645 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_3DSTATE_WM_pack 4717 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_GPGPU_OBJECT_pack 4793 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_GPGPU_WALKER_pack 4862 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_CURBE_LOAD_pack 4904 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 4962 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_OBJECT_pack 5021 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_OBJECT_PRT_pack 5136 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_OBJECT_WALKER_pack 5235 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_STATE_FLUSH_pack 5310 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MEDIA_VFE_STATE_pack 5379 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_ARB_CHECK_pack 5403 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_ARB_ON_OFF_pack 5427 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_BATCH_BUFFER_END_pack 5457 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_BATCH_BUFFER_START_pack 5491 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_CLFLUSH_pack 5529 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_CONDITIONAL_BATCH_BUFFER_END_pack 5569 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_FLUSH_pack 5603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_LOAD_REGISTER_IMM_pack 5640 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_LOAD_REGISTER_MEM_pack 5673 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_NOOP_pack 5712 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_PREDICATE_pack 5738 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_REPORT_HEAD_pack 5766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_REPORT_PERF_COUNT_pack 5804 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_SEMAPHORE_MBOX_pack 5842 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_SET_CONTEXT_pack 5880 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_STORE_DATA_IMM_pack 5921 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_STORE_DATA_INDEX_pack 5956 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_STORE_REGISTER_MEM_pack 5987 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_SUSPEND_FLUSH_pack 6012 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_TOPOLOGY_FILTER_pack 6040 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_URB_CLEAR_pack 6068 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_USER_INTERRUPT_pack 6108 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_MI_WAIT_FOR_EVENT_pack 6155 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_PIPELINE_SELECT_pack 6218 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_PIPE_CONTROL_pack 6305 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_STATE_BASE_ADDRESS_pack 6382 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_STATE_PREFETCH_pack 6419 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_STATE_SIP_pack 6456 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SWTESS_BASE_ADDRESS_pack 6491 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_BCS_FAULT_REG_pack 6515 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_BCS_INSTDONE_pack 6544 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_BCS_RING_BUFFER_CTL_pack 6566 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_CL_INVOCATION_COUNT_pack 6585 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_CL_PRIMITIVES_COUNT_pack 6604 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_CS_INVOCATION_COUNT_pack 6623 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_DS_INVOCATION_COUNT_pack 6649 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_ERR_INT_pack 6681 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_GFX_ARB_ERROR_RPT_pack 6706 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_GS_INVOCATION_COUNT_pack 6725 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_GS_PRIMITIVES_COUNT_pack 6744 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_HS_INVOCATION_COUNT_pack 6763 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_IA_PRIMITIVES_COUNT_pack 6782 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_IA_VERTICES_COUNT_pack 6820 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_INSTDONE_1_pack 6863 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_INSTPM_pack 6894 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_L3CNTLREG2_pack 6923 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_L3CNTLREG3_pack 6948 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_L3SQCREG1_pack 6968 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_PS_INVOCATION_COUNT_pack 6997 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_RCS_FAULT_REG_pack 7025 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_RCS_RING_BUFFER_CTL_pack 7062 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_ROW_INSTDONE_pack 7113 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SAMPLER_INSTDONE_pack 7163 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SC_INSTDONE_pack 7195 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_NUM_PRIMS_WRITTEN0_pack 7214 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_NUM_PRIMS_WRITTEN1_pack 7233 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_NUM_PRIMS_WRITTEN2_pack 7252 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_NUM_PRIMS_WRITTEN3_pack 7271 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_PRIM_STORAGE_NEEDED0_pack 7290 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_PRIM_STORAGE_NEEDED1_pack 7309 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_PRIM_STORAGE_NEEDED2_pack 7328 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_PRIM_STORAGE_NEEDED3_pack 7347 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_WRITE_OFFSET0_pack 7364 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_WRITE_OFFSET1_pack 7381 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_WRITE_OFFSET2_pack 7398 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_SO_WRITE_OFFSET3_pack 7425 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VCS_FAULT_REG_pack 7476 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VCS_INSTDONE_pack 7532 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VCS_RING_BUFFER_CTL_pack 7554 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN7_VS_INVOCATION_COUNT_pack [all...] |
| H A D | gen6_pack.h | 54 uint32_t dw; member in union:__gen_value 116 return ((union __gen_value) { .f = (v) }).dw; 301 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CONSTANT_BODY_pack 303 dw[0] = 309 dw[1] = __gen_combine_address(data, &dw[1], values->PointertoConstantBuffer1, v1); 313 dw[2] = __gen_combine_address(data, &dw[2], values->PointertoConstantBuffer2, v2); 317 dw[3] = __gen_combine_address(data, &dw[ 330 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_BINDING_TABLE_STATE_pack 373 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_BLEND_STATE_ENTRY_pack 428 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_CC_VIEWPORT_pack 450 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_CLIP_VIEWPORT_pack 486 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_COLOR_CALC_STATE_pack 538 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_DEPTH_STENCIL_STATE_pack 599 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_INTERFACE_DESCRIPTOR_DATA_pack 645 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEMORY_OBJECT_CONTROL_STATE_pack 665 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_PALETTE_ENTRY_pack 741 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_RENDER_SURFACE_STATE_pack 821 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_SAMPLER_BORDER_COLOR_STATE_pack 943 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_SAMPLER_STATE_pack 997 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_SCISSOR_RECT_pack 1033 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_SF_OUTPUT_ATTRIBUTE_DETAIL_pack 1062 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_SF_VIEWPORT_pack 1107 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_VERTEX_BUFFER_STATE_pack 1143 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_VERTEX_ELEMENT_STATE_pack 1193 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DPRIMITIVE_pack 1247 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_AA_LINE_PARAMETERS_pack 1293 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_BINDING_TABLE_POINTERS_pack 1343 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CC_STATE_POINTERS_pack 1390 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CHROMA_KEY_pack 1433 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CLEAR_PARAMS_pack 1501 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CLIP_pack 1563 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CONSTANT_GS_pack 1608 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CONSTANT_PS_pack 1653 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_CONSTANT_VS_pack 1727 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_DEPTH_BUFFER_pack 1795 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_DRAWING_RECTANGLE_pack 1875 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_GS_pack 1948 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_GS_SVB_INDEX_pack 1999 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_HIER_DEPTH_BUFFER_pack 2045 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_INDEX_BUFFER_pack 2090 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_LINE_STIPPLE_pack 2134 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_MONOFILTER_SIZE_pack 2184 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_MULTISAMPLE_pack 2232 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_POLY_STIPPLE_OFFSET_pack 2269 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_POLY_STIPPLE_PATTERN_pack 2396 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SAMPLER_PALETTE_LOAD0_pack 2428 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SAMPLER_PALETTE_LOAD1_pack 2466 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SAMPLER_STATE_POINTERS_pack 2511 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SAMPLE_MASK_pack 2547 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SCISSOR_STATE_POINTERS_pack 2667 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_SF_pack 2853 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_STENCIL_BUFFER_pack 2895 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_URB_pack 2935 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_VERTEX_BUFFERS_pack 2967 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_VERTEX_ELEMENTS_pack 2998 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_VF_STATISTICS_pack 3036 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_VIEWPORT_STATE_POINTERS_pack 3104 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_VS_pack 3238 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_3DSTATE_WM_pack 3332 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_CURBE_LOAD_pack 3375 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_GATEWAY_STATE_pack 3414 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_INTERFACE_DESCRIPTOR_LOAD_pack 3468 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_OBJECT_pack 3526 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_OBJECT_PRT_pack 3641 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_OBJECT_WALKER_pack 3742 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_STATE_FLUSH_pack 3814 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MEDIA_VFE_STATE_pack 3882 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_ARB_CHECK_pack 3906 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_ARB_ON_OFF_pack 3930 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_BATCH_BUFFER_END_pack 3960 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_BATCH_BUFFER_START_pack 3993 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_CLFLUSH_pack 4029 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_CONDITIONAL_BATCH_BUFFER_END_pack 4069 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_FLUSH_pack 4103 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_LOAD_REGISTER_IMM_pack 4142 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_LOAD_SCAN_LINES_EXCL_pack 4173 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_NOOP_pack 4198 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_REPORT_HEAD_pack 4228 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_SEMAPHORE_MBOX_pack 4267 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_SET_CONTEXT_pack 4306 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_STORE_DATA_IMM_pack 4347 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_STORE_DATA_INDEX_pack 4382 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_STORE_REGISTER_MEM_pack 4413 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_SUSPEND_FLUSH_pack 4441 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_URB_CLEAR_pack 4469 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_USER_INTERRUPT_pack 4504 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_MI_WAIT_FOR_EVENT_pack 4545 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_PIPELINE_SELECT_pack 4603 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_PIPE_CONTROL_pack 4689 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_STATE_BASE_ADDRESS_pack 4766 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_STATE_PREFETCH_pack 4803 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_STATE_SIP_pack 4837 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_BCS_FAULT_REG_pack 4861 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_BCS_INSTDONE_pack 4890 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_BCS_RING_BUFFER_CTL_pack 4920 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_GFX_ARB_ERROR_RPT_pack 4975 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_INSTDONE_1_pack 5053 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_INSTDONE_2_pack 5108 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_INSTPM_pack 5142 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_RCS_FAULT_REG_pack 5170 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_RCS_RING_BUFFER_CTL_pack 5201 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_VCS_FAULT_REG_pack 5252 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_VCS_INSTDONE_pack 5308 uint32_t * restrict dw = (uint32_t * restrict) dst; local in function:GEN6_VCS_RING_BUFFER_CTL_pack [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/ |
| H A D | brw_wm.c | 6 static void brw_wm_xy(struct brw_compile *p, int dw) argument 14 if (dw == 16) { 37 static void brw_wm_affine_st(struct brw_compile *p, int dw, argument 42 if (dw == 16) { 57 msg += dw/8; 68 msg += dw/8; 75 static inline unsigned simd(int dw) argument 77 return dw == 16 ? BRW_SAMPLER_SIMD_MODE_SIMD16 : BRW_SAMPLER_SIMD_MODE_SIMD8; 80 static inline struct brw_reg sample_result(int dw, int result) argument 84 dw 91 brw_wm_sample(struct brw_compile * p,int dw,int channel,int msg,int result) argument 113 brw_wm_sample__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument 143 brw_wm_affine(struct brw_compile * p,int dw,int channel,int msg,int result) argument 150 brw_wm_affine__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument 157 null_result(int dw) argument 168 brw_fb_write(struct brw_compile * p,int dw) argument 218 brw_wm_write(struct brw_compile * p,int dw,int src) argument 263 brw_wm_write__mask(struct brw_compile * p,int dw,int src,int mask) argument 325 brw_wm_write__opacity(struct brw_compile * p,int dw,int src,int mask) argument 387 brw_wm_write__mask_ca(struct brw_compile * p,int dw,int src,int mask) argument 506 brw_wm_projective_st(struct brw_compile * p,int dw,int channel,int msg) argument 580 brw_wm_projective(struct brw_compile * p,int dw,int channel,int msg,int result) argument 587 brw_wm_projective__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/ |
| H A D | brw_wm.c | 6 static void brw_wm_xy(struct brw_compile *p, int dw) argument 14 if (dw == 16) { 37 static void brw_wm_affine_st(struct brw_compile *p, int dw, argument 42 if (dw == 16) { 57 msg += dw/8; 68 msg += dw/8; 75 static inline unsigned simd(int dw) argument 77 return dw == 16 ? BRW_SAMPLER_SIMD_MODE_SIMD16 : BRW_SAMPLER_SIMD_MODE_SIMD8; 80 static inline struct brw_reg sample_result(int dw, int result) argument 84 dw 91 brw_wm_sample(struct brw_compile * p,int dw,int channel,int msg,int result) argument 113 brw_wm_sample__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument 143 brw_wm_affine(struct brw_compile * p,int dw,int channel,int msg,int result) argument 150 brw_wm_affine__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument 157 null_result(int dw) argument 168 brw_fb_write(struct brw_compile * p,int dw) argument 218 brw_wm_write(struct brw_compile * p,int dw,int src) argument 263 brw_wm_write__mask(struct brw_compile * p,int dw,int src,int mask) argument 325 brw_wm_write__opacity(struct brw_compile * p,int dw,int src,int mask) argument 387 brw_wm_write__mask_ca(struct brw_compile * p,int dw,int src,int mask) argument 506 brw_wm_projective_st(struct brw_compile * p,int dw,int channel,int msg) argument 580 brw_wm_projective(struct brw_compile * p,int dw,int channel,int msg,int result) argument 587 brw_wm_projective__alpha(struct brw_compile * p,int dw,int channel,int msg,int result) argument [all...] |