Displaying 15 results from an estimated 15 matches for "__r".
Did you mean:
__
1997 Sep 15
0
R-alpha: is.vector(.., mode=..) bug (old)
...es(mex3) <- list(cex3, c("typeof(.)","mode(.)","storage.mode(.)"))
mex3
]]
## Here is my test code revealing the is.vector(..) problems :
### Ex. 1 --- call ---
cl <- call("lm",y~x)
is.call(cl)# TRUE
mode(cl) # "call" (S & R); #__R: typeof(cl) == "language"
is.vector(cl, mode = "any") #R: FALSE, S: TRUE
is.vector(cl, mode = "call") #R: FALSE S: TRUE
is.vector(cl, mode = "language") #R: TRUE S: FALSE
### Ex. 2 --- symbol ---
fo <- formula( y ~ x )
mode(fo) # "cal...
2013 Oct 16
3
[LLVMdev] Unable to evaluate clang on linux or windows
...00000000>]
enable_if<treat_as_floating_point<rep>::value
^
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/chrono:232:12:
note: candidate constructor not viable: requires 0 arguments, but 1 was
provided
constexpr duration() : __r() { }
^
1 error generated.
root at no1slu398:~/Documents/LLVM/tmp# cat hello.cpp
#include <thread>
int main() {
return 0;
}
Regards,
Kashyap
On Wed, Oct 16, 2013 at 7:40 AM, Ben Pope <benpope81 at gmail.com> wrote:
> On 15/10/13 22:22, C K Kashyap wrote:
&g...
2013 Oct 18
0
[LLVMdev] Unable to evaluate clang on linux or windows
...enable_if<treat_as_floating_point<rep>::value
> ^
> /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/chrono:232:12:
> note: candidate constructor not viable: requires 0 arguments, but 1 was
> provided
> constexpr duration() : __r() { }
> ^
> 1 error generated.
> root at no1slu398:~/Documents/LLVM/tmp# cat hello.cpp
> #include <thread>
>
> int main() {
> return 0;
> }
>
>
> Regards,
> Kashyap
>
>
>
> On Wed, Oct 16, 2013 at 7:40 AM, Ben Pope <benpo...
2008 Nov 03
1
Call quality issue across VPN-> POTS vs SIP
...na I'm seeing:
If a user dials in to one of Site 2 FXO lines then dials across the VPN to a user at Site 1 while the file replication job is running audio quality (to the caller on the POTS line only) is abysmal-- audibly it sounds like about 50% of the packets are dropped ("He__ Th__ __u __r, T__s is ___ln")
On the other hand if a user at Site 2 picks up one of the Cisco phones [with the replication job still running] and dials across the VPN to a user at Site 1 audio quality is fantastic, ditto if a user at Site 1 calls to a user at Site 2.
Any ideas why the audio quality would...
2013 Oct 16
0
[LLVMdev] Unable to evaluate clang on linux or windows
On 15/10/13 22:22, C K Kashyap wrote:
> Hi,
> I'd like to try out the new c++11 features using clang. However, I am
> running into some issue or the other on both Windows and Linux. In both
> cases, it looks like the problem is due to headers from VC/g++.
> I was wondering if someone can point me to some steps on setting up a
> Windows or Linux(ubuntu 12.04 LTS) box for
2013 Oct 15
2
[LLVMdev] Unable to evaluate clang on linux or windows
Hi,
I'd like to try out the new c++11 features using clang. However, I am
running into some issue or the other on both Windows and Linux. In both
cases, it looks like the problem is due to headers from VC/g++.
I was wondering if someone can point me to some steps on setting up a
Windows or Linux(ubuntu 12.04 LTS) box for exploring clang.
I was able to successfully build clang on my ubuntu but
2018 Dec 01
2
Restrict global constructors to base ISA
...ha_avx.cpp at string:1322, queue =
'com.apple.main-thread', stop reason = EXC_BAD_INSTRUCTION
(code=EXC_I386_INVOP, subcode=0x0)
frame #0: 0x000000010016ec49
cryptest.exe`_GLOBAL__sub_I_chacha_avx.cpp at string:1322
1319 {
1320 size_type (&__a)[__n_words] = __r_.first().__r.__words;
1321 for (unsigned __i = 0; __i < __n_words; ++__i)
-> 1322 __a[__i] = 0;
1323 }
1324
1325 template <size_type __a> static
And:
(lldb) disass
cryptest.exe`_GLOBAL__sub_I_chacha_avx.cpp at chacha_avx.cpp:
0x10...
2023 Jun 29
3
[PATCH drm-next v6 02/13] drm: manager to keep track of GPUs VA mappings
...= priv;
+ struct drm_gpuva_manager *mgr = args->mgr;
+ struct drm_gpuva_ops *ops = args->ops;
+ struct drm_gpuva_op *op;
+
+ op = gpuva_op_alloc(mgr);
+ if (unlikely(!op))
+ goto err;
+
+ memcpy(op, __op, sizeof(*op));
+
+ if (op->op == DRM_GPUVA_OP_REMAP) {
+ struct drm_gpuva_op_remap *__r = &__op->remap;
+ struct drm_gpuva_op_remap *r = &op->remap;
+
+ r->unmap = kmemdup(__r->unmap, sizeof(*r->unmap),
+ GFP_KERNEL);
+ if (unlikely(!r->unmap))
+ goto err_free_op;
+
+ if (__r->prev) {
+ r->prev = kmemdup(__r->prev, sizeof(*r->prev),...
2023 Jul 13
1
[PATCH drm-next v7 02/13] drm: manager to keep track of GPUs VA mappings
...= priv;
+ struct drm_gpuva_manager *mgr = args->mgr;
+ struct drm_gpuva_ops *ops = args->ops;
+ struct drm_gpuva_op *op;
+
+ op = gpuva_op_alloc(mgr);
+ if (unlikely(!op))
+ goto err;
+
+ memcpy(op, __op, sizeof(*op));
+
+ if (op->op == DRM_GPUVA_OP_REMAP) {
+ struct drm_gpuva_op_remap *__r = &__op->remap;
+ struct drm_gpuva_op_remap *r = &op->remap;
+
+ r->unmap = kmemdup(__r->unmap, sizeof(*r->unmap),
+ GFP_KERNEL);
+ if (unlikely(!r->unmap))
+ goto err_free_op;
+
+ if (__r->prev) {
+ r->prev = kmemdup(__r->prev, sizeof(*r->prev),...
2023 Jul 20
2
[PATCH drm-misc-next v8 01/12] drm: manager to keep track of GPUs VA mappings
...= priv;
+ struct drm_gpuva_manager *mgr = args->mgr;
+ struct drm_gpuva_ops *ops = args->ops;
+ struct drm_gpuva_op *op;
+
+ op = gpuva_op_alloc(mgr);
+ if (unlikely(!op))
+ goto err;
+
+ memcpy(op, __op, sizeof(*op));
+
+ if (op->op == DRM_GPUVA_OP_REMAP) {
+ struct drm_gpuva_op_remap *__r = &__op->remap;
+ struct drm_gpuva_op_remap *r = &op->remap;
+
+ r->unmap = kmemdup(__r->unmap, sizeof(*r->unmap),
+ GFP_KERNEL);
+ if (unlikely(!r->unmap))
+ goto err_free_op;
+
+ if (__r->prev) {
+ r->prev = kmemdup(__r->prev, sizeof(*r->prev),...
2007 Oct 31
26
[Bug 1386] New: OpenSSH 4.7p1 compile error in atomicio.c under Tru64 4.0f
https://bugzilla.mindrot.org/show_bug.cgi?id=1386
Summary: OpenSSH 4.7p1 compile error in atomicio.c under Tru64
4.0f
Classification: Unclassified
Product: Portable OpenSSH
Version: 4.7p1
Platform: Alpha
OS/Version: Tru64
Status: NEW
Severity: major
Priority: P2
Component: Build
2017 Dec 22
0
[PATCH 4.14 064/159] x86/virt, x86/platform: Merge struct x86_hyper into struct x86_platform and struct x86_init
...izeof(h->init));
+ copy_array(&h->runtime, &x86_platform.hyper, sizeof(h->runtime));
+
+ x86_hyper = h;
+ x86_init.hyper.init_platform();
}
--- a/arch/x86/kernel/cpu/mshyperv.c
+++ b/arch/x86/kernel/cpu/mshyperv.c
@@ -257,6 +257,6 @@ static void __init ms_hyperv_init_platfo
const __refconst struct hypervisor_x86 x86_hyper_ms_hyperv = {
.name = "Microsoft Hyper-V",
.detect = ms_hyperv_platform,
- .init_platform = ms_hyperv_init_platform,
+ .init.init_platform = ms_hyperv_init_platform,
};
EXPORT_SYMBOL(x86_hyper_ms_hyperv);
--- a/arch/x86/kernel/cpu/vmware.c...
2013 May 30
1
wilcox_test function in coin package
Dear All,
I have two simple data samples (no groups or factors, etc.) and would just
like to compute the two-sample Wilcoxon Rank Sum test using the wilcox_test
function contained in the coin package, which is reportedly better than the
regular wilcox.test function because it performs some adjustment for ties.
Would anyone know how to craft a script to perform this task? Much
appreciated.
Janh
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the fourth version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the very first version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See