search for: def2

Displaying 10 results from an estimated 10 matches for "def2".

Did you mean: def
2019 Oct 12
2
Register allocation constraints
Hi, I have a problem during my development of a backend. There are some target instructions with multiple outputs, for example an instructionX with 2 inputs and 2 outputs: def1, def2 = InstructionX op1, op2 The defs above must be allocated in consecutive target physical registers. Is it possible to describe the constraints with tablegen and let the register allocator get all the things done or is regalloc hints related api designed just to solve the problem? Any suggestions...
2011 Jun 18
0
Shorewall 4.4.21 Beta 1
...ures: 1) AUTOMAKE=Yes now causes all directories on the CONFIG_PATH to be searched for files newer than the script that last started/restarted the firewall. 2) FORMAT-2 actions may now specify default parameter values using the DEFAULTS directive. DEFAULTS <def1>,<def2>,... Where <def1> is the default value for the first parameter, <def2> is the default value for the second parameter and so on. To specify an empty default, use ''-''. 3) The standard Drop and Reject actions are now parameterized. Each has three pa...
2011 Jun 18
0
Shorewall 4.4.21 Beta 1
...ures: 1) AUTOMAKE=Yes now causes all directories on the CONFIG_PATH to be searched for files newer than the script that last started/restarted the firewall. 2) FORMAT-2 actions may now specify default parameter values using the DEFAULTS directive. DEFAULTS <def1>,<def2>,... Where <def1> is the default value for the first parameter, <def2> is the default value for the second parameter and so on. To specify an empty default, use ''-''. 3) The standard Drop and Reject actions are now parameterized. Each has three pa...
2008 Feb 13
0
ACLs - what's the state of play?
...reate in the future? * Is there support for the IMAP ACL extension, enabling users to set and manage access rights themselves from their mail client? * If system username "abc1" has made their top-level folder "Project" accessible by system username "def2", how does def2 actually specify the folder in order to open it? I have rummaged through the archives and Wiki but mostly these still talk about the magical "dovecot-shared" and "dovecot-acl" files, and how these need to be created/maintained by the system admi...
2006 Sep 18
0
Permission denied
...nied (13) rsync: mkstemp "/media/usbdisk/DData/DENTRIX/data/.DCDocTyp.dat.6xLpNA" failed: Permission denied (13) rsync: mkstemp "/media/usbdisk/DData/DENTRIX/data/.DCDocTyp.idx.ioZMM3" failed: Permission denied (13) rsync: mkstemp "/media/usbdisk/DData/DENTRIX/data/.DEF2.dat.YgegNw" failed: Permission denied (13) rsync: mkstemp "/media/usbdisk/DData/DENTRIX/data/.DEF2.idx.rEvVNZ" failed: Permission denied (13) rsync: mkstemp "/media/usbdisk/DData/DENTRIX/data/.DXPort.dat.pQJMPs" failed: Permission denied (13) rsync: mkstemp "/med...
2019 Oct 14
1
[PATCH] gm107/ir: fix loading z offset for layered 3d image bindings
...OP_SET_OR, CC_NE, TYPE_U32, pred->getDef(0), - TYPE_U32, bld.loadImm(NULL, blockwidth / 8), - loadSuInfo32(ind, slot, NVC0_SU_INFO_BSIZE, su->tex.bindless), - pred->getDef(0)); + ValueDef &def = su->def(i); + ValueDef &def2 = su2d->def(i); + Instruction *mov = NULL; + + if (pred) { + mov = bld.mkMov(bld.getSSA(), bld.loadImm(NULL, 0)); + mov->setPredicate(CC_P, pred->getDef(0)); + } + + Instruction *uni = ret[i] = bld.mkOp2(OP_UNION, TYPE_U32, +...
2010 Feb 16
3
error : unused argument(s) when boxplot
Dear all, I am a total beginner in R, so sorry if this is the wrong place. I am using R 2.10.1 on a Mac (Mac OS 10.6.2). I have this small dataset : growth sugar 75 C 72 C 73 C 61 F 67 F 64 F 62 S 63 S I have no problem reading the table, or getting the summary, but if I try boxplot(growth~sugar, ylab="growth", xlab="sugar", data=Dataset), I have the following error :
2003 Mar 18
3
Tukey's HSD
.... These are not reported by the function TukeyHSD. When I apply the following code to the data, which I store as PROLE4.TXT, several unexpected things happen. First, the function TukeyHSD works for all the comparisons but the function simint doesn't. Second, after the application of na.omit def2$EL and def4$EL report factor values which have been omitted. Please inform me what I am doing wrong. Thank you very much. Peter B. dat0 <- read.table("prole4.txt",header=T) nrow(dat0) attach(dat0) dat <- data.frame(PRO,GRA,SOL,CEN,LAC,factor(NP),factor(TP),factor(SC),factor(PD),...
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...OKEN (list)->parent = parent; offset = 0; while (TRUE) { def = list->def; @@ -120,7 +121,10 @@ swfedit_list_new_read (SwfdecBits *bits, def++; for (;def->name != NULL; def++) { - swfedit_tag_read_tag (SWFEDIT_TOKEN (list), bits, def); + SwfeditTagDefinition def2 = *def; + if (def2.n_items) + def2.n_items += offset; + swfedit_tag_read_tag (SWFEDIT_TOKEN (list), bits, &def2); } offset += list->n_defs; } diff --git a/test/swfedit_list.h b/test/swfedit_list.h index d51ae73..e0666f7 100644 --- a/test/swfedit_list.h +++ b/test/swfed...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...list), bits, def); - entry = &g_array_index (SWFEDIT_TOKEN (list)->tokens, SwfeditTokenEntry, - SWFEDIT_TOKEN (list)->tokens->len - 1); - if (GPOINTER_TO_UINT (entry->value) == 0) - break; - - def++; - for (;def->name != NULL; def++) { - SwfeditTagDefinition def2 = *def; - if (def2.n_items) - def2.n_items += offset; - swfedit_tag_read_tag (SWFEDIT_TOKEN (list), bits, &def2); - } - offset += list->n_defs; - } - return list; -} - diff --git a/test/swfedit_list.h b/test/swfedit_list.h deleted file mode 100644 index e0666f7..0000000 ---...