search for: p2c

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

Did you mean: h2c
2005 Jun 07
8
[PATCH] add dom0 vcpu hotplug control
...+ case TYPE(CMSG_VCPU_HOTPLUG, CMSG_VCPU_HOTPLUG_ON): + C2P(vcpu_hotplug_t, vcpu, Int, Long); + C2P(vcpu_hotplug_t, status, Int, Long); + return dict; } return PyString_FromStringAndSize((char *)xum->msg.msg, xum->msg.length); @@ -910,6 +918,14 @@ P2C(mem_request_t, target, u32); P2C(mem_request_t, status, u32); break; + case TYPE(CMSG_VCPU_HOTPLUG, CMSG_VCPU_HOTPLUG_OFF): + P2C(vcpu_hotplug_t, vcpu, u32); + P2C(vcpu_hotplug_t, status, u32); + break; + case TYPE(CMSG_VCPU_HOTPLUG, CMSG_VCPU_HOTPLUG_ON...
2023 Mar 31
1
Query: Could documentation include modernized references?
>>>>> Duncan Murdoch >>>>> on Sun, 26 Mar 2023 12:41:03 -0400 writes: > On 26/03/2023 11:54 a.m., J C Nash wrote: >> A tangential email discussion with Simon U. has >> highlighted a long-standing matter that some tools in the >> base R distribution are outdated, but that so many >> examples and other tools may use
2008 Nov 25
0
optimization with bounds on parameters
There have been several posts about optimizations where the parameters for the objective function are bounds-constrained. Brian Ripley took my 1990 "Compact numerical methods for computers" codes and p2c'd them to give the CG and BFGS and (possibly, I should check!) the Nelder Mead code. However, I have for use by myself and colleagues prepared variants of the codes that allow bounds constraints and also what I call "masks", that is, fixed values of some parameters. The latter fea...
2012 Sep 13
0
Updates to const_get
...other Rails-Core people! I''m trying to push changes to const_get in to ruby-core that will make our lives easier. I''ve pushed a branch of Ruby to github. Can you please check it out to make sure it does what we need? Here is the link: https://github.com/tenderlove/ruby/tree/p2c When we''re happy with the way it works, I''ll do the work make sure it gets merged to ruby trunk. Thanks! <3<3<3<3 -- Aaron Patterson http://tenderlovemaking.com/
2017 Jun 27
2
Finding optim.R function
Hello, could anybody direct me where to find code for optim.R? I was able to find the C code at http://docs.rexamine.com/R-devel/optim_8c.html, but the R version would be easier for me to work with and modify. Thank you! [[alternative HTML version deleted]]
2010 Jun 25
3
[LLVMdev] recursive nested functions
Hello, This is a little off-topic. But I am writing a compiler to llvm ir for a language that admits recursive nested functions and am stuck as to how to translate them. Concretely, I'm trying to lift them all to the topmost level and pass all their free variables explicitly as arguments. To do this, I have to determine all their free variables in their bodies. In particular when I come