Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
evozer
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
evozer
6y ago
There is, it's called static. Just hide it in a .cpp file and expose the real function in a header file.
2.
▲
by
evozer
7y ago
I don't understand your example, why would (1 + 2.060) - 2.060 == 0 while 1 + (2.060 - 2.060) == 1? Am I just misunderstanding what you wrote?
3.
▲
by
evozer
7y ago
shouldn't it be e^tau*i = 1 if tau is 2pi?
4.
▲
by
evozer
7y ago
Did you consider emulating mmap yourselves? "Memory mapped files work by mapping the full file into a virtual address space and then using page faults to determine which chunks to load into physical memory. In essence it allows you
5.
▲
by
evozer
8y ago
I had to go to the last page and click "repeat the search with the omitted results included" to make it show up at all. After doing that it was the third result.
6.
▲
by
evozer
8y ago
I looked at the implementation of the openStream() function: AudioStream *AudioStreamBuilder::build() { AudioStream *stream = nullptr; if (mAudioApi == AudioApi::AAudio && isAAudioSupported()) { stream = ne
7.
▲
by
evozer
8y ago
OP said $5 for 84 days though, not a month.
8.
▲
by
evozer
8y ago
Here is the implementation: https://github.com/chromium/chromium/blob/master/components/...
9.
▲
by
evozer
8y ago
But it would be fun to see NP bodyblock the entire enemy team with one set of treants.
10.
▲
by
evozer
8y ago
If you want to be more efficient, you can also use a union for this. typedef union { int i; float f; double d; long l; char c; void *p; ... } var; Now you might also get some nice float-interpreted-as-int bugs if you forget th