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
| | | | |-- 1.$plus(2).$times BYVALmode-EXPRmode-FUNmode-POLYmode (silent: value res2 in $iw) | |
| | | | | |-- 1.$plus(2) EXPRmode-POLYmode-QUALmode (silent: value res2 in $iw) | |
| | | | | | |-- 1.$plus BYVALmode-EXPRmode-FUNmode-POLYmode (silent: value res2 in $iw) | |
| | | | | | | |-- 1 EXPRmode-POLYmode-QUALmode (silent: value res2 in $iw) | |
| | | | | | | | \-> Int(1) | |
| | | | | | | \-> (x: Double)Double <and> (x: Float)Float <and> (x: Long)Long <and> (x: Int)Int <and> (x: Char)Int <and> (x: Short)Int <and> (x: Byte)Int <and> (x: String)String | |
| | | | | | |-- 2 BYVALmode-EXPRmode (silent: value res2 in $iw) | |
| | | | | | | \-> Int(2) | |
| | | | | | [adapt] (x: Int)Int adapted to 3 | |
| | | | | | \-> Int(3) |
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
# Maintainer: Robert La Spina <rkidlaspina at gmail dot com> | |
# Based on the skulltag package by Mikael Eriksson <[email protected]> | |
# and Sean Streeter <anubis2591 at gmail dot com> | |
pkgname=zandronum | |
pkgver=2.0 | |
pkgrel=1 | |
pkgdesc="OpenGL ZDoom port with Client/Server multiplayer." | |
arch=('i686' 'x86_64') | |
url="http://zandronum.com/" | |
license=('custom') |
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
# Maintainer: Robert La Spina <rkidlaspina [at] gmail [dot] com> | |
# Contributor: MP2E <MP2E {AT] archlinux.us> | |
# Contributor: PkmX <[email protected]> | |
# | |
# TODO: Find a way to put engine plugins in /usr/lib/$pkgname. | |
pkgname=doomseeker | |
pkgver=1.0 | |
pkgrel=1 | |
pkgdesc='A cross-platform server browser for various multiplayer Doom source-ports.' |
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
// Compile with clang++ -std=c++14 | |
#include <functional> | |
struct foo { | |
// Implicitly compiler-generated default destructor | |
// ~foo() { } | |
}; | |
template<typename T> |
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
#!/usr/bin/env bash | |
set -e | |
mkdir -p initramfs{/,/bin,/dev,/etc,/proc,/sbin,/sys,/usr,/usr/bin,/usr/sbin} | |
pushd initramfs | |
if [[ ! -x sbin/busybox ]]; then | |
wget -O sbin/busybox http://www.busybox.net/downloads/binaries/latest/busybox-x86-64 |
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
# Contributor: Juan Diego Tascon | |
# Contributor: PkmX <[email protected]> | |
pkgname=artoolkit | |
pkgver=2.72.1 | |
pkgrel=8 | |
pkgdesc="Augmented Reality ToolKit" | |
arch=('i686' 'x86_64') | |
url="http://www.hitl.washington.edu/artoolkit/" | |
license=('GPL') |
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
// clang++/g++ -std=c++14 -Wall -Wextra -pedantic -O3 -march=native -fno-builtin | |
#include <cstring> | |
#include <chrono> | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <x86intrin.h> | |
size_t avx2_strlen(const char* const s) { | |
static_assert(__AVX2__, "AVX2 is not supported"); |
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
ifneq ($(KERNELRELEASE),) | |
obj-m := lab8.o | |
else | |
KERNELDIR ?= linux-2.6.32.60 | |
PWD := $(shell pwd) | |
SPACE := | |
SPACE += | |
eq = $(and $(findstring $(1),$(2)),$(findstring $(2),$(1))) |
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
{-# LANGUAGE OverloadedStrings, TupleSections #-} | |
import Control.Monad | |
import Control.Lens | |
import Data.Function | |
import Data.List | |
import Data.Ord | |
import qualified Data.Text.Lazy.IO as TL | |
import qualified Text.Taggy.Lens as T |
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
struct B; | |
class C; | |
struct A { | |
A(const B&); | |
A(const C&); | |
private: int var1; | |
}; | |
struct B : A { |