max_stars_repo_path stringlengths 4 261 | max_stars_repo_name stringlengths 6 106 | max_stars_count int64 0 38.8k | id stringlengths 1 6 | text stringlengths 7 1.05M |
|---|---|---|---|---|
nouse_CollatzProof.agda | righ1113/collatzProof | 1 | 2146 | <filename>nouse_CollatzProof.agda
module nouse_CollatzProof where
open import Data.Nat
-- 偽
data ⊥ : Set where
-- 真
record ⊤ : Set where
-- 選言
data _∨_ (P Q : Set) : Set where
∨Intro1 : P → P ∨ Q
∨Intro2 : Q → P ∨ Q
∨Elim : {P Q R : Set} → P ∨ Q → (P → R) → (Q → R) → R
∨Elim (∨Intro1 a) prfP _ = ... |
80_lllf.asm | feilipu/LLL-Floating-Point | 8 | 174060 | <filename>80_lllf.asm
; original LLL code restored <NAME> Feb 2015
;
; original LLL code from "Floating Point Package for
; Intel 8008 and 8080 Microprocessors" by Maples Oct 24 1975
; URCL-51940 publication from Lawrence Livermore Laboratory
; 171286.PDF
;
; fixes:
; 0) many lines had space in column 1! labels become... |
Lisp65/tests/cellTest.asm | Martin-H1/6502 | 3 | 98759 | <reponame>Martin-H1/6502
; -----------------------------------------------------------------------------
; Test for heap functions under py65mon.
; <NAME> <<EMAIL>>
; -----------------------------------------------------------------------------
.word $8000
.org $8000
.outfile "tests/cellTest.rom"
.alias RamSize $7E... |
oeis/057/A057656.asm | neoneye/loda-programs | 22 | 93873 | ; A057656: Number of points (x,y) in square lattice with (x-1/2)^2+y^2 <= n.
; 2,6,8,12,16,16,22,26,26,30,34,38,40,44,44,48,56,56,60,60,62,70,74,74,78,82,82,86,90,94,96,104,104,104,108,108,116,120,124,128,128,128,134,138,138,142,150,150,154,158,158,166,166,166,166,174
lpb $0
mov $2,$0
sub $0,1
seq $2,8441 ; Numb... |
kernel.asm | exceldeo/FP_SISOP20_E02 | 0 | 242514 |
kernel: file format elf32-i386
Disassembly of section .text:
80100000 <multiboot_header>:
80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh
80100006: 00 00 add %al,(%eax)
80100008: fe 4f 52 decb 0x52(%edi)
8010000b: e4 .byte 0xe4
8010000c <entry>:
8010... |
src/firmware-tests/Platform/PowerManagement/InitialiseAfterPowerManagementMock.asm | pete-restall/Cluck2Sesame-Prototype | 1 | 85548 | <filename>src/firmware-tests/Platform/PowerManagement/InitialiseAfterPowerManagementMock.asm
#include "Platform.inc"
#include "InitialisationChain.inc"
#include "TestDoubles.inc"
radix decimal
udata
global calledInitialiseAfterPowerManagement
calledInitialiseAfterPowerManagement res 1
InitialiseAfterPowerMana... |
test/jzas/symboltable/invalid/fail06.asm | scoffey/jz80sim | 1 | 171024 | <reponame>scoffey/jz80sim<filename>test/jzas/symboltable/invalid/fail06.asm
var1: db 2.0
|
src/natools-chunked_strings.ads | faelys/natools | 0 | 15215 | <reponame>faelys/natools<gh_stars>0
------------------------------------------------------------------------------
-- Copyright (c) 2011, <NAME> --
-- --
-- Permission to use, copy, modify, and distribute thi... |
programs/oeis/128/A128214.asm | karttu/loda | 1 | 97545 | ; A128214: Expansion of (1+2x+3x^2)/(1+x+x^2)^2.
; 1,0,0,-2,3,0,-5,6,0,-8,9,0,-11,12,0,-14,15,0,-17,18,0,-20,21,0,-23,24,0,-26,27,0,-29,30,0,-32,33,0,-35,36,0,-38,39,0,-41,42,0,-44,45,0,-47,48,0,-50,51,0,-53,54,0,-56,57,0,-59,60,0,-62,63,0,-65
mov $1,1
sub $1,$0
mov $2,$0
add $2,2
mod $2,3
sub $2,1
mul $1,$2
|
ln.asm | monamansouri/os2-1 | 0 | 8037 |
_ln: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
if(argc != 3){
... |
projects/batfish/src/main/antlr4/org/batfish/grammar/palo_alto/PaloAlto_application_filter.g4 | nickgian/batfish | 0 | 7085 | parser grammar PaloAlto_application_filter;
import PaloAlto_common;
options {
tokenVocab = PaloAltoLexer;
}
s_application_filter
:
APPLICATION_FILTER name = variable
(
saf_category
| saf_evasive
| saf_excessive_bandwidth_use
| saf_has_known_vulnerabilities
| saf_pe... |
programs/oeis/317/A317137.asm | neoneye/loda | 22 | 247509 | <filename>programs/oeis/317/A317137.asm<gh_stars>10-100
; A317137: a(n) is the number of nonzero triangular numbers <= n-th prime.
; 1,2,2,3,4,4,5,5,6,7,7,8,8,8,9,9,10,10,11,11,11,12,12,12,13,13,13,14,14,14,15,15,16,16,16,16,17,17,17,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25... |
solitaire_operations-text_representation.adb | doug16rogers/solitaire | 1 | 9674 | with Ada.Characters.Handling;
use Ada.Characters;
package body Solitaire_Operations.Text_Representation is
------------------------------------------------------------------------
function Card (Name : Short_Card) return Card_Value is
--
-- Returns the card for the given 2-character name.
--
Uppe... |
shasum/shasum-test.asm | zellyn/a2audit | 22 | 93711 | !to "shasum.o", plain
* = $6000
jmp main
!addr SRC = $06
!addr DST = $08
!addr SHAINPUT = $eb
!addr SHALENGTH = $ee
!addr PRBYTE = $FDDA
!addr COUT = $FDED
!macro set32 .target, .value {
lda #<(.value >> 24)
sta .target
lda #<(.value >> 16)
sta .target+1
lda #<(.value >> 8)
sta .target+2
lda #... |
Projetos/src/F-Assembly/src/nasm/pow.nasm | arnaldojr/Z01.1 | 1 | 243269 | <gh_stars>1-10
; Arquivo: Pow.nasm
; Curso: Elementos de Sistemas
; Criado por: <NAME>
; Data: 27/03/2017
; Eleva ao quadrado o valor da RAM[1] e armazena o resultado na RAM[0].
; Só funciona com números positivos
|
src/base/log/util-log-appenders-files.adb | RREE/ada-util | 60 | 13102 | -----------------------------------------------------------------------
-- util-log-appenders-files -- File log appenders
-- Copyright (C) 2001 - 2021 <NAME>
-- Written by <NAME> (<EMAIL>)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with t... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1993.asm | ljhsiun2/medusa | 9 | 12898 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %r8
push %r9
// Store
lea addresses_normal+0x154a8, %r8
nop
cmp $10559, %r10
mov $0x5152535455565758, %r9
movq %r9, (%r8)
nop
nop
add $9769, %r10
// Faulty Load
lea addresses_RW+0xa0a8, %r14
c... |
Library/Kernel/Object/objectDup.asm | steakknife/pcgeos | 504 | 12249 | <reponame>steakknife/pcgeos
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1989 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Kernel/Object
FILE: objectDup.asm
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date De... |
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_14796_1281.asm | ljhsiun2/medusa | 9 | 4408 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x1cc30, %rbp
clflush (%rbp)
add $25099, %r11
movb (%rbp), %r9b
nop
and $37681, %rax
lea addresses_D_ht+0x1e9d4, %rsi
lea addresses_UC_ht+0x159b8, %rdi
add $5417... |
test/Succeed/Issue5198.agda | cruhland/agda | 1,989 | 9590 |
module _ (_ : Set) where
open import Imports.Issue5198 Set
data D : Set where
r : D
F : D → Set₂
F r = R
f : {d : D} → F d → F d
f x = x
_ : R
_ = f record {A = Set}
|
libsrc/_DEVELOPMENT/adt/b_array/c/sdcc_iy/b_array_capacity_fastcall.asm | jpoikela/z88dk | 640 | 97916 |
; size_t b_array_capacity_fastcall(b_array_t *a)
SECTION code_clib
SECTION code_adt_b_array
PUBLIC _b_array_capacity_fastcall
EXTERN asm_b_array_capacity
defc _b_array_capacity_fastcall = asm_b_array_capacity
|
tests/simpleOO/src/dds-request_reply-tests-simple.ads | persan/dds-requestreply | 0 | 13262 | <reponame>persan/dds-requestreply
with DDS.DomainParticipantFactory;
with DDS.DomainParticipant;
package DDS.Request_Reply.Tests.Simple is
pragma Elaborate_Body;
Domain_Id : DDS.DomainId_T := 0;
Service_Name : DDS.String := To_DDS_String ("myService");
Service_Name_Octets : DDS.String := T... |
test/link/group4/seg1b.asm | nigelperks/BasicAssembler | 0 | 176014 | IDEAL
ASSUME CS:SEG1, DS:SEG1, ES:SEG1, SS:SEG1
SEGMENT SEG1 PUBLIC
sword:
DW 0DEADh
DW 0FACEh
DW sword
ENDS
GROUP ORANGE SEG1
END
|
Transynther/x86/_processed/AVXALIGN/_zr_un_/i7-7700_9_0xca_notsx.log_380_20.asm | ljhsiun2/medusa | 9 | 240619 | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r8
push %rax
push %rcx
lea addresses_D_ht+0x1e6ea, %rcx
add %r14, %r14
mov $0x6162636465666768, %rax
movq %rax, %xmm7
vmovups %ymm7, (%rcx)
nop
nop
sub %r8, %r8
pop %rcx
pop %rax
pop %r8
pop %r14
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r... |
Print/print_string.asm | berkcetinsaya/MIPSLanguageExamples | 0 | 173394 | .data
message: .asciiz "Test" # asciiz is a basic unit to store string variables.
.text
li $v0, 4 # service code 4 to print out .asciiz
la $a0, message # load .asciiz variable by using load address (la) to $a0
# $a registers are argument registers.
syscall # to execute the service
|
processor/processor-eclipse_mem_ref_p.adb | SMerrony/dgemua | 2 | 16619 | -- MIT License
-- Copyright (c) 2021 <NAME>
-- 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, p... |
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_668.asm | ljhsiun2/medusa | 9 | 105470 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_normal_ht+0x1591, %rsi
lea addresses_normal_ht+0x191c9, %rdi
and %r9, %r9
mov $92, %rcx
rep movsq
sub $55142, %rax
lea addresses_UC_ht+0x1d3c9, %rsi
lea add... |
src/Numeric/Nat/DivMod.agda | L-TChen/agda-prelude | 111 | 13411 | -- Evidence producing divmod.
module Numeric.Nat.DivMod where
open import Prelude
open import Control.WellFounded
open import Tactic.Nat
open import Tactic.Nat.Reflect
open import Tactic.Nat.Exp
open import Numeric.Nat.Properties
private
lemModAux′ : ∀ k m b j → modAux k m (suc j + b) j ≡ modAux 0 m b m
lemModAux... |
oeis/021/A021284.asm | neoneye/loda-programs | 11 | 163710 | <filename>oeis/021/A021284.asm
; A021284: Expansion of 1/((1-x)(1-2x)(1-9x)(1-10x)).
; Submitted by <NAME>
; 1,22,335,4400,53481,620202,6970675,76624900,828512861,8845504382,93498427815,980374738200,10212261530641,105799242660562,1091082072825755,11208627544304300,114766536787594821,1171787719977176742,1193497836868334... |
source/RRun/RRun.applescript | uribo/popclip-extentions | 1 | 4052 | tell application "R"
activate
cmd "{popclip text}"
end tell
|
oeis/281/A281228.asm | neoneye/loda-programs | 11 | 246190 | <reponame>neoneye/loda-programs<gh_stars>10-100
; A281228: Expansion of (Sum_{k>=0} x^(3^k))^2 [even terms only].
; 0,1,2,1,0,2,2,0,0,1,0,0,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
mov... |
library/fmGUI_ManageSecurity/fmGUI_ManageSecurity_PrivSet_Select.applescript | NYHTC/applescript-fm-helper | 1 | 164 | <reponame>NYHTC/applescript-fm-helper
-- fmGUI_ManageSecurity_PrivSet_Select({privSetName:"Developer", fullAccessAccountName:"admin", fullAccessPassword:""})
-- <NAME>, NYHTC
-- select the specified privilege set
(*
HISTORY:
2020-03-04 ( dshockley ): Standardized version. Corrected Requires block.
1.1.1 - 2017-09-... |
src/ui/maps-ui.adb | thindil/steamsky | 80 | 20947 | <filename>src/ui/maps-ui.adb
-- Copyright (c) 2020-2021 <NAME> <<EMAIL>>
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later v... |
oeis/117/A117475.asm | neoneye/loda-programs | 11 | 3071 | ; A117475: The values of c in a^2 + b^2 = c^2 where b - a = 23 and gcd(a,b,c) = 1.
; Submitted by <NAME>
; 37,65,205,373,1193,2173,6953,12665,40525,73817,236197,430237,1376657,2507605,8023745,14615393,46765813,85184753,272571133,496493125,1588660985,2893773997,9259394777,16866150857,53967707677,98303131145
mov $2,-3
l... |
examples/boxes.asm | KCreate/stackvm | 45 | 13501 | <reponame>KCreate/stackvm
.def counter_x r0
.def counter_y r1
.def comp r2
.def s_zero r3
.def s_one r4
.label setup
.label entry_addr
loadi counter_x, vram_width
loadi counter_y, vram_height
rst s_zero
loadi s_one, 1
sub counter_x, s_one
sub counter_y, s_one
push dword, msg_welcome
push dword, 29
... |
src/Assembly.asm | Muetzilla/hello-world | 1 | 95215 | section .text
global _start
_start:
mov edx, len
mov ecx, msg
mov ebx, 1
mov eax, 4
int 0x80
mov eax, 1
int 0x80
section .data
msg db 'Hello, Assembly!',0xa
len equ $ - msg |
Transynther/x86/_processed/NONE/_zr_/i7-7700_9_0x48.log_21829_2626.asm | ljhsiun2/medusa | 9 | 244745 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r13
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x109e9, %rcx
inc %rbp
vmovups (%rcx), %ymm7
vextracti128 $0, %ymm7, %xmm7
vpextrq $1, %xmm7, %r11
and %rax, %rax
lea addresses_UC_ht+0x7fff, %rsi
le... |
Core/Configuration/BLOManagers/Parser/Grammar.g4 | rmitache/OpenConfigurator | 8 | 7286 | <filename>Core/Configuration/BLOManagers/Parser/Grammar.g4<gh_stars>1-10
grammar Grammar;
@parser::members
{
protected const int EOF = Eof;
}
@lexer::members
{
protected const int EOF = Eof;
protected const int HIDDEN = Hidden;
}
options {
buildAST = true; // uses CommonAST by default
}
/*Pars... |
test/interaction/Issue1619.agda | shlevy/agda | 1,989 | 14983 | <filename>test/interaction/Issue1619.agda
-- Andreas, 2015-08-11, issue reported by G.Allais
-- The `a` record field of `Pack` is identified as a function
-- (coloured blue, put in a \AgdaFunction in the LaTeX backend)
-- when it should be coloured pink.
-- The problem does not show up when dropping the second record
... |
oeis/332/A332048.asm | neoneye/loda-programs | 11 | 179191 | ; A332048: a(n) = n! * [x^n] 1 / (1 - LambertW(x))^n.
; Submitted by <NAME>(s4)
; 1,1,2,15,104,1145,13824,208831,3536000,68918769,1489702400,35742514511,937323767808,26750313223465,824073079660544,27276657371589375,965004380380626944,36347144974616190689,1451974448007830568960,61319892272079181137679,272967124075027005... |
dino/lcs/base/46B.asm | zengfr/arcade_game_romhacking_sourcecode_top_secret_data | 6 | 104246 | copyright zengfr site:http://github.com/zengfr/romhack
006D8C tst.b ($46b,A5)
006D90 bne $6dcc
006E3A tst.b ($46b,A5)
006E3E beq $6e4a
006F70 tst.b ($46b,A5)
006F74 bne $6fa2
006FF2 tst.b ($46b,A5)
006FF6 bne $702a
0073BE tst.b ($46b,A5)
0073C2 bne $73dc
00834E tst.b ... |
uti/cv_hexda.asm | olifink/smsqe | 0 | 6733 | <filename>uti/cv_hexda.asm
; dev8_uti_cv_hexda_asm
include dev8_keys_err
section utility
xdef cv_hexda
;+++
; convert hex-long to decimal-ascii
;
; ENTRY EXIT
; D0 error
; D1.l hex preserved
; D2.w how many bytes smashed
; A1 buffer preserved
;
; Error return: err.imem if d... |
oeis/230/A230368.asm | neoneye/loda-programs | 11 | 174696 | ; A230368: A strong divisibility sequence associated with the algebraic integer 1 + i.
; Submitted by <NAME>(s2)
; 1,1,1,5,1,1,1,15,1,1,1,65,1,1,1,255,1,1,1,1025,1,1,1,4095,1,1,1,16385,1,1,1,65535,1,1,1,262145,1,1,1,1048575,1,1,1,4194305,1,1,1,16777215,1,1,1,67108865,1,1,1,268435455,1,1,1,1073741825
mov $2,$0
add $2,1... |
SiriRemote/AppleRemote_MICROPHONE_HOLD.applescript | guileschool/SiriRemoteBTT | 20 | 3251 | (*
The MIT License (MIT)
Copyright (c) 2015 guileschool
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, p... |
Data/Option/Functions.agda | Lolirofle/stuff-in-agda | 6 | 2082 | module Data.Option.Functions where
import Lvl
open import Data
open import Data.Boolean
open import Data.Either as Either using (_‖_)
open import Data.Option
open import Data.Tuple as Tuple using (_⨯_ ; _,_)
open import Type
private variable ℓ : Lvl.Level
private variable T A B T₁ T₂ T₃ : Type{ℓ}
-- Applies a f... |
gfx/pokemon/haunter/anim_idle.asm | Dev727/ancientplatinum | 28 | 88775 | <filename>gfx/pokemon/haunter/anim_idle.asm
frame 4, 58
endanim
|
programs/oeis/106/A106252.asm | neoneye/loda | 22 | 27277 | <filename>programs/oeis/106/A106252.asm
; A106252: Number of positive integer triples (x,y,z), with x<=y<=z<=n, such that each of x,y and z divides the sum of the other two.
; 1,3,5,7,8,11,12,14,16,18,19,22,23,25,27,29,30,33,34,36,38,40,41,44,45,47,49,51,52,55,56,58,60,62,63,66,67,69,71,73,74,77,78,80,82,84,85,88,89,91... |
src/sparknacl-sign.adb | rod-chapman/SPARKNaCl | 76 | 2421 | <filename>src/sparknacl-sign.adb
with SPARKNaCl.Utils;
with SPARKNaCl.Hashing;
package body SPARKNaCl.Sign
with SPARK_Mode => On
is
pragma Warnings (GNATProve, Off, "pragma * ignored (not yet supported)");
--============================================
-- Local constants and types
--====================... |
oeis/098/A098560.asm | neoneye/loda-programs | 11 | 243962 | ; A098560: E.g.f. (1+4*x)/(1-4*x).
; Submitted by <NAME>
; 1,8,64,768,12288,245760,5898240,165150720,5284823040,190253629440,7610145177600,334846387814400,16072626615091200,835776583984742400,46803488703145574400,2808209322188734464000,179725396620079005696000,12221326970165372387328000,879935541851906811887616000,6687... |
oeis/105/A105576.asm | neoneye/loda-programs | 11 | 240307 | ; A105576: a(n+3) = 2a(n+2) - 3a(n+1) + 2a(n); a(0) = 3, a(1) = 4, a(2) = 0.
; Submitted by <NAME>
; 3,4,0,-6,-4,10,20,2,-36,-38,36,114,44,-182,-268,98,636,442,-828,-1710,-52,3370,3476,-3262,-10212,-3686,16740,24114,-9364,-57590,-38860,76322,154044,1402,-306684,-309486,303884,922858,315092,-1530622,-2160804,900442,5222... |
Driver/Font/Nimbus/nimbusUtils.asm | steakknife/pcgeos | 504 | 81084 | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Nimbus Font Driver
FILE: nimbusUtils.asm
AUTHOR: <NAME>, Feb 20, 1990
ROUTINES:
Name Description
---- -----------
UTIL DoMult Multiply (... |
src/Generic/Lib/Data/Pow.agda | turion/Generic | 30 | 661 | <reponame>turion/Generic
module Generic.Lib.Data.Pow where
open import Generic.Lib.Intro
open import Generic.Lib.Data.Nat
open import Generic.Lib.Data.Product
infixl 6 _^_
_^_ : ∀ {α} -> Set α -> ℕ -> Set α
A ^ 0 = ⊤
A ^ suc n = A × A ^ n
elimPow : ∀ {n α} {A : Set α} {b : ∀ {n} -> A ^ n -> Level}
-> (B... |
oeis/083/A083045.asm | neoneye/loda-programs | 11 | 55 | ; A083045: Main diagonal of table A083044.
; Submitted by <NAME>(s1)
; 1,6,17,35,68,122,224,383,656,1092,1841,2978,4859,7835,12776,20291,32664,51422,82485,129720,204821,319482,506060,789872,1237733,1927494,3024318,4687259,7274921,11271293,17578760,27133793,42125475,64909160
mov $1,3
mov $2,$0
lpb $2
add $1,$2
mul ... |
non_regression/switch_x86_macosx_2.s.asm | LRGH/plasmasm | 1 | 177031 | <reponame>LRGH/plasmasm
.macosx_version_min 10, 12
.section __TEXT,__literal8,8byte_literals
.align 3
LCPI0_0:
.long 0
.long 1075576832
LCPI0_1:
.long 0
.long 1067450368
# ----------------------
.section __TEXT,__text,regular,pure_instructions
.align 4, 0x90
.globl _polgalois
_polgalois:
pushl ... |
Terminal Velocity Launcher/TerminalVelocityLauncher.applescript | adfernandes/terminal-velocity | 0 | 1279 | <reponame>adfernandes/terminal-velocity
-- Created by <NAME> on 2015/08/01.
-- Copyright (c) 2015 Pharynks Corporation. All rights reserved.
use framework "Foundation"
use scripting additions
script TerminalVelocityLauncher
property parent : class "NSObject"
-- handler
on getFinderSelections()
... |
samplebot.asm | YellowberryHN/nanorg-stuff | 1 | 6612 | info: AJOSampleBot, <NAME>
main:
// select a random direction and distance to move
rand [dir], 4
rand [count], 10 //edit
add [count], 1 //edit
loop:
// check if I'm top of food and eat if so
sense r2
jns noFood
eat
noFood:
// see if we're ... |
svalbard/odata/src/main/antlr4/org/n52/svalbard/odata/grammar/STAQueryOptionsGrammar.g4 | 52North/arctic-sea | 19 | 2387 | /*
* Copyright 2015-2020 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2... |
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0.log_21829_335.asm | ljhsiun2/medusa | 9 | 174203 | <filename>Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0.log_21829_335.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r13
push %r8
push %r9
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x3798, %r12
nop
cmp $25443, %r13
movb (%r12), %r8b
nop
cmp %r9, %r9
lea addresses_UC_ht+0x18598,... |
src/AssocFree/STLambdaC/NF.agda | agda/agda-assoc-free | 3 | 6431 | <filename>src/AssocFree/STLambdaC/NF.agda
import AssocFree.STLambdaC.Typ
import AssocFree.STLambdaC.Exp
module AssocFree.STLambdaC.NF
(TConst : Set)
(Const : AssocFree.STLambdaC.Typ.Typ TConst → Set) where
open module Typ = AssocFree.STLambdaC.Typ TConst using
( Typ ; Ctxt ; const ; _⇝_ ; [_] ; [] ; _∷_ ; _++... |
src/Categories/Category/Construction/MonoidAsCategory.agda | Trebor-Huang/agda-categories | 5 | 11409 | <filename>src/Categories/Category/Construction/MonoidAsCategory.agda
{-# OPTIONS --safe --without-K #-}
open import Algebra.Bundles using (Monoid)
module Categories.Category.Construction.MonoidAsCategory o {c ℓ} (M : Monoid c ℓ) where
open import Data.Unit.Polymorphic
open import Level
open import Categories.Categor... |
src/MFORTH/answords/tools-ext.asm | malyn/MFORTH | 10 | 7792 | <filename>src/MFORTH/answords/tools-ext.asm
; Copyright (c) 2009-2010, <NAME> <<EMAIL>>.
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above... |
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1255.asm | ljhsiun2/medusa | 9 | 241349 | <filename>Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1255.asm
.global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r14
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0x2343, %rsi
lea addresses_normal_ht+0xb783, %rdi
clflush (%rsi)
nop
nop
sub %r13, %r13
m... |
programs/oeis/070/A070564.asm | karttu/loda | 0 | 20755 | ; A070564: Partial sums of A070563.
; 0,1,1,1,2,2,2,3,3,3,3,3,3,4,4,4,5,5,5,6,6,6,6,6,6,7,7,7,8,8,8,9,9,9,9,9,9,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,13,13,13,14,14,14,15,15,15,15,15,15,16,16
mov $2,$0
mov $4,$0
lpb $2,1
mov $0,$4
sub $2,1
sub $0,$2
sub $0,1
cal $0,70563 ; a... |
programs/oeis/286/A286444.asm | karttu/loda | 0 | 85477 | ; A286444: Number of non-equivalent ways to tile an n X n X n triangular area with two 2 X 2 X 2 triangular tiles and an appropriate number (= n^2-8) of 1 X 1 X 1 tiles.
; 0,3,10,32,70,143,252,424,660,995,1430,2008,2730,3647,4760,6128,7752,9699,11970,14640,17710,21263,25300,29912,35100,40963,47502,54824,62930,71935,818... |
Task/Forward-difference/AppleScript/forward-difference.applescript | LaudateCorpus1/RosettaCodeData | 1 | 1975 | <filename>Task/Forward-difference/AppleScript/forward-difference.applescript
-- FORWARD DIFFERENCE --------------------------------------------------------
-- forwardDifference :: Int -> [Int] -> [Int]
on forwardDifference(n, xs)
set lng to length of xs
-- atLength :: [Int] -> Bool
script atLength
... |
src/gnat/sinput-p.adb | Letractively/ada-gen | 0 | 3676 | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
programs/oeis/099/A099903.asm | karttu/loda | 0 | 23232 | ; A099903: Sum of all matrix elements of n X n matrix M(i,j) = i^3+j^3, (i,j = 1..n). a(n) = n^3*(n+1)^2/2.
; 2,36,216,800,2250,5292,10976,20736,36450,60500,95832,146016,215306,308700,432000,591872,795906,1052676,1371800,1764000,2241162,2816396,3504096,4320000,5281250,6406452,7715736,9230816,10975050,12973500
add $0,1... |
oeis/052/A052665.asm | neoneye/loda-programs | 11 | 1537 | ; A052665: a(0)=0, for n >= 1, a(n) = ((2^(n-1)-1)*n!.
; Submitted by <NAME>(s2)
; 0,0,2,18,168,1800,22320,317520,5120640,92534400,1854316800,40834886400,980516275200,25499650176000,714077383219200,21423629170944000,685577056260096000,23309975600271360000
sub $0,1
mov $1,1
mov $2,1
lpb $0
sub $0,1
add $2,1
mul $... |
source/league/ucd/matreshka-internals-unicode-ucd-core_00a8.ads | svn2github/matreshka | 24 | 14473 | <gh_stars>10-100
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- ... |
oeis/025/A025941.asm | neoneye/loda-programs | 11 | 80 | <reponame>neoneye/loda-programs
; A025941: Expansion of 1/((1-2x)(1-3x)(1-6x)(1-11x)).
; Submitted by <NAME>
; 1,22,327,4172,49553,567714,6382699,71043064,786493125,8681598926,95678810591,1053554778276,11595631317817,127591121803258,1403737417995603,15442522109891408,169876206409453229
mov $1,1
mov $2,$0
mov $3,$0
lpb... |
src_68k/func/fix.asm | sheng007/freemlib-neogeo | 26 | 242784 | ; freemlib for Neo-Geo - Fix Layer Functions
;==============================================================================;
; [Ranges/Valid Values]
; Combined Cell Location $XXYY, where XX=$0-$27,YY=$00-$1F
; Raw VRAM Address $7000-$74FF
; [Notes]
; Most of these functions change LSPC_INCR values, so ... |
spec/arm_linux_gnueabihf_asm_posix_types_h.ads | 0xA1/pi-spi | 0 | 22369 | <filename>spec/arm_linux_gnueabihf_asm_posix_types_h.ads
pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
package arm_linux_gnueabihf_asm_posix_types_h is
-- * arch/arm/include/asm/posix_types.h
-- *
-- * Copyright (C) 1996-1998 <NAME>.
-- *
-- * This program is free softw... |
src/Ch2-9.agda | banacorn/hott | 0 | 11381 | <filename>src/Ch2-9.agda
{-# OPTIONS --without-K --no-pattern-matching #-}
module Ch2-9 where
open import Level hiding (lift)
open import Ch2-1
open import Ch2-2
open import Ch2-3
open import Ch2-4
open import Ch2-5
open import Ch2-6
open import Ch2-7
open import Ch2-8
open import Data.Product
open import Function ... |
3-mid/opengl/source/platform/egl/private/opengl-display-privvy.ads | charlie5/lace | 20 | 25887 | with
eGL;
package opengl.Display.privvy
is
function to_eGL (Self : in Display.item'Class) return eGL.EGLDisplay;
end opengl.Display.privvy;
|
llvm-gcc-4.2-2.9/gcc/ada/gnatbind.adb | vidkidz/crossbridge | 1 | 3627 | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c83f03b.ada | best08618/asylo | 7 | 11468 | <reponame>best08618/asylo
-- C83F03B.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contai... |
experiments/realbugs/dll9.als | kaiyuanw/AlloyFLCore | 1 | 3633 | <reponame>kaiyuanw/AlloyFLCore
one sig DLL {
header: lone Node
}
sig Node {
pre, nxt: lone Node,
elem: Int
}
// All nodes are reachable from the header along the nxt.
fact Reachable {
Node = DLL.header.*nxt
all n : Node - DLL.header | some nxt.n
}
// Part (a)
fact Acyclic {
// The list has no directed cy... |
tests/fn_le/24.asm | NullMember/customasm | 414 | 29937 | #d le(-0x01) ; error: unsized |
programs/oeis/079/A079326.asm | karttu/loda | 1 | 175347 | ; A079326: a(n) = the largest number m such that if m monominoes are removed from an n X n square then an L-triomino must remain.
; 1,2,7,9,17,20,31,35,49,54,71,77,97,104,127,135,161,170,199,209,241,252,287,299,337,350,391,405,449,464,511,527,577,594,647,665,721,740,799,819,881,902,967,989,1057,1080,1151,1175,1249,1274... |
programs/oeis/045/A045544.asm | neoneye/loda | 22 | 169022 | <reponame>neoneye/loda<gh_stars>10-100
; A045544: Odd values of n for which a regular n-gon can be constructed by compass and straightedge.
; 3,5,15,17,51,85,255,257,771,1285,3855,4369,13107,21845,65535,65537,196611,327685,983055,1114129,3342387,5570645,16711935,16843009,50529027,84215045,252645135,286331153,858993459,... |
source/amf/mof/cmof/amf-cmof-named_elements.ads | svn2github/matreshka | 24 | 11896 | <reponame>svn2github/matreshka
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- ... |
AppleScript/export_coverpages.applescript | aaronpriven/actium | 1 | 3260 | set CoverPageFileFolder to "Bireme:Actium:tableart:CoverPages:"
tell application "Adobe InDesign CC 2017"
set lastPageNum to document offset of last page of active document
repeat with PageNum from 1 to lastPageNum
set LineGroupFrame to (item 1 of (all page items of (page PageNum of active document)) whose ... |
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c34011b.ada | best08618/asylo | 7 | 29954 | -- C34011B.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimit... |
llvm-gcc-4.2-2.9/gcc/ada/mlib-tgt-aix.adb | vidkidz/crossbridge | 1 | 8414 | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
test/Fail/ConstructorHeadedPointlessForRecordPatterns.agda | cruhland/agda | 1,989 | 2354 | <reponame>cruhland/agda
-- Andreas, 2014-06-12
-- No inversion on one clause functions with record patterns only!
{-# OPTIONS -v tc.inj:40 #-} -- KEEP!
module _ where
open import Common.Product
-- No inverse should be created for swap by
-- checkInjectivity, since we are dealing with a record constructor.
swap : ∀{... |
gfx/pokemon/idle_pointers.asm | Dev727/ancientplatinum | 28 | 241283 | AnimationIdlePointers:
dw BulbasaurAnimationIdle
dw IvysaurAnimationIdle
dw VenusaurAnimationIdle
dw CharmanderAnimationIdle
dw CharmeleonAnimationIdle
dw CharizardAnimationIdle
dw SquirtleAnimationIdle
dw WartortleAnimationIdle
dw BlastoiseAnimationIdle
dw CaterpieAnimationIdle
dw MetapodAnimationIdle
dw B... |
source/libgela/gela-hash-crc-b16.adb | faelys/gela-asis | 4 | 21788 | <reponame>faelys/gela-asis
------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org ... |
Math/NumberTheory/Product/Nat/Properties.agda | rei1024/agda-misc | 3 | 8010 | {-# OPTIONS --without-K --safe #-}
module Math.NumberTheory.Product.Nat.Properties where
open import Data.Nat.Properties
open import Math.NumberTheory.Product.Generic.Properties
-- TODO rename _≈_ to _≡_
open CommutativeMonoidProductProperties *-1-commutativeMonoid public
|
Chapter2/#2.agda | CodaFi/HoTT-Exercises | 0 | 3082 | module #2 where
open import Relation.Binary.PropositionalEquality
open import #1
{-
Exercise 2.2. Show that the three equalities of proofs constructed in the previous exercise form a
commutative triangle. In other words, if the three definitions of concatenation are denoted by
(p ∘ q), (p ∘ q), and (p ∘ q), then th... |
3-mid/opengl/source/lean/model/opengl-model-hexagon-lit_colored_textured.adb | charlie5/lace | 20 | 5071 | with
openGL.Geometry.lit_colored_textured,
openGL.Primitive.indexed;
package body openGL.Model.hexagon.lit_colored_textured
is
type Geometry_view is access all Geometry.lit_colored_textured.item'Class;
---------
--- Forge
--
function new_Hexagon (Radius : in Real;
... |
programs/oeis/236/A236840.asm | neoneye/loda | 22 | 92233 | <filename>programs/oeis/236/A236840.asm
; A236840: n minus number of runs in the binary expansion of n: a(n) = n - A005811(n).
; 0,0,0,2,2,2,4,6,6,6,6,8,10,10,12,14,14,14,14,16,16,16,18,20,22,22,22,24,26,26,28,30,30,30,30,32,32,32,34,36,36,36,36,38,40,40,42,44,46,46,46,48,48,48,50,52,54,54,54,56,58,58,60,62,62,62,62,64... |
programs/oeis/172/A172486.asm | neoneye/loda | 22 | 23380 | <reponame>neoneye/loda
; A172486: Number of prime knots up to nine crossings with determinant 2n+1 and signature 6.
; 0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1
add $0,28
mov $1,1
mov $2,$0
gcd $2,120
bin $1,$2
mov $0,$1
|
src/commands.ads | bracke/websitegenerator | 1 | 13247 | <reponame>bracke/websitegenerator<gh_stars>1-10
with Version;
with CLIC.Subcommand;
private with CLIC.Subcommand.Instance;
private with Ada.Text_IO;
private with CLIC.TTY;
private with GNAT.OS_Lib;
with Templates_Parser;
package Commands is
Translations : Templates_Parser.Translate_Set;
Wrong_Command_Arguments ... |
test/asset/agda-stdlib-1.0/Data/ReflexiveClosure.agda | omega12345/agda-mode | 0 | 5770 | <filename>test/asset/agda-stdlib-1.0/Data/ReflexiveClosure.agda
------------------------------------------------------------------------
-- The Agda standard library
--
-- Reflexive closures
--
-- This module is DEPRECATED. Please use the
-- Relation.Binary.Construct.Closure.Reflexive module directly.
-----------------... |
src/frontend/Experimental_Ada_ROSE_Connection/parser/ada_main/source/run_parser_adapter.adb | ouankou/rose | 488 | 24202 | with Ada.Command_Line;
with Ada.Text_IO;
with GNAT.Command_Line;
with GNAT.OS_Lib;
with GNAT.Strings;
with Asis_Adapter.Tool;
procedure Run_Parser_Adapter is
package ACL renames Ada.Command_Line;
package GCL renames GNAT.Command_Line;
type Options_Record is record -- Initialized
Config : GCL.Comma... |
Etapa 01/Aula 03 - Registradores e Instr. MOV/codes/a03e03.asm | bellorini/unioeste | 6 | 407 | ; Aula 03 - Registradores e MOV
; arquivo: a03e03.asm
; objetivo: acesso aos dados dos registradores e transferencias
; nasm -f elf64 a03e03.asm ; ld a03e03.o -o a03e03.x
section .data
v1: dq 0x1111111122334455
v2: dq 0x0000000000000000
v3: dq 0x0000000000000000
section .text
global _start
_start... |
programs/oeis/319/A319697.asm | jmorken/loda | 1 | 96403 | ; A319697: Sum of even squarefree divisors of n.
; 0,2,0,2,0,8,0,2,0,12,0,8,0,16,0,2,0,8,0,12,0,24,0,8,0,28,0,16,0,48,0,2,0,36,0,8,0,40,0,12,0,64,0,24,0,48,0,8,0,12,0,28,0,8,0,16,0,60,0,48,0,64,0,2,0,96,0,36,0,96,0,8,0,76,0,40,0,112,0,12,0,84,0,64,0,88,0,24,0,48,0,48,0,96,0,8,0,16,0,12,0,144,0,28,0,108,0,8,0,144,0,16,0... |
Tradutor/Arquivos_teste/Fibonacci.asm | PedroAcA/SB_T2_Bruno | 0 | 20906 | ;Acho que esse fibonacci ta errado (nao deu para copiar o exemplo do slide do bruno direito)
SECTION TEXT
COPY ZERO,OLDER
COPY ONE,OLD
INPUT LIMIT
OUTPUT OLD
FRONT: LOAD OLDER
ADD OLD
STORE NEW
SUB LIMIT
JMPP FINAL
OUTPUT NEW
COPY OLD,OLDER
COPY NEW,OLD
JMP FRONT
FINAL: OUTPUT LIMIT
ADD ZERO
SUB ONE
STOP
SECTION DATA... |
tests/src/maths_test.adb | Fabien-Chouteau/GESTE | 13 | 4531 | with Ada.Text_IO; use Ada.Text_IO;
with GESTE.Maths_Types; use GESTE.Maths_Types;
with GESTE.Maths; use GESTE.Maths;
procedure Maths_Test is
Sqrt_Values : array (Natural range <>) of Value :=
(0.0, 1.0, 1.00001, 2.0, 4.0, 25.0, 80.0, 81.0, 100.0);
Cos_Values : array (Natural range <>) of Valu... |
data/mapHeaders/mtmoon2.asm | adhi-thirumala/EvoYellow | 16 | 179292 | <reponame>adhi-thirumala/EvoYellow
MtMoon2_h:
db CAVERN ; tileset
db MT_MOON_2_HEIGHT, MT_MOON_2_WIDTH ; dimensions (y, x)
dw MtMoon2Blocks, MtMoon2TextPointers, MtMoon2Script ; blocks, texts, scripts
db $00 ; connections
dw MtMoon2Object ; objects
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.