This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> GET /pack/4695/[Commie]%20Kantai%20Collection%20-%2012%20[0F7701FC].mkv HTTP/1.1 | |
> Range: bytes=12210176- | |
> User-Agent: curl/7.36.0 | |
> Host: tori.aoi-chan.com | |
> Accept: */* | |
> | |
< HTTP/1.1 302 Found | |
* Server nginx/1.6.2 (Ubuntu) is not blacklisted | |
< Server: nginx/1.6.2 (Ubuntu) | |
< Date: Mon, 13 Apr 2015 04:59:04 GMT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This issue behaves as intended based on the following: | |
REP STOSB is significantly faster than AVX stores when streaming through the LLC to memory, because it uses a special store semantic that avoids the need to read-for-ownership. There’s no way to get this semantic other than using REP STOSB. We can go faster than REP STOSB using VMOVAPS when hitting L1 cache, which is why we use it for small buffers only. | |
Note that REP STOSB *is* slower than VMOVAPS when the buffer is memory marked uncacheable. Unfortunately, there’s no way for bzero( ) to efficiently check how the memory is mapped, and switch into a different implementation, so when working with uncacheable memory you will want to use your own zeroing implementation, implemented using either VMOVAPS or VMOVNTDQA. Note that you should be using your own zeroing implementation with noncacheable memory anyway, as the behavior of memset( ) is formally undefined by the C standard when using memory that didn’t come from “normal” C (stack or malloc) allocat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rcombs> if you'd like a well-executed bittersweet show this season, pick up Plastic Memories | |
<rcombs> I'm one episode in and it's already asking hard questions, addressing serious topics, and just about got me to tear up | |
<rcombs> while simultaneously having some wonderfully fun, extremely well-animated sequences | |
<rcombs> Dogakobo's still got it | |
<rcombs> two combs up | |
<rcombs> other series this season: | |
<rcombs> SNAFU TOO!: picked up, loving it, animation's much better than last season | |
<rcombs> Is It Wrong to Try to Pick Up Girls in a Dungeon?: picked up on a whim and enjoying so far, but we'll see where it goes | |
<rcombs> Food Wars: watched one episode raw; was considering signing on as editor; decided to drop it | |
<rcombs> and then in "aired but not yet TL'd": I'm signed on to edit The Disappearance of Nagato Yuki-chan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libsystem_platform.dylib`_platform_bzero$VARIANT$Unknown: | |
libsystem_platform.dylib[0x5c40] <+0>: push rbp | |
libsystem_platform.dylib[0x5c41] <+1>: mov rbp, rsp | |
libsystem_platform.dylib[0x5c44] <+4>: mov rdx, rsi | |
libsystem_platform.dylib[0x5c47] <+7>: xor rsi, rsi | |
libsystem_platform.dylib[0x5c4a] <+10>: xorps xmm0, xmm0 | |
libsystem_platform.dylib[0x5c4d] <+13>: mov rax, rdi | |
libsystem_platform.dylib[0x5c50] <+16>: cmp rdx, 0x40 | |
libsystem_platform.dylib[0x5c54] <+20>: jb 0x5cb7 ; <+119> | |
libsystem_platform.dylib[0x5c56] <+22>: cmp rdx, 0x8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-03-31 23:25:25 -0600 | |
./configure | |
--prefix=/usr/local/Cellar/llvm/HEAD | |
--enable-optimized | |
--disable-bindings | |
--enable-targets=host | |
--enable-shared | |
checking for C compiler default output file name... a.out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-03-31 22:40:02 -0600 | |
./configure | |
--prefix=/usr/local/Cellar/llvm/HEAD | |
--enable-optimized | |
--disable-bindings | |
--enable-targets=host | |
--enable-shared | |
checking for C compiler default output file name... a.out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network Working Group J. R. Combs, Ed. | |
Internet-Draft Plex | |
Updates: 7233 March 24, 2015 | |
(if approved) | |
Intended status: Standards Track | |
Expires: September 25, 2015 | |
HTTP/1.1: Range Responses of Indeterminate Length | |
draft-combs-http-indeterminate-range-00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network Working Group J. R. Combs, Ed. | |
Internet-Draft Plex | |
Updates: 7233 March 24, 2015 | |
(if approved) | |
Intended status: Standards Track | |
Expires: September 25, 2015 | |
HTTP/1.1: Range Responses of Indeterminate Length | |
draft-combs-http-indeterminate-range-00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network Working Group J. R. Combs, Ed. | |
Internet-Draft Plex | |
Updates: 7233 March 18, 2015 | |
(if approved) | |
Intended status: Standards Track | |
Expires: September 19, 2015 | |
HTTP/1.1: Range Responses of Indeterminate Length | |
draft-combs-http-indeterminate-range-00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef enum { | |
INTEGER, | |
FLOAT, | |
CHAR, | |
STRING, | |
SYMBOL, | |
LIST, | |
LPAREN, | |
RPAREN, | |
QUOTED, |