search for: duplist

Displaying 3 results from an estimated 3 matches for "duplist".

Did you mean: deplist
2013 Nov 04
1
ggplot2: Add '+' operator for aes (uneval) objects
...r themes and gg objects)? I had a couple of cases where such an operator would be useful, for instance to combine the result of aes and aes_string in functions. Any flaws with the following proposition: `+.uneval` <- function(e1, e2) { dup <- names(e1) %in% names(e2) if (any(dup)) { duplist <- paste(sQuote(names(e1)[dup]), collapse = ", ") msg <- sprintf(ngettext(length(dup), "element %s occurs in both summands - second one gets precedence", "elements %s occur in both summands - second one gets precedence"),...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
..., current_max_dfas, sizeof( int ) ); } void ntod() { int *accset, ds, nacc, newds; int sym, hashval, numstates, dsize; int num_full_table_rows; int *nset, *dset; int targptr, totaltrans, i, comstate, comfreq, targ; int symlist[256 + 1]; int num_start_states; int todo_head, todo_next; int duplist[256 + 1], state[256 + 1]; int targfreq[256 + 1], targstate[256 + 1]; accset = (int *) allocate_array( num_rules + 1, sizeof( int ) ); nset = (int *) allocate_array( current_max_dfa_size, sizeof( int ) ); todo_head = todo_next = 0; for ( i = 0; i <= csize; ++i ) { duplist[i] = 0; symli...