Displaying 15 results from an estimated 15 matches for "_tmp".
Did you mean:
_tcp
2010 Oct 05
4
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...his;
}
For copy construction, MS VS2010 std reserves the right, and sometimes
calls,
a method to reverse elements which does so by swap:
template<class _Ty> inline
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp = _Move(_Left);
_Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!!
_Right = _Move(_Tmp);
}
When `_Ty` is `SuccIterator const` the assert "Cannot assign iterators to
two different blocks!" can fail.
Can this be a...
2010 Oct 21
1
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
Michael,
Yes, while stepping through this VS2010 `std::swap` code, `_Move` did nothing, e.g.
////////////////////////////////////////////////////
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp = _Move(_Left);
_Left = _Move(_Right);
_Right = _Move(_Tmp);
}
////////////////////////////////////////////////////
was equivalent to:
////////////////////////////////////////////////////
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp =...
2010 Oct 21
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...rves the right, and sometimes
> calls,
>
> a method to reverse elements which does so by swap:
>
>
>
> template<class _Ty> inline
>
> void swap(_Ty& _Left, _Ty& _Right)
>
> { // exchange values stored at _Left and _Right
>
> _Ty _Tmp = _Move(_Left);
This uses the compiler generated default copy constructor which does
an element by element copy.
> _Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!!
Given that SuccIterator does not implement move semantics, we ca...
2009 Mar 23
4
how to override hostname
I am trying to test stand alone puppet manifests invoking /usr/bin/
puppet.
Is there a way to override current hostname with some other value?
I have tried with no success:
FACTER_hostname=foo /usr/bin/puppet manifest.pp
Regards, Thomas
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
2010 Oct 20
0
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
...construction, MS VS2010 std reserves the right, and sometimes calls,
>
> a method to reverse elements which does so by swap:
>
> template<class _Ty> inline
>
> void swap(_Ty& _Left, _Ty& _Right)
>
> { // exchange values stored at _Left and _Right
>
> _Ty _Tmp = _Move(_Left);
>
> _Left = _Move(_Right); <<<<<<<<<<<<< Needs FULL assignment operator!!!!
>
> _Right = _Move(_Tmp);
>
> }
>
> When `_Ty` is `SuccIterator const` the assert "Cannot assign iterators to two
> different blocks!&qu...
2010 Jul 01
4
(no subject)
Jean-Mark, Tim,
Could either of you expound on the following comment in cwrs.c?
/*If _k==0, the following do-while loop will overflow the buffer.*/
----------------------------------------------------------------
...because the following do-loop does overflow the buffer when k=126
k=2;
do _u[k]=(k<<1)-1;
while(++k<len);
Thanks,
MikeH
-------------- next
2008 Jun 11
0
[LLVMdev] Miscompilation on MingW32
...which is unused is at %esp
%after the last alloca.
The first movl after the two addl is using a wrong address to store the
result (%esp points to %dummy, but the result should not be stored
there).
------------------------------------------------------------------------
.text
.align 16
.def _tmp; .scl 3; .type 32; .endef
_tmp:
pushl %ebp
Llabel1:
movl %esp, %ebp
Llabel2:
pushl %ebx
pushl %edi
pushl %esi
subl $4, %esp
LBB1_1: # entry2
movl $8, %esi
movl %esi, %eax
call __alloca
movl %esp, %edi
movl %esi, %eax
call __alloca
movl %esp, %ebx
movl %esi, %eax
call __alloca
movl %...
2015 Jan 08
2
[LLVMdev] JIT simple module and accessing the value fails
I'm using the llvm-c API and want to use the JIT. I've created the following
module
; ModuleID = '_tmp'
@a = global i64 5
define i64 @__tempfunc() {
entry:
%a_val = load i64* @a
ret i64 %a_val
}
This output is generated by LLVMDumpModule just before I call LLVMRunFunction.
Which yields a LLVMGenericValueRef. However converting the result to a 64bit
integer via LLVMGenericValueToInt(gv,...
2005 Jan 31
2
BIG delete list makes for BIGGER RAM requirements
...inux v2.4.27
RAM: 2GB
Destination box (backup, from above message):
Fedora Core 1
Rsync v2.6.3
Linux 2.6.8
RAM: 512MB
Swap: 256MB
XFS on LVM2 on Software RAID5
Cmdline:
rsync --delete --force --safe-links -a --exclude=log --exclude=cricket
--exclude=backup --exclude=matt --exclude=ftp --exclude=*_tmp*
--exclude=mysql --exclude=lost+found --exclude=db/tempfiles/3hours
--exclude=db/tempfiles/1day --exclude=httpd/backhand* --exclude=jim
--exclude=clint --exclude=*.file --exclude=*tempfile*
--exclude=db/files -e ssh --whole-file
remotebox:/home/ /back/daily/remotebox/home
The box has nothing using...
2016 Jan 06
3
Bug#810070: XEN Hypervisor crashes/reboots at Startup after "Scrubbing Free Ram"
...d urandom read with 11 bits of
entropy available
[ 0.567054] hidraw: raw HID events driver (C) Jiri Kosina
[ 0.578630] ACPI Error: [\_SB_.PCI0.LPCB.H_EC.ECAV] Namespace
lookup failure, AE_NOT_FOUND (20150818/psargs-359)
[ 0.579618] ACPI Error: Method parse/execution failed
[\_TZ.TZ00._TMP] (Node ffff880ff0910f40), AE_NOT_FOUND
(20150818/psparse-542)
[ 0.580547] ACPI Error: [\_SB_.PCI0.LPCB.H_EC.ECAV] Namespace
lookup failure, AE_NOT_FOUND (20150818/psargs-359)
[ 0.580974] ACPI Error: Method parse/execution failed
[\_TZ.TZ00._TMP] (Node ffff880ff0910f40)
[ 0.581328] pp...
2010 Oct 13
5
network interface question
Hi,
I don't have ifcfg-eth1 in my /etc/sysconfig/network-scripts. But when
I do ifconfig eth1 I can see output as below. If I do ifconfig eth12 ,
I don't see anything which i am assume is normal.
eth1 Link encap:Ethernet HWaddr 00:24:E8:44:DB:CC
BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0
2016 Apr 06
8
[PATCH 0/4] v2v: simplify Windows registry patching
The way we patch the Windows registry in order to allow it to boot off a
virtio-blk drive was initially conceived by comparing the state with
virtio-blk driver properly installed, to that without.
However, we don't want to replicate the Windows PnP system; rather we
need to apply just enough edits to make the system boot, and then let
the Windows PnP manager figure out the rest.
This series
2000 Aug 21
0
Rewritten script /etc/init.d/tinc
..._len - _fld))
done
echo ${_MSK}
}
##############################################################################
# mask_to_prefix Converts netmask to prefix length
# eg. 255.255.192.0 -> 18
# $1 ... netmask
function mask_to_prefix () {
_LEN=0; _msk="$1"
for _tmp in 1 2 3 4; do
_fld=${_msk%%.*}
_msk=${_msk#*.}
while [ ${_fld} -ne 0 ]; do
_fld=$(((_fld << 1) & 255))
_LEN=$((_LEN + 1))
done
done
echo ${_LEN}
}
##############################################################################
# vpn_load () Loads VPN...
2012 May 04
9
[hybrid]: unable to boot hvm due to eflags.ID
Hi guys,
At a loss trying to figure why
if (has_eflag(X86_EFLAGS_ID))
returns false in my HVM domU. Standard function has_eflag() in
cpucheck.c running in real mode. Works fine on PV dom0, but fails when
guest is booting on my hybrid dom0.
LMK if any ideas. I''ll keep digging in the manuals, but nothing so far.
thanks,
Mukesh
2012 Jun 24
0
nouveau _BIOS method
...c ............[.E.
4380: 54 5a 30 31 08 50 54 4d 50 0b b8 0b 14 0c 5f 53 TZ01.PTMP....._S
4390: 43 50 09 70 68 43 54 59 50 14 14 5f 43 52 54 08 CP.phCTYP.._CRT.
43a0: a4 72 0b ac 0a 77 43 52 54 54 0a 0a 00 00 14 40 .r...wCRTT.....@
43b0: 09 5f 54 4d 50 08 a0 0a 92 45 54 4d 44 a4 0b cc ._TMP....ETMD...
43c0: 0b a0 16 93 44 54 53 45 0a 03 a4 72 0b 10 0b 77 ....DTSE...r...w
43d0: 43 52 54 54 0a 0a 00 00 a0 4c 05 93 44 54 53 45 CRTT.....L..DTSE
43e0: 01 a0 18 93 50 4b 47 41 01 70 50 44 54 53 60 a4 ....PKGA.pPDTS`.
43f0: 72 0b ac 0a 77 60 0a 0a 00 00 70 44 54 53 31 60 r...w`......