Displaying 9 results from an estimated 9 matches for "223986".
2015 Apr 20
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...a disagreement about the commit
approval and apparently abandoned.
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223393.html
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
The class Alp comitted did solve the possible mismatch between the
SmallString and the stream by making the SmallString private to the class.
This however did not treat the root problem, the duplication of the
information about the buffer between SmallString and the stream.
I can make perfor...
2015 Apr 30
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...oned.
>>
>>
>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223393.html
>>
>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
>>
>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
>>
>> The class Alp comitted did solve the possible mismatch between the
>> SmallString and the stream by making the SmallString private to the class.
>> This however did not treat the root problem, the duplication of the
>> information about the buffer between Sm...
2015 May 02
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...edu/pipermail/llvm-commits/Week-of-Mon-20140623/223393.html
>> >>
>> >>
>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
>> >>
>> >>
>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
>> >>
>> >> The class Alp comitted did solve the possible mismatch between the
>> >> SmallString and the stream by making the SmallString private to the
>> class.
>> >> This however did not treat the root problem, the duplication of the
>...
2015 Aug 12
2
SmallString + raw_svector_ostream combination should be more efficient
...;>>> >>
> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
> >>>>>> >>
> >>>>>> >>
> >>>>>> >>
> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
> >>>>>> >>
> >>>>>> >> The class Alp comitted did solve the possible mismatch between
> the
> >>>>>> >> SmallString and the stream by making the SmallString private to
> the
> >>>>>> &g...
2012 Dec 18
1
Error processing nut-client and nut-server
...[102 kB]
Get:2 http://security.ubuntu.com/ubuntu/ precise-security/main nut-server amd64 2.6.3-1ubuntu1.1 [1,261 kB]
Get:3 http://security.ubuntu.com/ubuntu/ precise-security/main nut all 2.6.3-1ubuntu1.1 [109 kB]
Fetched 1,473 kB in 10s (143 kB/s)???????????????????????????
(Reading database ... 223986 files and directories currently installed.)
Unpacking nut-client (from .../nut-client_2.6.3-1ubuntu1.1_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/nut-client_2.6.3-1ubuntu1.1_amd64.deb (--unpack):
?trying to overwrite '/etc/nut/nut.conf', which is also in package nut-openu...
2015 May 22
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...>> >>
>>>>> >>
>>>>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
>>>>> >>
>>>>> >>
>>>>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
>>>>> >>
>>>>> >> The class Alp comitted did solve the possible mismatch between the
>>>>> >> SmallString and the stream by making the SmallString private to the
>>>>> class.
>>>>> >> This howeve...
2015 May 02
2
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
...ts/Week-of-Mon-20140623/223393.html
>>> >>
>>> >>
>>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140623/223557.html
>>> >>
>>> >>
>>> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
>>> >>
>>> >> The class Alp comitted did solve the possible mismatch between the
>>> >> SmallString and the stream by making the SmallString private to the
>>> class.
>>> >> This however did not treat the root problem, the du...
2015 Aug 13
2
SmallString + raw_svector_ostream combination should be more efficient
.../Week-of-Mon-20140623/223557.html
> >> >>>>>> >>
> >> >>>>>> >>
> >> >>>>>> >>
> >> >>>>>> >>
> http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140630/223986.html
> >> >>>>>> >>
> >> >>>>>> >> The class Alp comitted did solve the possible mismatch between
> >> >>>>>> >> the
> >> >>>>>> >> SmallString and the stream by makin...
2015 Apr 19
6
[LLVMdev] SmallString + raw_svector_ostream combination should be more efficient
A very common code pattern in LLVM is
SmallString<128> S;
raw_svector_ostream OS(S);
OS<< ...
Use OS.str()
While raw_svector_ostream is smart to share the text buffer itself, it's
inefficient keeping two sets of pointers to the same buffer:
In SmallString: void *BeginX, *EndX, *CapacityX
In raw_ostream: char *OutBufStart, *OutBufEnd, *OutBufCur
Moreover, at runtime the