| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_tracepoints.py | 40 from u_trace import TracepointArg as Arg unknown 53 tp_struct=[Arg(type='uint16_t', name='width', var='psurf->width', c_format='%u'), 54 Arg(type='uint16_t', name='height', var='psurf->height', c_format='%u'), 55 Arg(type='uint8_t', name='nr_samples', var='psurf->nr_samples', c_format='%u'), 56 Arg(type='const char *', name='format', var='util_format_short_name(psurf->format)', c_format='%s')], 67 tp_struct=[Arg(type='uint16_t', name='width', var='pfb->width', c_format='%u'), 68 Arg(type='uint16_t', name='height', var='pfb->height', c_format='%u'), 69 Arg(type='uint8_t', name='layers', var='pfb->layers', c_format='%u'), 70 Arg(type='uint8_t', name='samples', var='pfb->samples', c_format='%u'), 71 Arg(typ [all...] |
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| H A D | tu_tracepoints.py | 42 from u_trace import TracepointArg as Arg unknown 62 tp_struct=[Arg(type='uint16_t', name='width', var='fb->width', c_format='%u'), 63 Arg(type='uint16_t', name='height', var='fb->height', c_format='%u'), 64 Arg(type='uint8_t', name='MRTs', var='fb->attachment_count', c_format='%u'), 65 # Arg(type='uint8_t', name='samples', var='fb->samples', c_format='%u'), 66 Arg(type='uint16_t', name='numberOfBins', var='fb->tile_count.width * fb->tile_count.height', c_format='%u'), 67 Arg(type='uint16_t', name='binWidth', var='fb->tile0.width', c_format='%u'), 68 Arg(type='uint16_t', name='binHeight', var='fb->tile0.height', c_format='%u')], 94 args=[Arg(type='enum VkFormat', var='format', c_format='%s', to_prim_type='vk_format_description({})->short_name'), 95 Arg(typ [all...] |
| /xsrc/external/mit/xmh/dist/ |
| H A D | menu.c | 39 Arg args[3]; 55 static Arg args[] = { 69 static Arg args[] = {{XtNsensitive, (XtArgVal) NULL}}; 80 Arg args[1];
|
| H A D | bbox.c | 59 Arg args[5]; 98 Arg args[5]; 234 static Arg arglist[] = {{XtNsensitive, (XtArgVal)False}}; 333 Arg args[1]; 355 Arg args[1];
|
| /xsrc/external/mit/libXt/dist/src/ |
| H A D | ArgList.c | 66 (unsigned) sizeof(Arg));
|
| H A D | SetSens.c | 84 Arg args[1]; 110 Arg args[1];
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_pair_dead_sources.c | 52 unsigned int src_type = rc_source_type_swz(sub->Arg[i].Swizzle); 54 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1; 58 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1;
|
| H A D | radeon_pair_translate.c | 241 pair->RGB.Arg[i].Source = source; 242 pair->RGB.Arg[i].Swizzle = 244 pair->RGB.Arg[i].Abs = inst->SrcReg[i].Abs; 245 pair->RGB.Arg[i].Negate = !!(srcmask & inst->SrcReg[i].Negate & (RC_MASK_X | RC_MASK_Y | RC_MASK_Z)); 268 pair->Alpha.Arg[i].Source = source; 269 pair->Alpha.Arg[i].Swizzle = rc_init_swizzle(swz, 1); 270 pair->Alpha.Arg[i].Abs = inst->SrcReg[i].Abs; 273 pair->Alpha.Arg[i].Negate = 277 pair->Alpha.Arg[i].Negate =
|
| H A D | radeon_program_print.c | 405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; 406 const char* neg = inst->RGB.Arg[arg].Negate ? "-" : ""; 408 if(inst->RGB.Arg[arg].Source == RC_PAIR_PRESUB_SRC) 411 fprintf(f,"%d", inst->RGB.Arg[arg].Source); 413 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 0)), 414 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 1)), 415 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 2)), 440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; 441 const char* neg = inst->Alpha.Arg[arg].Negate ? "-" : ""; 443 if(inst->Alpha.Arg[ar [all...] |
| H A D | radeon_variable.c | 85 reader->U.P.Arg->Swizzle); 87 int src_index = reader->U.P.Arg->Source; 135 reader->U.P.Arg->Swizzle = rc_rewrite_swizzle( 136 reader->U.P.Arg->Swizzle, conversion_swizzle); 137 if (reader->U.P.Arg->Source != RC_PAIR_PRESUB_SRC) { 138 reader->U.P.Arg->Source = src_index; 427 if (a->U.P.Arg == b->U.P.Arg
|
| H A D | radeon_pair_schedule.c | 577 if (!(rc_source_type_swz(dst_full->RGB.Arg[arg].Swizzle) 582 if (dst_full->RGB.Arg[arg].Source == srcp_src) 583 dst_full->RGB.Arg[arg].Source = free_source; 587 else if(dst_full->RGB.Arg[arg].Source == free_source 589 dst_full->RGB.Arg[arg].Source = srcp_src; 630 unsigned int oldsrc = alpha->Alpha.Arg[arg].Source; 635 if (GET_SWZ(alpha->Alpha.Arg[arg].Swizzle, 0) < 3) { 639 } else if (GET_SWZ(alpha->Alpha.Arg[arg].Swizzle, 0) < 4) { 649 rgb->Alpha.Arg[arg].Source = source; 650 rgb->Alpha.Arg[ar [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_pair_dead_sources.c | 52 unsigned int src_type = rc_source_type_swz(sub->Arg[i].Swizzle); 54 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1; 58 inst->U.P.Alpha.Src[sub->Arg[i].Source].Used = 1;
|
| H A D | radeon_pair_translate.c | 243 pair->RGB.Arg[i].Source = source; 244 pair->RGB.Arg[i].Swizzle = 246 pair->RGB.Arg[i].Abs = inst->SrcReg[i].Abs; 247 pair->RGB.Arg[i].Negate = !!(srcmask & inst->SrcReg[i].Negate & (RC_MASK_X | RC_MASK_Y | RC_MASK_Z)); 270 pair->Alpha.Arg[i].Source = source; 271 pair->Alpha.Arg[i].Swizzle = rc_init_swizzle(swz, 1); 272 pair->Alpha.Arg[i].Abs = inst->SrcReg[i].Abs; 275 pair->Alpha.Arg[i].Negate = 279 pair->Alpha.Arg[i].Negate =
|
| H A D | radeon_program_print.c | 405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; 406 const char* neg = inst->RGB.Arg[arg].Negate ? "-" : ""; 408 if(inst->RGB.Arg[arg].Source == RC_PAIR_PRESUB_SRC) 411 fprintf(f,"%d", inst->RGB.Arg[arg].Source); 413 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 0)), 414 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 1)), 415 rc_swizzle_char(GET_SWZ(inst->RGB.Arg[arg].Swizzle, 2)), 440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; 441 const char* neg = inst->Alpha.Arg[arg].Negate ? "-" : ""; 443 if(inst->Alpha.Arg[ar [all...] |
| H A D | radeon_variable.c | 85 reader->U.P.Arg->Swizzle); 87 int src_index = reader->U.P.Arg->Source; 135 reader->U.P.Arg->Swizzle = rc_rewrite_swizzle( 136 reader->U.P.Arg->Swizzle, conversion_swizzle); 137 if (reader->U.P.Arg->Source != RC_PAIR_PRESUB_SRC) { 138 reader->U.P.Arg->Source = src_index; 427 if (a->U.P.Arg == b->U.P.Arg
|
| H A D | radeon_pair_schedule.c | 577 if (!(rc_source_type_swz(dst_full->RGB.Arg[arg].Swizzle) 582 if (dst_full->RGB.Arg[arg].Source == srcp_src) 583 dst_full->RGB.Arg[arg].Source = free_source; 587 else if(dst_full->RGB.Arg[arg].Source == free_source 589 dst_full->RGB.Arg[arg].Source = srcp_src; 630 unsigned int oldsrc = alpha->Alpha.Arg[arg].Source; 635 if (GET_SWZ(alpha->Alpha.Arg[arg].Swizzle, 0) < 3) { 639 } else if (GET_SWZ(alpha->Alpha.Arg[arg].Swizzle, 0) < 4) { 649 rgb->Alpha.Arg[arg].Source = source; 650 rgb->Alpha.Arg[ar [all...] |
| /xsrc/external/mit/xgc/dist/ |
| H A D | dashlist.c | 44 static Arg labelargs[] = { 51 static Arg dashargs[] = { 128 static Arg args[] = { 161 static Arg dashargs[] = { /* Arglist for setting toggle state */
|
| H A D | getfile.c | 64 static Arg popupshellargs[] = { /* Where to put the popup shell. */ 69 static Arg labelargs[] = { /* ArgList for the label */ 74 static Arg textargs[] = { /* ArgList for the text widget */ 81 static Arg cancelargs[] = { /* ArgList for the cancel button */
|
| H A D | testfrac.c | 39 static Arg percentargs[] = { 126 static Arg labelargs[] = { 132 static Arg percentargs[] = { 137 static Arg scrollargs[] = {
|
| H A D | main.c | 251 static Arg shellargs[] = { 255 static Arg testformargs[] = { 259 static Arg commandformargs[] = { 264 static Arg testargs[] = { 270 static Arg resultargs[] = { 277 static Arg gcchoiceargs[] = { 283 static Arg testchoiceargs[] = { 495 static Arg runargs[] = { 499 static Arg clearargs[] = { 505 static Arg recordarg [all...] |
| H A D | planemask.c | 43 static Arg labelargs[] = { 50 static Arg pmargs[] = { 137 static Arg args[] = { 167 static Arg maskargs[] = { /* ArgList for setting toggle state */
|
| H A D | choice.c | 55 static Arg labelargs[] = { 62 static Arg toggleargs[] = { 149 static Arg args[] = { /* for getting and setting the width */ 184 static Arg toggleargs[] = { 205 static Arg widthargs[] = {
|
| H A D | text.c | 59 static Arg labelargs[] = { 64 static Arg textargs[] = { 175 static Arg textargs[] = {
|
| /xsrc/external/mit/xterm/dist/ |
| H A D | data.c | 73 Arg ourTopLevelShellArgs[] =
|
| /xsrc/external/mit/xditview/dist/ |
| H A D | xditview.c | 166 Arg topLevelArgs[2]; 275 Arg arg[2]; 304 Arg arg[1]; 315 Arg arg[1]; 326 Arg arg[1]; 338 Arg arg[3]; 418 Arg arg[1]; 435 Arg args[1]; 454 Arg args[1]; 473 Arg arg [all...] |