Diffs are based on 2,658,668 contexts (955,888 MinOpts, 1,702,780 FullOpts).
Overall (-8,548 bytes)
Collection | Base size (bytes) | Diff size (bytes) |
---|---|---|
benchmarks.run.windows.arm64.checked.mch | 11,040,056 | -308 |
Diffs are based on 2,658,668 contexts (955,888 MinOpts, 1,702,780 FullOpts).
Collection | Base size (bytes) | Diff size (bytes) |
---|---|---|
benchmarks.run.windows.arm64.checked.mch | 11,040,056 | -308 |
Diffs are based on 2,658,668 contexts (955,888 MinOpts, 1,702,780 FullOpts).
Collection | Base size (bytes) | Diff size (bytes) |
---|---|---|
benchmarks.run.windows.arm64.checked.mch | 11,040,056 | -308 |
Diffs are based on 1,007,693 contexts (446,494 MinOpts, 561,199 FullOpts).
Collection | Base size (bytes) | Diff size (bytes) |
---|---|---|
benchmarks.run.windows.arm64.checked.mch | 10,996,000 | -132 |
#include <cstdio> | |
#include <cstdint> | |
__attribute__((noinline)) | |
int pac_test() | |
{ | |
uint64_t original = 0; | |
uint64_t res = 0; | |
printf("I wonder if this has PAC enabled?\n"); | |
__asm__ ("MOV %[original], X30\n" |
TF2 MVM POP FILE KEYWORDS LIST | |
by sigsegv | |
accurate as of TF2 20171214a | |
note that some valid keywords listed in this document may be vestigial and do nothing in the current game | |
Base KeyValues Format "Directives" | |
================================== | |
#include "file" | |
#base "file" |
/// <summary> | |
/// Formats a given string into pretty print XML. | |
/// </summary> | |
private string FormatXml(string xml) | |
{ | |
try | |
{ | |
XDocument doc = XDocument.Parse(xml); | |
//Get the string representation out. |
string JSON = "{someObj:{someNested:\"\"}}"; | |
dynamic arr = JObject.Parse(JSON); //JArray.Parse() for arrays | |
foreach (dynamic token in arr) | |
{ | |
JTokenType type = ((JToken)token.value).Type; | |
switch (type) | |
{ | |
case JTokenType.String: |
function(ctx, args) | |
{ | |
//ca = call arguments, r = response, ezs = ez index. | |
var ca={},r,i | |
var ez = "open unlock release".split(" ") | |
, p = "2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97".split(' ') | |
//initially call func to get response. | |
function c() { | |
r = args.t.call(ca) |
function(ctx, args) | |
{ | |
//ca = call arguments, r = response, ezs = ez index. | |
var ca={},r | |
var strs = "open unlock release 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97".split(" ") | |
//initially call func to get response. | |
function c() { | |
r = args.t.call(ca) | |
} |
public static class StringExtensions { | |
//Returns the string, if JSON, as a pretty printed string. | |
public static string PrettyPrint(this string d) | |
{ | |
IList<string> actionLines = d.SplitAndKeepDelimiters('{', '}', ','); | |
string s = ""; | |
//Write per line, leave space between each action. | |
int tabDepth = 0; |