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
src/cups-conversions.ads
persan/a-cups
0
28509
<gh_stars>0 private package Cups.Conversions is end Cups.Conversions;
programs/oeis/117/A117573.asm
karttu/loda
0
246773
<gh_stars>0 ; A117573: Expansion of (1+2x^2)/((1-x)(1-x^2)(1-x^3)). ; 1,1,4,5,8,11,15,18,24,28,34,40,47,53,62,69,78,87,97,106,118,128,140,152,165,177,192,205,220,235,251,266,284,300,318,336,355,373,394,413,434,455,477,498,522,544,568,592,617,641,668 mov $2,$0 add $2,1 lpb $2,1 add $1,1 trn $2,2 mov $3,2 mov $4...
libsrc/sprites/software/sp1/ts2068hr/tiles/sp1_GetTiles_callee.asm
andydansby/z88dk-mk2
1
97963
<filename>libsrc/sprites/software/sp1/ts2068hr/tiles/sp1_GetTiles_callee.asm ; void __CALLEE__ sp1_GetTiles_callee(struct sp1_Rect *r, struct sp1_tp *dest) ; 01.2008 aralbrec, Sprite Pack v3.0 ; ts2068 hi-res version XLIB sp1_GetTiles_callee XDEF ASMDISP_SP1_GETTILES_CALLEE LIB sp1_GetUpdateStruct_callee XREF ASMDISP...
Structure/Relator/Equivalence.agda
Lolirofle/stuff-in-agda
6
931
<gh_stars>1-10 module Structure.Relator.Equivalence where import Lvl open import Logic open import Logic.Propositional open import Structure.Relator.Properties hiding (reflexivity ; symmetry ; transitivity) open import Type private variable ℓ₁ ℓ₂ : Lvl.Level -- An equivalence relation is a reflexive, symmetri...
nasm-8086-assembly-course/0x01-hello/hello.asm
ailtonbsj/buffer-overflow-studies
0
161593
<reponame>ailtonbsj/buffer-overflow-studies section .data msg db 'Hello World!', 0xa tam equ $- msg ; Count length of bytes in msg section .text global _start _start: ; send data to standard output mov eax, 0x4 ; Write data code mov ebx, 0x1 ; On standard output mov ecx, msg mov edx, tam ...
ANTLRTestProjects/freeform/GrammarsAdhoc/grammar/imports/basics.g4
timboudreau/ANTLR4-Plugins-for-NetBeans
1
2655
lexer grammar basics; fragment WORDS : INLINE_WHITESPACE? ( WORD_LIKE | NUMBER_LIKE ) SAFE_PUNCTUATION? INLINE_WHITESPACE??; // allow a single underscore or asterisk in a word, i.e. _FOO_BAR_ is "FOO_BAR" italicized, // but "_FOO_BAR" is "FOO_BAR" with FOO italicized. // Note the first alternative must n...
Tests/Antlr4Tests/LexerB.g4
LuizZak/Antlr4-Swift
5
4678
lexer grammar LexerB; ID : 'a'..'z'+; INT : '0'..'9'+; SEMI : ';'; MUL : '*'; PLUS : '+'; ASSIGN : '='; WS : ' '+;
util/testdata/applescript.scpt
QuantumGhost/awgo
736
2029
on run(argv) return first item of argv end run
Task/Sort-disjoint-sublist/AppleScript/sort-disjoint-sublist-2.applescript
mullikine/RosettaCodeData
1
2801
{7, 0, 5, 4, 3, 2, 1, 6}
oeis/260/A260222.asm
neoneye/loda-programs
11
178100
<reponame>neoneye/loda-programs ; A260222: a(n)=gcd(n,F(n-1)), where F(n) is the n-th Fibonacci number. ; Submitted by <NAME>(s2) ; 1,1,1,2,1,1,1,1,3,2,11,1,1,1,1,2,1,1,19,1,3,2,1,1,1,1,1,2,29,1,31,1,3,2,1,1,1,1,1,2,41,1,1,1,3,2,1,1,7,1,1,2,1,1,1,1,3,2,59,1,61,1,1,2,1,1,1,1,3,2,71,1,1,1,1,2,1,13,79,1,3,2,1,1,1,1,1,2,89...
src/sm/rewards.asm
TarThoron/alttp_sm_combo_randomizer_rom
0
29672
<reponame>TarThoron/alttp_sm_combo_randomizer_rom ; $A7:C831 9F 28 D8 7E STA $7ED828,x[$7E:D828] ; Set Kraid as dead ; $A7:DB85 9F 28 D8 7E STA $7ED828,x[$7E:D82B] ; Set Phantoon as dead ; $A5:92DE 9F 28 D8 7E STA $7ED828,x[$7E:D82C] ; Set Draygon as dead ; $A6:C5E2 22 A6 81 80 JSL $8081A6[$80:81A6] ; Set...
contrib/boringssl-cmake/win-x86_64/crypto/test/trampoline-x86_64.asm
pdv-ru/ClickHouse
15,577
93994
; This file is generated from a similarly-named Perl script in the BoringSSL ; source tree. Do not edit by hand. default rel %define XMMWORD %define YMMWORD %define ZMMWORD %ifdef BORINGSSL_PREFIX %include "boringssl_prefix_symbols_nasm.inc" %endif section .text code align=64 global abi_test_trampoline ALIG...
oeis/078/A078509.asm
neoneye/loda-programs
11
93804
<reponame>neoneye/loda-programs ; A078509: Number of permutations p of {1,2,...,n} such that p(i)-i != 1 and p(i)-i != 2 for all i. ; Submitted by <NAME> ; 1,1,1,1,5,23,131,883,6859,60301,591605,6405317,75843233,974763571,13512607303,200949508327,3190881283415,53880906258521,964039575154409,18217997734199113,3625845106...
lib/types/Flattening.agda
UlrikBuchholtz/HoTT-Agda
1
1011
<gh_stars>1-10 {-# OPTIONS --without-K #-} open import lib.Basics open import lib.types.Pi open import lib.types.Paths open import lib.types.Sigma module lib.types.Flattening {i j k} (A : Type i) (B : Type j) (f g : B → A) (C : A → Type k) (D : (b : B) → C (f b) ≃ C (g b)) where {- The base HIT -} import lib.ty...
fastmodel-parser/src/main/antlr4/imports/DomainParser.g4
alibaba/fast-modeling-language
9
7498
parser grammar DomainParser; domainStatements: createDomainStatement | setDomainComment | setDomainProperties | unSetDomainProperties | renameDomain | dropDomainStatement | setDomainAliasedName ; createDomainStatement :KW_CREATE replace? KW_DOMAIN ifNotExists? qualifiedName a...
tools-src/gnu/gcc/gcc/ada/s-tasdeb.ads
enfoTek/tomato.linksys.e2000.nvram-mod
80
27117
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- ...
libsrc/graphics/vg5k/swapgfxbk.asm
teknoplop/z88dk
0
17374
; ; Philips VG-5000 Graphics Functions ; ; swapgfxbk () -- foo routine for fake swapping ; ; <NAME> - 2015 ; ; ; $Id: swapgfxbk.asm,v 1.1 2015/10/09 13:02:43 stefano Exp $ ; PUBLIC swapgfxbk PUBLIC swapgfxbk1 .swapgfxbk ld ix,$47FA ret .swapgfxbk1 ret
src/boot/vga.asm
robey/funos
5
9535
; ; simple routines for drawing a status line during early boot. ; %define module vga %include "api.macro" %include "io.macro" %define VGA_SCREEN_BUFFER 0xb8000 %define VGA_BOTTOM_LINE (VGA_SCREEN_BUFFER + (2 * 80 * 24)) %define VGA_REGISTER_A (VGA_BOTTOM_LINE + (62 * 2)) %define VG...
kern/i686/gdt/gdt.asm
greck2908/LudOS
44
81190
global gdt_flush gdt_flush: mov eax, [esp+4] ; get address of gdt table lgdt [eax] ; load it jmp 0x08:.flush ; 0x08 is the offset to our code segment: Far jump! Update the segment register .flush: mov ax, 0x10 ; 0x10 points at the new data selector mov ds, ax mov es, ax mov ...
testsuite/tests/NA17-007__copyright/g-md5.ads
AdaCore/style_checker
2
9548
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ...
src/Implicits/Resolution/Deterministic/Incomplete.agda
metaborg/ts.agda
4
2586
open import Prelude hiding (id; Bool) module Implicits.Resolution.Deterministic.Incomplete where open import Implicits.Syntax open import Implicits.WellTyped open import Implicits.Substitutions open import Data.Product open import Data.List hiding ([_]) open import Data.List.Any open Membership-≡ open import Extensi...
Data/Nat/Reasoning.agda
oisdk/agda-binary
1
11695
<reponame>oisdk/agda-binary {-# OPTIONS --without-K --safe #-} module Data.Nat.Reasoning where open import Data.Nat import Data.Nat.Properties as ℕ-Prop open import Relation.Binary.PropositionalEquality infixr 3 _*≫_ _≪*_ _+≫_ _≪+_ _*≫_ : ∀ {x y} z → x ≡ y → z * x ≡ z * y _*≫_ _ = cong _ _+≫_ : ∀ {x y} z → x ≡ y → ...
InterpreterWithConstants.agda
sseefried/well-typed-agda-interpreter
3
16406
{-# OPTIONS --without-K --safe --overlapping-instances #-} -- Reference to check out -- -- Simply Typed Lambda Calculus in Agda, without Shortcuts -- https://gergo.erdi.hu/blog/2013-05-01-simply_typed_lambda_calculus_in_agda,_without_shortcuts/ module InterpreterWithConstants where open import Data.Char hiding (_≤...
src/Categories/Diagram/Colimit/Lan.agda
Trebor-Huang/agda-categories
279
2979
{-# OPTIONS --without-K --safe #-} module Categories.Diagram.Colimit.Lan where open import Level open import Categories.Category open import Categories.Category.Cocomplete open import Categories.Diagram.Duality open import Categories.Diagram.Limit.Ran open import Categories.Functor open import Categories.Kan open imp...
programs/oeis/239/A239278.asm
neoneye/loda
22
171157
<reponame>neoneye/loda ; A239278: Smallest k > 1 such that n*(n+1)*...*(n+k-1) / (n+(n+1)+...+(n+k-1)) is an integer. ; 3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,9,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3,3,5,3,3,5,3,3,5,3,3,5,3,3,7,3 m...
tests/emra/RA_MODE/asm/RA02_core2.asm
ilebedev/stacktool
1
80751
<gh_stars>1-10 #***************************************** # # EM^2 basic testbench # # THREAD 2 (CORE 2) # # RA02 # - under RA-only mode # - 3 threads, each running on core 0, 1 and 2 # (main0, main1 and ma...
src/vulkan-math/gentype/vulkan-math-genitype.adb
zrmyers/VulkanAda
1
13721
-------------------------------------------------------------------------------- -- MIT License -- -- Copyright (c) 2020 <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 r...
bb-runtimes/src/s-bbarat.ads
JCGobbi/Nucleo-STM32G474RE
0
27617
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_2105.asm
ljhsiun2/medusa
9
552
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x10cae, %rsi lea addresses_A_ht+0x146ee, %rdi nop add %r12, %r12 mov $2, %rcx rep movsq nop nop nop nop nop dec %rdx lea addresses_UC_ht+0x5b5a, %r10 nop xor %rdx, %rdx movb $...
Z80/lloader2/llhw.asm
BleuLlama/LlamaVampireDrive
4
22608
<reponame>BleuLlama/LlamaVampireDrive<filename>Z80/lloader2/llhw.asm ; llhw ; RC2014LL-specific hardware support ; ; 2017-01-30 <NAME> ; ; This code is free for any use. MIT License, etc. .module llhw .if( Emulation ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;...
PJ Grammar/statements.g4
Diolor/PJ
0
6899
parser grammar statements; statement : block # simpleBlockStatement | statementsCommaless # commalessStatement | ifRule parExpression statement (elseRule statement)? # ifStatement | forRule forControl statement # forStatement | 'while' parE...
Gas/Prism/GIC/GIL.asm
Gabidal/GAS_Pack
1
100599
;LEXER Lexer: call getWord ;next word please mov bx, 0 ;it has to start from 0 ;GET NEXT COMMAND TO COMPARE compare: mov si, word savePoint[2] ;load the save lea ax, commands[si] ;ax points to table + si add si, 12 ;be ready for next table content mov savePoint[2], si ;save si mov si, ax ;si no...
Irvine/Examples/ch11/ReadCharTest.asm
alieonsido/ASM_TESTING
0
176320
; Testing ReadChar (ReadCharTest.asm) INCLUDE Irvine32.inc .code main PROC call ReadChar call DumpRegs exit main ENDP END main
oeis/089/A089111.asm
neoneye/loda-programs
11
82039
<filename>oeis/089/A089111.asm<gh_stars>10-100 ; A089111: Convoluted convolved Fibonacci numbers G_6^(r). ; 8,19,37,64,102,154,222,309,418,552,715,910,1141,1412,1727,2091,2508,2983,3521,4127,4807,5566,6410,7345,8377,9513,10759,12122,13609,15227,16984,18887,20944,23163,25552,28120,30875,33826,36982,40352,43946,47773,518...
programs/oeis/065/A065081.asm
neoneye/loda
22
92598
<reponame>neoneye/loda ; A065081: Alternating bit sum (A065359) for n-th prime p: replace 2^k with (-1)^k in binary expansion of p. ; -1,0,2,1,-1,1,2,1,2,2,1,1,-1,-2,-1,2,-1,1,1,2,1,1,2,2,1,2,1,-1,1,2,1,-1,-1,-2,2,1,1,-2,-1,-1,-1,1,-1,1,2,1,1,1,-1,1,-1,-1,1,-1,2,2,2,1,4,2,1,2,1,2,1,2,1,4,2,4,2,2,1,4,1,2,2,1,2,1,-1,1,-1...
echo.asm
kishan1468/memory-management-in-xv6
0
13669
_echo: file format elf32-i386 Disassembly of section .text: 00001000 <main>: #include "stat.h" #include "user.h" int main(int argc, char *argv[]) { 1000: f3 0f 1e fb endbr32 1004: 8d 4c 24 04 lea 0x4(%esp),%ecx 1008: 83 e4 f0 and $0xfffffff0,%esp 100b: ff...
src/main.adb
psyomn/afile
2
21333
<reponame>psyomn/afile<gh_stars>1-10 -- Copyright 2017-2019 <NAME> (psyomn) -- -- 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.0 -- -- ...
oeis/294/A294608.asm
neoneye/loda-programs
11
8177
<gh_stars>10-100 ; A294608: a(n) = Sum_{d|n} d^(d + 1 + n/d). ; Submitted by <NAME> ; 1,17,244,4129,78126,1680410,40353608,1073758337,31381061797,1000000390882,34522712143932,1283918474699170,51185893014090758,2177953338091847410,98526125335695332184,4722366482878235412481,239072435685151324847154,127482362163963606645...
libsrc/target/pc88/__brksave.asm
ahjelm/z88dk
640
168181
<reponame>ahjelm/z88dk SECTION data_clib PUBLIC __brksave __brksave: defb 1 ;; Keeping the BREAK enable flag, used by pc88_break, etc..
libsrc/_DEVELOPMENT/adt/wv_priority_queue/z80/asm_wv_priority_queue_destroy.asm
jpoikela/z88dk
640
168773
<reponame>jpoikela/z88dk ; =============================================================== ; Mar 2014 ; =============================================================== ; ; void wv_priority_queue_destroy(wv_priority_queue_t *q) ; ; Zero the queue structure and release memory. ; ; ======================================...
.build/ada/asis-gela-elements-pathes.adb
faelys/gela-asis
4
7389
<gh_stars>1-10 ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, <NAME> -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- ...
src/common/keccak-generic_hash.adb
damaki/libkeccak
26
15749
------------------------------------------------------------------------------- -- Copyright (c) 2019, <NAME> -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of s...
drivers/drivers-rfm69.ads
ekoeppen/STM32_Generic_Ada_Drivers
1
12927
<filename>drivers/drivers-rfm69.ads with STM32_SVD; use STM32_SVD; with Drivers.Text_IO; with HAL; generic with package Chip_Select is new HAL.Pin (<>); with package IRQ is new HAL.Pin (<>); with package SPI is new HAL.SPI (<>); AES_Enabled : Boolean := False; Frequency : Positive; TX_PA_Boost : Boo...
src/tk/tk-bind.adb
thindil/tashy2
2
12045
<gh_stars>1-10 -- Copyright (c) 2021 <NAME> <<EMAIL>> -- -- 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.0 -- -- Unless required by applica...
source/s-stpoov.adb
ytomino/drake
33
25004
with System.Runtime_Context; package body System.Storage_Pools.Overlaps is pragma Suppress (All_Checks); -- implementation procedure Set_Address (Storage_Address : Address) is TLS : constant not null Runtime_Context.Task_Local_Storage_Access := Runtime_Context.Get_Task_Local_Storage; begin...
source/nodes/program-nodes-attribute_definition_clauses.ads
reznikmm/gela
0
27434
<gh_stars>0 -- SPDX-FileCopyrightText: 2019 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Elements.Attribute_Definition_Clauses; with Program.Element_Visitors; package P...
Transynther/x86/_processed/AVXALIGN/_st_zr_sm_/i3-7100_9_0x84_notsx.log_21829_2025.asm
ljhsiun2/medusa
9
100870
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r8 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x183e8, %rsi lea addresses_WT_ht+0x1a6e8, %rdi clflush (%rsi) nop nop add %r14, %r14 mov $103, %rcx rep movsw nop nop cmp %r14, %r14 lea addresses_WC_ht+0xee8, %r11 add $60828,...
source/oasis/program-elements-procedure_declarations.ads
optikos/oasis
0
11948
<gh_stars>0 -- Copyright (c) 2019 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Lexical_Elements; with Program.Elements.Defining_Names; with Program.Elements.Parameter_Sp...
programs/oeis/007/A007696.asm
neoneye/loda
22
96535
; A007696: Quartic (or 4-fold) factorial numbers: a(n) = Product_{k = 0..n-1} (4*k + 1). ; 1,1,5,45,585,9945,208845,5221125,151412625,4996616625,184874815125,7579867420125,341094033905625,16713607661375625,885821206052908125,50491808745015763125,3080000333445961550625,200200021673987500790625,13813801495505137554553125...
source/numerics/machine-pc-freebsd/s-llelfu.ads
ytomino/drake
33
2345
<reponame>ytomino/drake<filename>source/numerics/machine-pc-freebsd/s-llelfu.ads<gh_stars>10-100 pragma License (Unrestricted); -- implementation unit specialized for FreeBSD package System.Long_Long_Elementary_Functions is pragma Pure; -- Long_Float function log (x : Long_Float) return Long_Float wi...
mac/doubleNoteLengths.applescript
jsphweid/.finale-macros
2
987
-- Halve Note Lengths -- version 1.0 on 2015-07-09 in Freund's office -- This took like 6-10 hours trying to figure out this stupid language... -- I took the time to make helper files for my sanity. DAMN! -- #firstRealApplescriptScript -- load helper file property Helpers : load script POSIX file "helpers.scpt" -- se...
test/filters-cases/bug-577_clang.asm
OfekShilon/compiler-explorer
4,668
179731
.text .file "example.cpp" .globl _Z6squarei .p2align 4, 0x90 .type _Z6squarei,@function _Z6squarei: # @_Z6squarei .Lfunc_begin0: .file 1 "" "example.cpp" .loc 1 2 0 # example.cpp:2:0 .cfi_startproc # BB#0: pushq %rbp .Lcfi0: .cfi_def_cfa_offset 16 .Lcfi1: .cfi_of...
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64106c.ada
best08618/asylo
7
22042
<gh_stars>1-10 -- C64106C.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....
src/sparknacl-stream.adb
yannickmoy/SPARKNaCl
76
17907
package body SPARKNaCl.Stream with SPARK_Mode => On is pragma Warnings (GNATProve, Off, "pragma * ignored (not yet supported)"); -------------------------------------------------------- -- Local subprogram declarations -------------------------------------------------------- procedure Salsa20_Xor_Lo...
alloy4fun_models/trashltl/models/7/dBsGLeC8Wcb5NfYae.als
Kaixi26/org.alloytools.alloy
0
3589
open main pred iddBsGLeC8Wcb5NfYae_prop8 { eventually File.link in Trash } pred __repair { iddBsGLeC8Wcb5NfYae_prop8 } check __repair { iddBsGLeC8Wcb5NfYae_prop8 <=> prop8o }
stm32f1/stm32gd-usart.ads
ekoeppen/STM32_Generic_Ada_Drivers
1
2745
package STM32GD.USART is pragma Preelaborate; type USART_Instance is (USART_1, USART_2, USART_3); end STM32GD.USART;
Ada/inc/Problem_30.ads
Tim-Tom/project-euler
0
11378
package Problem_30 is procedure Solve; end Problem_30;
test/main_si_units_test.adb
HeisenbugLtd/si_units
6
19630
-------------------------------------------------------------------------------- -- Copyright (C) 2020 by Heisenbug Ltd. (<EMAIL>) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See t...
src/ui/knowledge-stories.adb
thindil/steamsky
80
18326
<reponame>thindil/steamsky -- 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 ver...
programs/oeis/325/A325909.asm
neoneye/loda
22
95350
<gh_stars>10-100 ; A325909: Lexicographically earliest sequence of distinct positive terms such that for any n > 0, n divides Sum_{k = 1..n} (-1)^k * a(k). ; 1,3,2,4,9,5,7,15,8,10,21,11,13,27,14,16,33,17,19,39,20,22,45,23,25,51,26,28,57,29,31,63,32,34,69,35,37,75,38,40,81,41,43,87,44,46,93,47,49,99,50,52,105,53,55,111,...
oeis/091/A091055.asm
neoneye/loda-programs
11
23932
; A091055: Expansion of x*(1-2*x)/((1-x)*(1+2*x)*(1-6*x)). ; 0,1,3,23,127,783,4655,28015,167919,1007855,6046447,36280047,217677551,1306070767,7836413679,47018503919,282110979823,1692665966319,10155995623151,60935974088431,365615843831535,2193695064387311,13162170383527663,78973022306758383,473838133829365487,2843028802...
ada-blinky-zfp/src/leds.adb
hfegran/efx32_ada_examples
0
18657
<reponame>hfegran/efx32_ada_examples with Leds; use Leds; with Interfaces.EFM32; use Interfaces.EFM32; package body Leds is procedure Led_Init is begin CMU_Periph.CTRL.HFPERCLKEN := 1; CMU_Periph.HFBUSCLKEN0.GPIO := 1; GPIO_Periph.PA_MODEH.Arr(12) := PUSHPULL; GPIO_Periph.PA_MODEH....
Tests/yasm-regression/iret.asm
13xforever/x86-assembly-textmate-bundle
69
240041
[bits 16] iret ; out: cf iretw ; out: cf iretd ; out: 66 cf [bits 32] iret ; out: cf iretw ; out: 66 cf iretd ; out: cf [bits 64] iret ; out: cf iretw ; out: 66 cf iretd ; out: cf iretq ; out: 48 cf
src/presets/14speed_data.asm
cout/sm_practice_hack
0
84676
preset_14speed_crateria_ceres_elevator: dw #$0000 dw $078D, $AB58 ; DDB dw $079B, $DF45 ; MDB dw $07F3, $002D ; Music Bank dw $07F5, $0006 ; Music Track dw $090F, $0000 ; Screen subpixel X position dw $0911, $0000 ; Screen X position in pixels dw $0913, $0000 ; Screen subpixel Y ...
alloy4fun_models/trashltl/models/11/eKChcb37BHi7v3746.als
Kaixi26/org.alloytools.alloy
0
4386
<gh_stars>0 open main pred ideKChcb37BHi7v3746_prop12 { always some f : File | eventually f in Trash => always f in Trash } pred __repair { ideKChcb37BHi7v3746_prop12 } check __repair { ideKChcb37BHi7v3746_prop12 <=> prop12o }
libsrc/_DEVELOPMENT/string/z80/asm_strnset.asm
Frodevan/z88dk
640
105042
<reponame>Frodevan/z88dk<gh_stars>100-1000 ; =============================================================== ; Jan 2015 ; =============================================================== ; ; char *strnset(char *s, int c, size_t n) ; ; Write at most n chars c into s. ; ; ================================================...
msquic/msvc/evercrypt/amd64/sha256-x86_64-msvc.asm
ThadHouse/everest-dist
1
85917
<gh_stars>1-10 .code ALIGN 16 sha256_update proc pextrq rax, xmm15, 0 push rax pextrq rax, xmm15, 1 push rax pextrq rax, xmm14, 0 push rax pextrq rax, xmm14, 1 push rax pextrq rax, xmm13, 0 push rax pextrq rax, xmm13, 1 push rax pextrq rax, xmm12, 0 push rax pextrq rax, xm...
archive/agda-1/Membership.agda
m0davis/oscar
0
600
module Membership where open import OscarPrelude open import Successor record Membership {ℓ} (m : Set ℓ) (M : Set ℓ) : Set (⊹ ℓ) where field _∈_ : m → M → Set ℓ _∉_ : m → M → Set ℓ xor-membership : ∀ {x : m} {X : M} → x ∈ X ←⊗→ x ∉ X open Membership ⦃ … ⦄ public data _∈List_ {ℓ} {A : Set ℓ} (a : A) ...
test/interaction/Issue591.agda
cruhland/agda
1,989
16449
<reponame>cruhland/agda<filename>test/interaction/Issue591.agda module Issue591 where import Issue591.M
Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_13_1616.asm
ljhsiun2/medusa
9
14711
<filename>Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_13_1616.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r8 push %r9 push %rdi push %rdx lea addresses_A_ht+0x16d75, %r12 nop nop xor %r14, %r14 movb $0x61, (%r12) nop nop sub $34653, %rdi lea addresses_WC_ht+0xef1d, %r8 nop n...
programs/oeis/057/A057174.asm
neoneye/loda
22
104052
<reponame>neoneye/loda ; A057174: a(n+3)=a(n)+a(n+1)-a(n+2), starting with 1,2,3. ; 1,2,3,0,5,-2,7,-4,9,-6,11,-8,13,-10,15,-12,17,-14,19,-16,21,-18,23,-20,25,-22,27,-24,29,-26,31,-28,33,-30,35,-32,37,-34,39,-36,41,-38,43,-40,45,-42,47,-44,49,-46,51,-48,53,-50,55,-52,57,-54,59,-56,61,-58,63,-60,65,-62,67,-64,69,-66,71,-...
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_588.asm
ljhsiun2/medusa
9
4370
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0x173a0, %rbx nop nop nop nop inc %r8 movb $0x61, (%rbx) nop sub $29716, %r14 lea addresses_A_ht+0x6220, %rsi lea addresses_D_ht+0xf720, %rdi nop nop nop and $64014, %r13 mov $...
a0301.asm
zhangyuesai/8086-asm-learning-code
1
2808
<gh_stars>1-10 assume cs:codesg codesg segment s: jmp s jmp short s jmp near ptr s jmp far ptr s codesg ends end s
test/Succeed/Issue2233.agda
shlevy/agda
1,989
15782
-- Andreas, 2016-10-03, issue #2233 -- Positivity check should return the same result when change -- all involved definitions from non-abstract to abstract. abstract data Functor : Set where Id : Functor _·_ : Functor → Set → Set Id · A = A data ν (F : Functor) : Set where inn : F · ν F → ν F -- Sho...
programs/oeis/090/A090909.asm
jmorken/loda
1
28853
<reponame>jmorken/loda ; A090909: Terms a(k) of A073869 for which a(k-1), a(k) and a(k+1) are distinct. ; 0,2,5,7,10,13,15,18,20,23,26,28,31,34,36,39,41,44,47,49,52,54,57,60,62,65,68,70,73,75,78,81,83,86,89,91,94,96,99,102,104,107,109,112,115,117,120,123,125,128,130,133,136,138,141,143,146,149,151,154,157,159,162 mov ...
programs/oeis/304/A304887.asm
ckrause/cm
22
241307
; A304887: Number of non-isomorphic blobs of weight n. ; 1,1,1,1,1,1,3,3,8,14 mov $2,$0 lpb $0 sub $0,1 add $1,3 mul $2,$1 mov $1,$0 mul $0,2 sub $0,$1 div $2,6 lpe mov $0,$2 add $0,1
src/Categories/Category/Product.agda
Trebor-Huang/agda-categories
279
5910
<gh_stars>100-1000 {-# OPTIONS --without-K --safe #-} module Categories.Category.Product where open import Level open import Function using () renaming (_∘_ to _∙_) open import Data.Product using (_×_; Σ; _,_; proj₁; proj₂; zip; map; <_,_>; swap) open import Categories.Utils.Product open import Categories.Category us...
Anul 1/Semestrul I/Arhitectura sistemelor de calcul/Lucru/Proiect/TASM/Armin.asm
ArmynC/ArminC-UTM-Info
0
84703
.model small ; Model memorie small - un segment de date si un segment de cod .stack 100h ; Rezerva 256 octeti (bytes) spatiu de stiva .data ; Definire si initializare date ; CHANCHIAN - ASCII --> C = 6(7) | H = 7(2) | A = 6(5) ;...
clib64.asm
VeroFess/X64SystemCall
46
29855
.code memset proc xor rax, rax memset_loop: cmp rax, r8 je memset_end mov [rcx + rax], dl inc rax jmp memset_loop memset_end: mov rax, rcx ret memset endp memcpy proc push r9 xor rax, rax memcpy_loop: cmp rax, r8 ...
specs/ada/server/ike/tkmrpc-operation_handlers-ike-nc_create.adb
DrenfongWong/tkm-rpc
0
11683
with Tkmrpc.Servers.Ike; with Tkmrpc.Results; with Tkmrpc.Request.Ike.Nc_Create.Convert; with Tkmrpc.Response.Ike.Nc_Create.Convert; package body Tkmrpc.Operation_Handlers.Ike.Nc_Create is ------------------------------------------------------------------------- procedure Handle (Req : Request.Data_Type; Res...
other.7z/SFC.7z/SFC/ソースデータ/ゼルダの伝説神々のトライフォース/英語_PAL/pal_asm/zel_obj_grph.asm
prismotizm/gigaleak
0
793
Name: zel_obj_grph.asm Type: file Size: 18949 Last-Modified: '2016-05-13T04:25:37Z' SHA-1: C734EDF7581ADE914AAEECA8EC1DD2689DED419E Description: null
Cubical/Algebra/Group/Construct/Unit.agda
bijan2005/univalent-foundations
0
2469
{-# OPTIONS --cubical --no-import-sorts --safe #-} module Cubical.Algebra.Group.Construct.Unit where open import Cubical.Core.Everything open import Cubical.Foundations.Prelude open import Cubical.Algebra.Group open import Cubical.Data.Prod using (_,_) open import Cubical.Data.Unit import Cubical.Algebra.Monoid.Cons...
alloy4fun_models/trashltl/models/1/FCqL9g23TXxoc9AaW.als
Kaixi26/org.alloytools.alloy
0
4350
open main pred idFCqL9g23TXxoc9AaW_prop2 { historically no (File+Trash+Protected) } pred __repair { idFCqL9g23TXxoc9AaW_prop2 } check __repair { idFCqL9g23TXxoc9AaW_prop2 <=> prop2o }
programs/oeis/168/A168622.asm
neoneye/loda
22
22354
<gh_stars>10-100 ; A168622: Triangle T(n,k) with the coefficient [x^k] of the polynomial 7*(x+1)^n - 6*(x^n+1) in row n, column k. T(0,0)=1. ; 1,1,1,1,14,1,1,21,21,1,1,28,42,28,1,1,35,70,70,35,1,1,42,105,140,105,42,1,1,49,147,245,245,147,49,1,1,56,196,392,490,392,196,56,1,1,63,252,588,882,882,588,252,63,1,1,70,315,840,...
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/tagged_incomplete_type_declaration.ads
rose-compiler/rose
488
19173
package Tagged_Incomplete_Type_Declaration is type Car is tagged; type Car is tagged record Number : Integer; end record; end Tagged_Incomplete_Type_Declaration;
Data/Binary/Addition.agda
oisdk/agda-playground
6
2407
<gh_stars>1-10 {-# OPTIONS --without-K --safe #-} module Data.Binary.Addition where open import Data.Binary.Definition open import Data.Binary.Increment add₁ : 𝔹 → 𝔹 → 𝔹 add₂ : 𝔹 → 𝔹 → 𝔹 add₁ 0ᵇ ys = inc ys add₁ (1ᵇ xs) 0ᵇ = 2ᵇ xs add₁ (2ᵇ xs) 0ᵇ = 1ᵇ inc xs add₁ (1ᵇ xs) (1ᵇ ys) = 1ᵇ add₁ ...
src/music.asm
fjpena/sword-of-ianna-msx2
43
27191
<reponame>fjpena/sword-of-ianna-msx2 INCLUDE "music_sfx.sym" ; level1, level2, level3, level4, level5, level6, level7, level8, attrac, secret, nomus gameover intro main menu game end credits music_levels: dw music1, music5, music3, music4, music5, music6, music7, music8, music0, music4, music0, m...
programs/oeis/045/A045944.asm
karttu/loda
1
94904
<reponame>karttu/loda ; A045944: Rhombic matchstick numbers: a(n) = n*(3*n+2). ; 0,5,16,33,56,85,120,161,208,261,320,385,456,533,616,705,800,901,1008,1121,1240,1365,1496,1633,1776,1925,2080,2241,2408,2581,2760,2945,3136,3333,3536,3745,3960,4181,4408,4641,4880,5125,5376,5633,5896,6165,6440,6721,7008,7301,7600,7905,8216,...
smsq/qd/exv.asm
olifink/smsqe
0
19360
<reponame>olifink/smsqe * Set exception vector (per job) V2.00  1986 <NAME> QJUMP * section qd * xdef qd_exv * xref sms_ckid xref sms_rte * include dev8_keys_jcbq include dev8_keys_sys * * d1 cr job id * a0 sp base of job * a1 c p base of table * * all other registers preserved * qd_exv bsr.l sms_ckid che...
alloy4fun_models/trainstlt/models/13/cEyhPCpFSELFoCwrJ.als
Kaixi26/org.alloytools.alloy
0
1686
<filename>alloy4fun_models/trainstlt/models/13/cEyhPCpFSELFoCwrJ.als<gh_stars>0 open main pred idcEyhPCpFSELFoCwrJ_prop14 { always ( all t:Train | eventually (some t.pos and one (t.pos.signal :>Green) and t.pos' !=t. pos and some t.pos' ) implies (t.pos.signal in Signal-Green) ) } pred __repair { idcEyhPCpFSELFo...
init.asm
reubenct/OSproject-xv6
1
104852
<reponame>reubenct/OSproject-xv6 _init: file format elf32-i386 Disassembly of section .text: 00000000 <main>: char *argv[] = { "sh", 0 }; int main(void) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 53 push %ebx 4: 83 e4 f0 an...
Library/Text/TextLine/tlTabLeader.asm
steakknife/pcgeos
504
171621
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1992 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: tlTabLeader.asm AUTHOR: <NAME>, Feb 26, 1992 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Descript...
dv3/atari/hd/init.asm
olifink/smsqe
0
94879
<gh_stars>0 ; DV3 Atari ACSI Disk Initialisation V3.00  1992 <NAME> section dv3 xdef hd_init xref.l hd_vers xref.s hd.rev xref dv3_link xref dv3_acdef xref gu_fopen xref gu_fclos include 'dev8_dv3_keys' include 'dev8_dv3_hd_keys' include 'dev8_dv3_mac' include 'dev8_keys_qdos_ioa' include 'dev8_k...
oeis/331/A331326.asm
neoneye/loda-programs
11
81346
<filename>oeis/331/A331326.asm ; A331326: a(n) = n!*[x^n] sinh(x/(1 - x))/(1 - x). ; Submitted by <NAME>(w3) ; 0,1,4,19,112,801,6756,65563,717760,8729857,116570980,1693096131,26548383984,446689827169,8023582921732,153192673528651,3097301219335936,66095983547942913,1484384376886189380,34991710162280602867,86379705381865...
stage1/gdt.asm
nelsoncole/sx
3
94773
;========================================================================================== ; ; File Name: gdt.asm ; ; ; BSD 3-Clause License ; ; Copyright (c) 2019, nelsoncole ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the...
libsrc/zx81/basic/zx_basic_length.asm
meesokim/z88dk
0
20285
<reponame>meesokim/z88dk ; ; ZX 81 specific routines ; by <NAME>, Oct 2007 ; ; This routine gives the length of the current BASIC program. ; Memory used by variables is not included. ; ; $Id: zx_basic_length.asm,v 1.2 2015/01/19 01:33:26 pauloscustodio Exp $ ; PUBLIC zx_basic_length zx_basic_length: ld de,$407D...
programs/oeis/078/A078723.asm
neoneye/loda
22
88406
<filename>programs/oeis/078/A078723.asm ; A078723: a(n) = prime(n*(n+1)/2 + n). ; 3,11,23,43,71,103,149,193,251,313,389,463,569,653,761,881,1013,1129,1289,1451,1601,1777,1979,2143,2357,2591,2789,3023,3301,3539,3793,4057,4349,4651,4969,5297,5639,5927,6299,6673,7013,7459,7823,8237,8677,9067,9479 add $0,3 bin $0,2 sub $0...
data/pokemon/base_stats/machop.asm
opiter09/ASM-Machina
1
102452
db DEX_MACHOP ; pokedex id db 70, 80, 50, 35, 35 ; hp atk def spd spc db FIGHTING, FIGHTING ; type db 180 ; catch rate db 88 ; base exp INCBIN "gfx/pokemon/front/machop.pic", 0, 1 ; sprite dimensions dw MachopPicFront, MachopPicBack db KARATE_CHOP, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset d...
programs/oeis/166/A166959.asm
karttu/loda
1
172885
<reponame>karttu/loda ; A166959: Numbers congruent to (12,32) mod 44. ; 12,32,56,76,100,120,144,164,188,208,232,252,276,296,320,340,364,384,408,428,452,472,496,516,540,560,584,604,628,648,672,692,716,736,760,780,804,824,848,868,892,912,936,956,980,1000,1024,1044,1068,1088,1112,1132,1156,1176,1200,1220,1244,1264,1288,13...
oeis/332/A332243.asm
neoneye/loda-programs
11
737
<gh_stars>10-100 ; A332243: Starhex honeycomb numbers: a(n) = 13 + 60*n + 60*n^2. ; 13,133,373,733,1213,1813,2533,3373,4333,5413,6613,7933,9373,10933,12613,14413,16333,18373,20533,22813,25213,27733,30373,33133,36013,39013,42133,45373,48733,52213,55813,59533,63373,67333,71413,75613,79933,84373 add $0,1 bin $0,2 mul $0,...