search for: getrhs

Displaying 6 results from an estimated 6 matches for "getrhs".

Did you mean: getlhs
2006 Jan 08
1
confint/nls
...[2]]), call("[", gradSetArgs[[1]], gradSetArgs[[2]], gradSetArgs[[2]], ! gradSetArgs[[3]]), call("[", gradSetArgs[[1]], gradSetArgs[[2]], gradSetArgs[[2]], ! gradSetArgs[[3]], gradSetArgs[[4]])) getRHS.varying <- function() { ans <- getRHS.noVarying() --- 266,277 ---- gradSetArgs[[1]] <- (~attr(ans, "gradient"))[[2]] gradCall <- switch(length(gradSetArgs) - 1, ! call("[", gradSetArgs[[1]], gradSetArgs[[2]],d...
2018 May 05
0
Bug in profile.nls with algorithm = "plinear"
...UE, TRUE, TRUE, TRUE, #R> TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), #R> c(TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, #R> TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), c(TRUE, TRUE)] f2$m$setVarying # [output output abbreviated] environment(f2$m$setVarying)$getRHS.varying #R> function () #R> { #R> ans <- getRHS.noVarying() #R> attr(ans, "gradient") <- eval(gradCall) #R> ans #R> } #R> <bytecode: 0x000000000ce31768> #R> <environment: 0x000000000cbdbad0> dim(attr(environment(f2$m$setVarying)$getRHS.no...
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...t;); > + break; > + > + case MCExpr::Constant: > + break; > + > + case MCExpr::Binary: > + { > + MCBinaryExpr const *BinaryExpr = cast<MCBinaryExpr>(Expr); > + > + VisitSymbols(BinaryExpr->getLHS()); > + VisitSymbols(BinaryExpr->getRHS()); > + } > + break; Please use: -- case A: { break; } -- style instead. > + > + case MCExpr::SymbolRef: > + { > + MCSymbolRefExpr const *SymbolRefExpr = cast<MCSymbolRefExpr>(Expr); > + > + getSymbolData(&SymbolRefExpr->getSymbol()...
2013 Dec 12
3
[LLVMdev] [RFC PATCH 1/2] x86: Fix ModR/M byte output in 16-bit addressing mode
This attempts to address http://llvm.org/bugs/show_bug.cgi?id=18220 It also fixes a test which was requiring the *wrong* output. I'm relatively happy with this part, and it even solves most of the hard part of feature request for .code16 in bug 8684 — which was actually why I started prodding at this. But I could do with some help with the 16-bit signed relocation handling, which I've
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote: > This probably needs to be slightly tweaked to work with mainline.  I don't see anything objectionable, but I think Daniel needs to review this one. Updated patch to work with mainline. http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94 - Michael Spencer
2018 Sep 28
3
error: expected memory with 32-bit signed offset
Hi, I want to encode Loongson ISA initially https://gist.github.com/xiangzhai/8ae6966e2f02a94e180dd16ff1cd60ac gslbx           $2,0($3,$4) It is equivalent to: dadd $1, $3, $4 lb $2,0($1) I just use  mem_simmptr  as the default value of  DAGOperand MO , because  MipsMemAsmOperand  use  parseMemOperand  to parse general  MemOffset  and only *one*  AnyRegister , for example: 0($1) But