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
#include <stdio.h> | |
#include <stdbool.h> | |
struct coro { | |
void *state; | |
}; | |
struct range_coro { | |
struct coro base; | |
int cur, max, step; |
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
#include <alloca.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
struct tmpvar_hook { | |
void *ptr; | |
struct tmpvar_hook *next; | |
}; | |
static void tmpvar_hook_free(struct tmpvar_hook **hook) { |
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
#include <stdint.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <benchmark/benchmark.h> | |
unsigned int odd_constant = 0xdeadbeef | 1; | |
static unsigned int hash_crc32_orig(const void *keyptr) | |
{ | |
unsigned int hash = odd_constant; |
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
#include <stdio.h> | |
struct error_code { | |
int code; | |
}; | |
struct error_context { | |
const struct error_code *code; | |
const char *msg; | |
const char *file; |
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
Index: include/clang/AST/RecursiveASTVisitor.h | |
=================================================================== | |
--- include/clang/AST/RecursiveASTVisitor.h (revision 315357) | |
+++ include/clang/AST/RecursiveASTVisitor.h (working copy) | |
@@ -2147,6 +2147,7 @@ | |
DEF_TRAVERSE_STMT(DoStmt, {}) | |
DEF_TRAVERSE_STMT(ForStmt, {}) | |
DEF_TRAVERSE_STMT(GotoStmt, {}) | |
+DEF_TRAVERSE_STMT(ComeFromStmt, {}) | |
DEF_TRAVERSE_STMT(IfStmt, {}) |
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
/* Build with google benchmark */ | |
#include "benchmark/benchmark.h" | |
#include <ctype.h> | |
#include <errno.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <time.h> |
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
/* Based on code by user DorianRudolph on GitHub | |
https://gist.github.com/DorianRudolph/ca283dfdfd185bc812b7 | |
*/ | |
/* | |
TODO: | |
- use menu key as a Fn key to enable multimedia control | |
- Fn+F1 = toggle mute | |
- Fn+F2 = vol up | |
- Fn+F3 = vol dn |
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
namespace io { | |
struct Reader { | |
virtual std::tuple<int, moku::error> Read(moku::slice<uint8_t> p) = 0; | |
}; | |
struct Writer { | |
virtual std::tuple<int, moku::error> Write(moku::slice<uint8_t> p) = 0; | |
}; | |
} // namespace io | |
namespace fmt { | |
moku::error Errorf(std::string format, moku::slice<moku::empty_interface> a); |
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
% sudo cpupower frequency-set -g performance ~/git/benchmark/build | |
Setting cpu: 0 | |
Setting cpu: 1 | |
Setting cpu: 2 | |
Setting cpu: 3 | |
% ./test ~/git/simdswitch | |
Run on (4 X 2746.51 MHz CPU s) | |
2017-01-06 08:06:24 | |
Benchmark Time CPU Iterations |
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
/* | |
* Buildbot 0.9.x shield generator | |
* Copyright (c) 2016 Leandro Pereira <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy of | |
* this software and associated documentation files (the "Software"), to deal in the | |
* Software without restriction, including without limitation the rights to use, copy, | |
* modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | |
* and to permit persons to whom the Software is furnished to do so, subject to the | |
* following conditions: |