HomeSort by: relevance | last modified time | path
    Searched refs:Arg (Results 1 - 25 of 130) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_tracepoints.py 40 from u_trace import TracepointArg as Arg
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(type='uint8_t', name='nr_cbufs', var='pfb->nr_cbufs', c_format='%u')]
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
tu_tracepoints.py 42 from u_trace import TracepointArg as Arg
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(type='uint8_t', var='samples', c_format='%u')]
    [all...]
  /xsrc/external/mit/xmh/dist/
menu.c 39 Arg args[3];
55 static Arg args[] = {
69 static Arg args[] = {{XtNsensitive, (XtArgVal) NULL}};
80 Arg args[1];
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/
ArgList.c 66 (unsigned) sizeof(Arg));
SetSens.c 84 Arg args[1];
110 Arg args[1];
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
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;
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 =
radeon_program_print.c 404 for(unsigned int arg = 0; arg < opcode->NumSrcRegs; ++arg) {
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)
    [all...]
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
radeon_pair_schedule.c 537 unsigned int arg; local
574 for(arg = 0; arg < info->NumSrcRegs; arg++) {
575 /*If this arg does not read from an rgb source,
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
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
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;
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 =
radeon_program_print.c 404 for(unsigned int arg = 0; arg < opcode->NumSrcRegs; ++arg) {
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)
    [all...]
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
radeon_pair_schedule.c 537 unsigned int arg; local
574 for(arg = 0; arg < info->NumSrcRegs; arg++) {
575 /*If this arg does not read from an rgb source,
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
    [all...]
  /xsrc/external/mit/xgc/dist/
dashlist.c 44 static Arg labelargs[] = {
51 static Arg dashargs[] = {
128 static Arg args[] = {
161 static Arg dashargs[] = { /* Arglist for setting toggle state */
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 */
testfrac.c 39 static Arg percentargs[] = {
126 static Arg labelargs[] = {
132 static Arg percentargs[] = {
137 static Arg scrollargs[] = {
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 recordargs[] =
    [all...]
planemask.c 43 static Arg labelargs[] = {
50 static Arg pmargs[] = {
137 static Arg args[] = {
167 static Arg maskargs[] = { /* ArgList for setting toggle state */
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[] = {
text.c 59 static Arg labelargs[] = {
64 static Arg textargs[] = {
175 static Arg textargs[] = {
  /xsrc/external/mit/xterm/dist/
data.c 73 Arg ourTopLevelShellArgs[] =
  /xsrc/external/mit/xditview/dist/
xditview.c 166 Arg topLevelArgs[2];
275 Arg arg[2]; local
282 XtSetArg(arg[0], XtNpageNumber, &actual_number);
283 XtSetArg(arg[1], XtNlastPageNumber, &last_page);
284 XtGetValues(dvi, arg, 2);
295 XtSetArg(arg[0], XtNstring, &cur);
296 XtGetValues(XawTextGetSource(pageNumber), arg, 1); local
304 Arg arg[1] local
315 Arg arg[1]; local
318 XtGetValues(XawTextGetSource(pageNumber), arg, 1); local
326 Arg arg[1]; local
338 Arg arg[3]; local
418 Arg arg[1]; local
421 XtSetValues(XtParent(entry), arg, (Cardinal) 1); local
    [all...]

Completed in 20 milliseconds

1 2 3 4 5 6