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 |
|---|---|---|---|---|
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_3_1575.asm | ljhsiun2/medusa | 9 | 16860 | <filename>Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_3_1575.asm
.global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r13
push %r9
push %rax
push %rbp
push %rdx
push %rsi
// Store
lea addresses_RW+0x8d54, %r13
nop
nop
xor %rsi, %rsi
mov $0x51525354... |
data/pokemon/base_stats/kecleon.asm | TastySnax12/pokecrystal16-493-plus | 2 | 243116 | <gh_stars>1-10
db 0 ; species ID placeholder
db 60, 90, 70, 40, 60, 120
; hp atk def spd sat sdf
db NORMAL, NORMAL ; type
db 200 ; catch rate
db 132 ; base exp
db NO_ITEM, BITTER_BERRY ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 20 ; step cycles to hatch
db 5 ; unknown 2
INCBIN ... |
oeis/180/A180965.asm | neoneye/loda-programs | 11 | 178445 | ; A180965: Number of tatami tilings of a 2 X n grid (with monomers allowed).
; Submitted by <NAME>(s4)
; 1,2,6,13,29,68,156,357,821,1886,4330,9945,22841,52456,120472,276681,635433,1459354,3351598,7697381,17678037,40599916,93242996,214144685,491811165,1129508406,2594063186,5957604017,13682413681,31423445328,72168035504,... |
programs/oeis/007/A007798.asm | neoneye/loda | 22 | 18457 | ; A007798: Expected number of random moves in Tower of Hanoi problem with n disks starting with a randomly chosen position and ending at a position with all disks on the same peg.
; 0,0,2,18,116,660,3542,18438,94376,478440,2411882,12118458,60769436,304378620,1523487422,7622220078,38125449296,190670293200,953480606162,4... |
asm/_debug.asm | RockmanEXEZone/MMBN45-English-Translation | 6 | 11798 | <filename>asm/_debug.asm
// Always enables Select=BattleSkip
//.org 0x0800825C
// nop
// Hold Select to expire mission timer
.org 0x8006A04
bl debug_expireMissionTimer
// Battle target cheats
.org 0x08020114
ldr r1,=debug_battleTargetCheats|1b
bx r1
.pool
// Higher default text speed
.org 0x0804FB82
mov r0,1h
... |
third_party/heif_decoder/src/main/cpp/libx265/common/x86/cpu-a.asm | vy12021/glide_webp | 14 | 90411 | ;*****************************************************************************
;* cpu-a.asm: x86 cpu utilities
;*****************************************************************************
;* Copyright (C) 2003-2013 x264 project
;* Copyright (C) 2013-2017 MulticoreWare, Inc
;*
;* Authors: <NAME> <<EMAIL>>
;* ... |
code/OrderLemmas.agda | DSLsofMath/ValiantAgda | 3 | 7173 | <filename>code/OrderLemmas.agda
import Relation.Binary.EqReasoning as EqReasoning
open import SemiNearRingRecords
module OrderLemmas (snro : SemiNearRing) where
open SemiNearRing snro -- public
open import CommAssocLemmas s _≃s_ _+s_ zers isCommMon
using (assoc; comm)
renaming (SA to Ss)
open EqReasoning Ss... |
xmt_edit/proto/hdr/hdr.asm | fractalic/XMT | 1 | 167709 | {
#************************************************************************
# $Version:$
# Package : xmt_edit
# Synopsis :
# Purpose : Perl block which, when eval'ed, prints the desired
# file header for assembler files.
#
# Copyright (c) 1998 Neumann & Associates Information Systems Inc.
# <EMAIL>
# ... |
Function/Surjective/Properties.agda | oisdk/agda-playground | 6 | 17253 | <filename>Function/Surjective/Properties.agda
{-# OPTIONS --cubical --safe --postfix-projections #-}
module Function.Surjective.Properties where
open import Path
open import Function.Fiber
open import Level
open import HITs.PropositionalTruncation
open import Data.Sigma
open import Function.Surjective.Base
open impor... |
shared/libso.asm | akruman/low-level-programming-c | 0 | 82614 | <reponame>akruman/low-level-programming-c
extern _GLOBAL_OFFSET_TABLE_
global func:function
section .rodata
message: db "Shared object wrote this", 10, 0
section .text
func:
mov rax, 1
mov rdi, 1
mov rsi, message
mov rdx, 14
syscall
ret |
.build/ada/asis-gela-elements-defs-accs.adb | faelys/gela-asis | 4 | 26054 | <reponame>faelys/gela-asis
------------------------------------------------------------------------------
-- 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/IsblCheck.Core/Parser/Isbl.g4 | arhipovdv/IsblCheck | 13 | 4759 | grammar Isbl;
@parser::header {#pragma warning disable 3021}
@lexer::header {#pragma warning disable 3021}
/*******************************************************************************
*********************************Правила лексера********************************
************************************************... |
source/calendar/machine-w64-mingw32/s-nareti.ads | ytomino/drake | 33 | 8730 | <reponame>ytomino/drake
pragma License (Unrestricted);
-- implementation unit specialized for Windows
with C.winnt;
package System.Native_Real_Time is
subtype Native_Time is C.winnt.LONGLONG;
function To_Native_Time (T : Duration) return Native_Time;
function To_Duration (T : Native_Time) return Duration;
... |
test/Succeed/Issue87.agda | cruhland/agda | 1,989 | 7187 | module Issue87 where
data I : Set where
data D : I -> Set where
d : forall {i} (x : D i) -> D i
bar : forall {i} -> D i -> D i -> D i
bar (d x) (d y) with y
bar (d x) (d {i} y) | z = d {i} y
-- ERROR WAS:
-- Panic: unbound variable i
-- when checking that the expression i has type I
-- Andreas, 2016-06-02
--... |
src/test/ref/struct-ptr-11.asm | jbrandwood/kickc | 2 | 103288 | // Minimal struct - array of 3-byte structs (required *3)
// Commodore 64 PRG executable file
.file [name="struct-ptr-11.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment... |
src/intel/tools/tests/gen6/rnde.asm | SoftReaper/Mesa-Renoir-deb | 0 | 162405 | rnde(8) g6<1>F g3<8,8,1>F { align1 1Q };
rnde(16) g8<1>F g4<8,8,1>F { align1 1H };
|
oeis/279/A279543.asm | neoneye/loda-programs | 11 | 25978 | ; A279543: a(n) = a(n-1) + 3^n * a(n-2) with a(0) = 1 and a(1) = 1.
; Submitted by <NAME>
; 1,1,10,37,847,9838,627301,22143007,4137864868,439978671649,244776761262181,78185678507867584,130162592460442600405,124783388108159412726037,622688428086038843429228482,1791127919536971393223950620041,2680648616166781505965390566... |
puzzle_21/src/puzzle_21.adb | AdaForge/Advent_of_Code_2020 | 0 | 15203 | procedure Puzzle_21 is
begin
null;
end Puzzle_21;
|
oeis/145/A145382.asm | neoneye/loda-programs | 11 | 176720 | <reponame>neoneye/loda-programs
; A145382: Write the n-th prime in binary. Change all 0's to 1's and all 1's to 0's. a(n) is the decimal equivalent of the result.
; Submitted by Jon Maiga
; 1,0,2,0,4,2,14,12,8,2,0,26,22,20,16,10,4,2,60,56,54,48,44,38,30,26,24,20,18,14,0,124,118,116,106,104,98,92,88,82,76,74,64,62,58,56... |
micro_kernel/timer.asm | bursaiskender/BaseLevelComputerKernel | 1 | 14053 | install_timer:
mov r8, 1193180 / 1000
mov al, 0x36
out 0x43, al
mov rax, r8
out 0x40, al
mov rax, r8
shr rax, 8
out 0x40, al
mov r8, 0
mov r9, irq_timer_handler
call register_irq_handler
ret
irq_timer_handler:
push rax
push rbx
push rcx
push rdx
... |
examples/tty_info.adb | ytomino/drake | 33 | 20096 | <filename>examples/tty_info.adb
with Ada.Command_Line;
with Ada.Text_IO.Terminal;
procedure tty_info is
use Ada.Text_IO;
use Ada.Text_IO.Terminal;
package Count_IO is new Integer_IO (Count);
use Count_IO;
Try_Resize, Try_Move, Try_Col, Try_Save : Boolean := False;
State : Terminal.Output_State;
begin
Count_IO.De... |
env/zx/common/fputc_cons_rst.asm | pjshumphreys/querycsv | 18 | 14466 | <reponame>pjshumphreys/querycsv
include "equs.inc"
; (char to print) this function is written to only use jr instructions to make it be relocatable code
fputc_cons_rom_rst:
ld hl, 2
add hl, sp
ld b, (hl)
ld hl, skip_count
ld a, (hl)
and a
ld a, b
jr nz, not_cont
cp 10
jr z, lf
cp 22 ;move to
... |
src/ram_defs.asm | PeterCamilleri/zed8e | 0 | 96814 | ; Zed8E FORTH - A direct threaded FORTH for the Z-80
;
; RAM definitions. Since this is RAM not ROM, no code should be emitted here.
;
org $8000
ram_start:
__here: reserve 2 ; The next byte to be used in the dictionary
__last: reserve 2 ; The LFA of the last word to be defined.
__current: reserve... |
agda-stdlib/src/Data/List/Fresh/Relation/Unary/Any/Properties.agda | DreamLinuxer/popl21-artifact | 5 | 8853 | ------------------------------------------------------------------------
-- The Agda standard library
--
-- Properties of Any predicate transformer for fresh lists
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.List.Fresh.Relation.Unary.Any.Prop... |
Appl/ScrapBk/scrapbk.asm | steakknife/pcgeos | 504 | 87323 | <reponame>steakknife/pcgeos
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1990 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: scrapbk
FILE: scrapbk.asm
REVISION HISTORY:
Name Date Description
---- ---- -----------
brianc 2/90 Initial versi... |
oeis/239/A239130.asm | neoneye/loda-programs | 11 | 23493 | <filename>oeis/239/A239130.asm<gh_stars>10-100
; A239130: Smallest positive integer solution x = a(n) of (3^4)*x - 2^n*y = 1 for n >= 0.
; Submitted by <NAME>
; 1,1,1,1,1,17,49,49,177,177,177,177,2225,2225,2225,18609,18609,84145,84145,84145,608433,1657009,1657009,1657009,1657009,1657009,1657009,1657009,135874737,404310... |
alloy4fun_models/trashltl/models/4/37qYjWqQeJSgfJ7L7.als | Kaixi26/org.alloytools.alloy | 0 | 2733 | open main
pred id37qYjWqQeJSgfJ7L7_prop5 {
some f : Trash | eventually f not in File
}
pred __repair { id37qYjWqQeJSgfJ7L7_prop5 }
check __repair { id37qYjWqQeJSgfJ7L7_prop5 <=> prop5o } |
programs/oeis/016/A016978.asm | neoneye/loda | 22 | 104676 | ; A016978: a(n) = (6*n + 5)^10.
; 9765625,25937424601,2015993900449,41426511213649,420707233300201,2758547353515625,13422659310152401,52599132235830049,174887470365513049,511116753300641401,1346274334462890625,3255243551009881201,7326680472586200649,15516041187205853449,31181719929966183601,59873693923837890625,1104622... |
tests/notcurses_test.adb | JeremyGrosser/notcursesada | 5 | 27444 | --
-- Copyright 2021 (C) <NAME> <<EMAIL>>
--
-- SPDX-License-Identifier: Apache-2.0
--
with Ada.Exceptions;
with Ada.Text_IO;
with Tests; use Tests;
with Notcurses.Context;
with Notcurses;
procedure Notcurses_Test is
begin
begin
Notcurses.Context.Initialize;
Test_Version;
Test_Hello_World;
... |
libsrc/_DEVELOPMENT/adt/wv_priority_queue/c/sdcc_iy/wv_priority_queue_data.asm | meesokim/z88dk | 0 | 160966 | <reponame>meesokim/z88dk<gh_stars>0
; void *wv_priority_queue_data(wv_priority_queue_t *q)
SECTION code_adt_wv_priority_queue
PUBLIC _wv_priority_queue_data
EXTERN _wa_priority_queue_data
defc _wv_priority_queue_data = _wa_priority_queue_data
|
theorems/cohomology/FlipPushout.agda | cmknapp/HoTT-Agda | 0 | 8814 | <reponame>cmknapp/HoTT-Agda<filename>theorems/cohomology/FlipPushout.agda
{-# OPTIONS --without-K #-}
open import HoTT
open import cohomology.FunctionOver
{- Flipping the pushout diagram (switching left and right) gives the
- same pushout. -}
module cohomology.FlipPushout where
{- Span-flipping functions -}
flip-s... |
Setoids/Orders/Partial/Definition.agda | Smaug123/agdaproofs | 4 | 3045 | {-# OPTIONS --safe --warning=error --without-K #-}
open import Sets.EquivalenceRelations
open import LogicalFormulae
open import Orders.Total.Definition
open import Orders.Partial.Definition
open import Setoids.Setoids
open import Functions.Definition
open import Agda.Primitive using (Level; lzero; lsuc; _⊔_)
module... |
winxp_sp3/trun/enable_rdp/win-api_enable-rdp/firewall_enable-rdp_winapi.nasm | danf42/vulnserver | 0 | 244000 | <filename>winxp_sp3/trun/enable_rdp/win-api_enable-rdp/firewall_enable-rdp_winapi.nasm
; Purpose:
; Enable RDP via Windows API
; Open port 3386
; set fDenyTSConnections to False
[BITS 32]
global _start
_start:
;for the handle
xor edx, edx
mov edi, esp
mov dword [edi], edx
sub esp, 0x10 ;avoid handle be... |
alloy4fun_models/trashltl/models/7/bAPL8vujSi3o7pebs.als | Kaixi26/org.alloytools.alloy | 0 | 684 | open main
pred idbAPL8vujSi3o7pebs_prop8 {
always (all f : File | some f.link implies eventually link.f in Trash)
}
pred __repair { idbAPL8vujSi3o7pebs_prop8 }
check __repair { idbAPL8vujSi3o7pebs_prop8 <=> prop8o } |
programs/oeis/129/A129011.asm | karttu/loda | 0 | 27637 | <reponame>karttu/loda
; A129011: a(n) = floor(n^(4/3)).
; 0,1,2,4,6,8,10,13,16,18,21,24,27,30,33,36,40,43,47,50,54,57,61,65,69,73,77,81,85,89,93,97,101,105,110,114,118,123,127,132,136,141,145,150,155,160,164,169,174,179,184,189,194,199,204,209,214,219,224,229,234
mov $27,$0
mov $29,2
lpb $29,1
clr $0,27
mov $0,$27... |
test/Succeed/Issue1998.agda | alhassy/agda | 3 | 5606 | <filename>test/Succeed/Issue1998.agda
{-# OPTIONS --allow-unsolved-metas #-}
postulate
Foo : Set
record BaseT : Set₁ where
field f : Foo
record ParamT (p : Foo) : Set₁ where
field f : Foo
instance
postulate asBaseT : ∀ {p} → ParamT p → BaseT
-- BaseT.f (asBaseT p) = ParamT.f p
data Bar : Set where
o : Ba... |
src/SystemF/Syntax/Term.agda | metaborg/ts.agda | 4 | 7678 | <filename>src/SystemF/Syntax/Term.agda
module SystemF.Syntax.Term where
open import Prelude
open import SystemF.Syntax.Type
infixl 9 _[_] _·_
data Term (ν n : ℕ) : Set where
var : (x : Fin n) → Term ν n
Λ : Term (suc ν) n → Term ν n
λ' : Type ν → Term ν (suc n) → Term ν n
_[_] : Term ν n → Type ν → Term... |
libsrc/_DEVELOPMENT/arch/zxn/memory/c/sdcc/zxn_addr_in_mmu_callee.asm | jpoikela/z88dk | 640 | 6259 | ; unsigned int zxn_addr_in_mmu(unsigned char mmu, unsigned int addr)
SECTION code_clib
SECTION code_arch
PUBLIC _zxn_addr_in_mmu_callee
EXTERN asm_zxn_addr_in_mmu
_zxn_addr_in_mmu_callee:
pop hl
dec sp
pop af
ex (sp),hl
jp asm_zxn_addr_in_mmu
|
programs/oeis/024/A024127.asm | neoneye/loda | 22 | 3197 | <reponame>neoneye/loda
; A024127: a(n) = 11^n-1.
; 0,10,120,1330,14640,161050,1771560,19487170,214358880,2357947690,25937424600,285311670610,3138428376720,34522712143930,379749833583240,4177248169415650,45949729863572160,505447028499293770
mov $1,11
pow $1,$0
sub $1,1
mov $0,$1
|
Classes/alias/info for/info for (path to me).applescript | looking-for-a-job/applescript-examples | 1 | 3393 | #!/usr/bin/osascript
info for (path to me) |
util/gut/thini.asm | olifink/smsqe | 0 | 101917 | ; Thing Initialisation V1.00 1990 <NAME> QJUMP
section gen_util
xdef gu_thini
xref gu_achpp
xref gu_thzlk
include 'dev8_keys_thg'
include 'dev8_mac_assert'
;+++
; Create a Thing. The linkage block is filled with sensible defaults.
;
; The poi... |
NEWPT.asm | LutzGrosshennig/amiga-drunken-coder-intro | 0 | 25909 | <gh_stars>0
;**************************************************
;* ----- Protracker V2.3A Playroutine ----- *
;**************************************************
; VBlank Version 2:
; Call mt_init to initialize the routine, then call mt_music on
; each vertical blank (50 Hz). To end the song and turn off all
; v... |
src/boot/bootloader.asm | DrDeano/DeanOS | 6 | 89719 | <filename>src/boot/bootloader.asm<gh_stars>1-10
; ---------------------------------------------------------------------
; Here is some information for you so can understand the whole thing :)
; Using a 1440KB 3.5" Floppy for the bootloader
; ---------------------------------------------------------------------
%define... |
stone/testcases/dec.asm | yutopp/sekki | 6 | 98356 | bits 64
dec rcx
dec qword [rbp-32]
dec byte [rdi+26]
|
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2_notsx.log_254_1086.asm | ljhsiun2/medusa | 9 | 23427 | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r14
push %r8
push %rax
push %rdi
// Store
lea addresses_WC+0x13eb0, %r8
xor %rax, %rax
movl $0x51525354, (%r8)
nop
nop
nop
add %r8, %r8
// Faulty Load
lea addresses_WT+0x5190, %r14
nop
nop
nop
cmp %rdi... |
life.adb | jdgoal512/Life | 0 | 14638 | with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure Life is
-- D: Die, S: Stay the same, G: Grow a new cell
type Rules_Type is (D, S, G);
type Rule_Set is array (Natural range 0 .. 8) of Rules_Type;
type Grid_Type is array (Natural range <>, Natural range ... |
tools-src/gnu/gcc/gcc/ada/s-traceb.adb | enfoTek/tomato.linksys.e2000.nvram-mod | 80 | 6901 | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
plugin/src/main/antlr/Template.g4 | cbyrneee/JetBrains-Discord-Integration | 426 | 7078 | grammar Template;
template: text_eval;
DOLLAR_SIGN : '$' ;
PERCENT_SIGN : '%' ;
PR_OPEN : '(' ;
PR_CLOSED : ')' ;
BR_OPEN : '{' ;
BR_CLOSED : '... |
libsrc/msx/msx_noblank.asm | meesokim/z88dk | 0 | 241565 | ;
; MSX specific routines
; by <NAME>, 30/11/2007
;
; void msx_noblank();
;
; Enable screen
;
; $Id: msx_noblank.asm,v 1.4 2015/01/19 01:32:57 pauloscustodio Exp $
;
PUBLIC msx_noblank
EXTERN msxbios
INCLUDE "msxbios.def"
msx_noblank:
ld ix,ENASCR
jp msxbios
|
music/Save Play Count to BPM.applescript | casey/local | 18 | 1506 | <filename>music/Save Play Count to BPM.applescript<gh_stars>10-100
property my_title : "Save Play Count to BPM"
tell application "Music"
set sel to selection
repeat with t in sel
set plays to t's «class pPlC»
set t's bpm to plays
end repeat
end tell
|
src/asm/gameplay.asm | DJRideout/MegaManX4Practice | 1 | 8132 | .psx
; Overwrite the logic for ending a stage to always either go to part 2 or go to mission complete
@stage_end:
replace 0x800200FC
lb v0,CURRENT_STAGE
lb v1,STAGE_PART
subi v0,v0,9 ; Will now be 0 if this is X's Colonel fight
beq v0,$zero,@@set_mission_complete
subi v0,v0,1 ; Will now be 0 if thi... |
src/state_handlers/loading_scene.asm | Xeyler/gb-hello-world | 0 | 104209 |
SECTION "loading scene state handler", ROM0
state_loading_scene:
; Disable the screen so we can access vram outside of vblank
ld a, [h_lcdc]
res 7, a
ld [h_lcdc], a
ld a, VBLANK_FLAG_UPDATE_VARS
ld [h_vblank_flag], a
call wait_for_vblank
; Copy tileset
ld hl, h_event_index
dereference_hl_into_hl
ld a, [hli]... |
programs/oeis/188/A188090.asm | neoneye/loda | 22 | 97301 | ; A188090: [nr+kr]-[nr]-[kr], where r=sqrt(3), k=5, [ ]=floor.
; 1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,0,1,1,0,0,1,1,0
mov $2,$0
mov $0,5
lpb $0
sub $2,1
add $0,$2
seq... |
t65/min_pass3.asm | PeterCamilleri/test65 | 0 | 86791 | ; Minimum code that passes a test
.import exit:absolute
.export _main
.pc02
.code
_main:
lda #0
jmp exit
|
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_1466.asm | ljhsiun2/medusa | 9 | 83290 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x11ff6, %rsi
lea addresses_normal_ht+0xaff6, %rdi
clflush (%rsi)
nop
cmp %r12, %r12
mov $105, %rcx
rep movsw
add $58911, %rbx
lea addresses_WT_ht+0x12bf6, %rsi
lea addr... |
agda-stdlib/src/Data/Sum/Relation/LeftOrder.agda | DreamLinuxer/popl21-artifact | 5 | 10603 | ------------------------------------------------------------------------
-- The Agda standard library
--
-- This module is DEPRECATED. Please use
-- Data.Sum.Relation.Binary.LeftOrder directly.
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.Sum.... |
Transynther/x86/_processed/NONE/_xt_sm_/i9-9900K_12_0xa0_notsx.log_21829_125.asm | ljhsiun2/medusa | 9 | 166856 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r14
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x6a6c, %rsi
lea addresses_WC_ht+0x8330, %rdi
nop
nop
nop
nop
dec %r10
mov $5, %rcx
rep movsq
nop
nop
dec %rsi
lea addresses_UC_ht+0xe188, %rsi
lea addresses_A_ht+0xdc20, %rdi
... |
antlr-definition/src/main/antlr/mylanguage/antlr/MyLanguageParser.g4 | AlexLandau/antlr-preferring-later-rule | 0 | 5544 | parser grammar MyLanguageParser;
@header {
package mylanguage.antlr;
}
tokens {
NEWLINE,
WS,
LINE_COMMENT,
BLOCK_COMMENT,
LPAREN,
RPAREN,
LESS_THAN,
GREATER_THAN,
ID
}
// String to parse: foo<bar>(baz)
// This fails to parse as intended
expression : ID
| expression LESS_THAN ID GREATER_THAN LP... |
test/Succeed/Issue2386BuiltinEqualityUniverseLub.agda | cruhland/agda | 1,989 | 11108 | -- Andreas, 2017-01-12, issue #2386
open import Agda.Primitive
data _≡_ {a b} {A : Set (a ⊔ b)} : (x y : A) → Set where
refl : (x : A) → x ≡ x
{-# BUILTIN EQUALITY _≡_ #-}
-- Should be accepted
-- The type of primErase has to match the flavor of EQUALITY
primitive primEraseEquality : ∀ {a b}{A : Set (a ⊔ b)} {x... |
hangout/advanced-gdb.asm | netguy204/cmsc313_examples | 1 | 29149 | %define WRITE 4
%define STDOUT 1
[SECTION .data]
;;; Here we declare initialized data. For example: messages, prompts,
;;; and numbers that we know in advance
data: db "abcd"
[SECTION .bss]
;;; Here we declare uninitialized data. We're reserving space (and
;;; potentially associating names with that space) that ou... |
src/opus.adb | onox/opus-ada | 2 | 25285 | -- Copyright (c) 2014 onox <<EMAIL>>
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DI... |
oeis/021/A021893.asm | neoneye/loda-programs | 11 | 94366 | <reponame>neoneye/loda-programs<filename>oeis/021/A021893.asm
; A021893: Decimal expansion of 1/889.
; Submitted by <NAME>
; 0,0,1,1,2,4,8,5,9,3,9,2,5,7,5,9,2,8,0,0,8,9,9,8,8,7,5,1,4,0,6,0,7,4,2,4,0,7,1,9,9,1,0,0,1,1,2,4,8,5,9,3,9,2,5,7,5,9,2,8,0,0,8,9,9,8,8,7,5,1,4,0,6,0,7,4,2,4,0,7,1,9,9,1,0,0,1,1,2,4,8,5,9,3,9,2,5,7... |
programs/oeis/266/A266300.asm | neoneye/loda | 22 | 243658 | ; A266300: Triangle read by rows giving successive states of cellular automaton generated by "Rule 15" initiated with a single ON (black) cell.
; 1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,... |
samples/asm/simple_call.asm | tkmru/cibo | 4 | 170649 | BITS 32
org 0x7c00
start:
mov eax, 0x00f1
mov ebx, 0x0029
call add_routine
jmp 0
add_routine:
mov ebx, eax
mov eax, 0x1011
ret
|
alloy4fun_models/trainstlt/models/5/ZYeQQikmHg5wpxBif.als | Kaixi26/org.alloytools.alloy | 0 | 4961 | <reponame>Kaixi26/org.alloytools.alloy
open main
pred idZYeQQikmHg5wpxBif_prop6 {
always ( all s : Signal { s in Green => Green' = Green - s
s not in Green => Green' = Green + s
}
)
}
pred __repair { idZYeQQikmHg5wpxBif_prop6 }
check __repair { idZYeQQikmHg5wpxBif_prop6 <=> prop6o } |
libsrc/_DEVELOPMENT/math/float/math48/lm/c/sdcc_ix/___slonglong2fs.asm | jpoikela/z88dk | 640 | 172341 |
SECTION code_clib
SECTION code_fp_math48
PUBLIC ___slonglong2fs
EXTERN cm48_sdccixp_slonglong2ds
defc ___slonglong2fs = cm48_sdccixp_slonglong2ds
|
oeis/213/A213565.asm | neoneye/loda-programs | 11 | 247452 | <filename>oeis/213/A213565.asm<gh_stars>10-100
; A213565: Principal diagonal of the convolution array A213564.
; Submitted by <NAME>(w1)
; 1,21,127,467,1302,3038,6258,11754,20559,33979,53625,81445,119756,171276,239156,327012,438957,579633,754243,968583,1229074,1542794,1917510,2361710,2884635,3496311,4207581,5030137,597... |
Dave/Algebra/Naturals/Definition.agda | DavidStahl97/formal-proofs | 0 | 12989 | <reponame>DavidStahl97/formal-proofs
module Dave.Algebra.Naturals.Definition where
open import Dave.Equality public
open import Dave.Structures.Monoid public
data ℕ : Set where
zero : ℕ
suc : ℕ → ℕ
one = suc zero
two = suc one
three = suc two
four = suc three
five = suc four
six = suc five... |
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xa0.log_21829_10.asm | ljhsiun2/medusa | 9 | 170844 | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0xc9f1, %rsi
lea addresses_WC_ht+0x1a831, %rdi
nop
nop
nop
nop
cmp %rax, %rax
mov $126, %rcx
rep movsw
add $44440, %rdx
lea addresses_D_ht+0x15031, %r10
clflush (%r10)
nop
nop
n... |
source/expression/exprutils.asm | paulscottrobson/x16-basic | 1 | 240953 | <filename>source/expression/exprutils.asm
; *****************************************************************************
; *****************************************************************************
;
; Name : exprutils.asm
; Purpose : Expression Utilities
; Author : <NAME> (<EMAIL>)
; Date : 8th February 202... |
kernel/temp/__dictionary.asm | paulscottrobson/flat | 0 | 167187 | <gh_stars>0
db 1+5
db $20
dw define_21
db 1
db "!"
db 1+5
db $20
dw define_2a
db 1
db "*"
db 1+5
db $20
dw define_2b
db 1
db "+"
db 2+5
db $20
dw define_2b_21
db 2
db "+!"
db 2+5
db $20
dw define_2b_2b
db 2
db "++"
db 3+5
db $20
dw define_2b_2b_2b
db 3
db "+++"
db 1+5
db $20
dw de... |
vendor/ring/pregenerated/tmp/poly1305-x86-win32n.asm | yilinhan/crates-io | 210 | 161637 | <filename>vendor/ring/pregenerated/tmp/poly1305-x86-win32n.asm
; This file is generated from a similarly-named Perl script in the BoringSSL
; source tree. Do not edit by hand.
%ifdef BORINGSSL_PREFIX
%include "boringssl_prefix_symbols_nasm.inc"
%endif
%ifidn __OUTPUT_FORMAT__,obj
section code use32 class=code align=64... |
home/time.asm | AtmaBuster/pc16-tpp1 | 3 | 10337 | <reponame>AtmaBuster/pc16-tpp1
; Functions relating to the timer interrupt and the real-time-clock.
AskTimer::
push af
ldh a, [hMobile]
and a
jr z, .not_mobile
call Timer
.not_mobile
pop af
reti
LatchClock::
; latch clock counter data
ld a, LATCH_RTC
ld [TPP1LatchClock], a
; waste some time to allow clock ... |
server/src/main/antlr4/io/druid/sql/antlr4/DruidSQL.g4 | xurenlu/druid | 0 | 3390 | grammar DruidSQL;
@header {
import com.google.common.base.Joiner;
import com.google.common.collect.Lists;
import io.druid.granularity.PeriodGranularity;
import io.druid.granularity.QueryGranularity;
import io.druid.query.aggregation.AggregatorFactory;
import io.druid.query.aggregation.CountAggregatorFactory;
import io... |
programs/oeis/286/A286748.asm | neoneye/loda | 22 | 85230 | ; A286748: Characteristic sequence of the Beatty sequence, A194028, of sqrt(12).
; 0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1
mov $3,2
mov $5,$0
lpb $3
mov $0,$... |
src/plugins/plugin-base.adb | Okasu/Byron | 1 | 9247 | <reponame>Okasu/Byron<filename>src/plugins/plugin-base.adb<gh_stars>1-10
package body Plugin.Base
is
procedure Say (Message : IRC.Message)
is
Arguments : Vector := Words (Message.Content);
Answer : IRC.Message := Message;
begin
Answer.Channel := Arguments (2);
Delete (Arguments, 1);
... |
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/fzero.lzh/fzero/en-data-2.asm | prismotizm/gigaleak | 0 | 163909 | Name: en-data-2.asm
Type: file
Size: 8595
Last-Modified: '1993-07-20T07:13:23Z'
SHA-1: 07024E2AC73157BB0AD7C50B2B967979A75A26BD
Description: null
|
assembly_tests/testEmu3.asm | znjRoLS/ss | 0 | 161220 | <filename>assembly_tests/testEmu3.asm
.public fact
.text.fact
fact:
ldc r15, fact
mul r1, r2
sub r2, 1
cmps r2, 0
callne r15, 0
ret
|
parsers/action_expression/ActionExpression.g4 | trgswe/fs2open.github.com | 307 | 3970 | grammar ActionExpression;
expression_main: expression EOF;
expression
: value_expression
| random_range_expression
| parenthesis_expression
| variable_reference_expression
| expression ( PLUS | MINUS ) expression
;
parenthesis_expression: L_PAREN expression R_PAREN;
value_expression
: literal_expression
| v... |
AppleScripts/Applications/Pro Tools/ReVoice Capture.applescript | fantopop/post-production-scripts | 16 | 3115 | --
-- AppleScripts for Avid Pro Tools.
--
-- Script description:
-- Sends selection to Revoice Pro.
--
-- (C) 2017 <NAME>
-- http://github.com/fantopop
--
tell application "Finder"
tell application "System Events"
set PT to the first application process whose creator type is "PTul"
tell PT
activate
set fro... |
oeis/229/A229213.asm | neoneye/loda-programs | 11 | 8688 | <reponame>neoneye/loda-programs<filename>oeis/229/A229213.asm
; A229213: Square array of denominators of t(n,k) = (1+1/(k*n))^n, read by descending antidiagonals.
; Submitted by <NAME>
; 1,2,4,3,16,27,4,36,216,256,5,64,729,4096,3125,6,100,1728,20736,100000,46656,7,144,3375,65536,759375,2985984,823543,8,196,5832,160000,... |
libsrc/_DEVELOPMENT/libgen/c/sdcc/glob_fat.asm | jpoikela/z88dk | 640 | 177144 | ; unsigned char glob_fat(const char *s, const char *pattern)
SECTION code_string
PUBLIC _glob_fat
EXTERN l0_glob_fat_callee
_glob_fat:
pop af
pop hl
pop de
push de
push hl
push af
jp l0_glob_fat_callee
|
app/prelude1/trashcan/player-3.asm | ern0/549notes | 2 | 240158 | ;-----------------------------------------------------------------------
; Prelude1 - PC-DOS 256-byte intro by ern0 & TomCat
; Prototype-2: raw-diff-5 nctab nutab
;
; Target: 80386 real mode, assembler: FASM
;
;-----------------------------------------------------------------------
; Register allocation:
;
; AL -... |
ROM_00.asm | neilbaldwin/Pulsar | 11 | 241359 | .feature force_range
.include "pulsar.h"
.include "common.h"
.segment "HEADER"
.byte "NES",$1a ; iNES identifier
.byte $08 ; Number of PRG-ROM blocks
.byte $00 ; Number of CHR-ROM blocks
.IF SRAM_MAP=32
.BYTE %00010010, %00001000
.BYTE $00
;.BYTE $01,$92
.BYTE $00,$92
.BYTE $07,$00,$00,$00,$00
.EL... |
projects/batfish/src/main/antlr4/org/batfish/grammar/juniper/JuniperParser.g4 | jeffkala/batfish | 0 | 3192 | parser grammar JuniperParser;
options {
superClass = 'org.batfish.grammar.BatfishParser';
tokenVocab = JuniperLexer;
}
braced_clause
:
OPEN_BRACE statement*
;
bracketed_clause
:
OPEN_BRACKET word+
;
juniper_configuration
:
statement+ MULTILINE_COMMENT? EOF
;
statement
:
flat_statement
| hierarchical_... |
Library/Kernel/Win/winState.asm | steakknife/pcgeos | 504 | 81398 | <filename>Library/Kernel/Win/winState.asm
COMMENT @----------------------------------------------------------------------
Copyright (c) GeoWorks 1988 -- All Rights Reserved
PROJECT: PC GEOS
MODULE: Win
FILE: winState.asm
ROUTINES:
Name Description
---- -----------
GLB WinSetInfo Set some pie... |
Transynther/x86/_processed/AVXALIGN/_st_/i9-9900K_12_0xa0_notsx.log_21829_115.asm | ljhsiun2/medusa | 9 | 85935 | <reponame>ljhsiun2/medusa
.global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r9
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_D_ht+0x1c36c, %rsi
lea addresses_normal_ht+0xf5fc, %rdi
nop
nop
cmp $33402, %r15
mov $102, %rcx
rep movsq
nop
nop
add %rbx, %rbx
lea addresses_D_ht+0x12754,... |
alloy4fun_models/trashltl/models/11/nh5DQR6aJd6LpryQD.als | Kaixi26/org.alloytools.alloy | 0 | 229 | open main
pred idnh5DQR6aJd6LpryQD_prop12 {
all f:File-Protected | eventually always f in Trash
}
pred __repair { idnh5DQR6aJd6LpryQD_prop12 }
check __repair { idnh5DQR6aJd6LpryQD_prop12 <=> prop12o } |
oeis/269/A269790.asm | neoneye/loda-programs | 11 | 8288 | <filename>oeis/269/A269790.asm<gh_stars>10-100
; A269790: Primes p such that 2*p + 79 is a square.
; Submitted by <NAME>
; 73,181,2341,4861,6121,9901,12601,18973,20161,26641,47701,51481,59473,61561,68041,79561,81973,84421,94573,110881,157321,185401,192781,207973,231841,244261,248473,270073,292573,335341,365473,440821,4... |
src/asf-components-utils-scripts.adb | jquorning/ada-asf | 12 | 16300 | <reponame>jquorning/ada-asf<filename>src/asf-components-utils-scripts.adb
-----------------------------------------------------------------------
-- components-utils-scripts -- Javascript queue
-- Copyright (C) 2011, 2012, 2015 <NAME>
-- Written by <NAME> (<EMAIL>)
--
-- Licensed under the Apache License, Vers... |
programs/oeis/288/A288601.asm | jmorken/loda | 1 | 2639 | <filename>programs/oeis/288/A288601.asm<gh_stars>1-10
; A288601: Positions of 0 in A288600; complement of A288602.
; 1,3,4,6,8,9,12,13,15,18,19,21,23,24,28,29,31,33,34,37,38,40,44,45,47,49,50,53,54,56,59,60,62,64,65,70,71,73,75,76,79,80,82,85,86,88,90,91,95,96,98,100,101,104,105,107,112,113,115,117,118,121,122,124,127,... |
src/PJ/rastlib/byulccmp.asm | AnimatorPro/Animator-Pro | 119 | 20136 |
CGROUP group code
code segment dword 'CODE'
assume cs:CGROUP,ds:CGROUP
;pj_unlccomp decodes a FLI_LC chunk of a flic frame. This is the main
;'delta' type chunk. It contains information to transform one frame
;into the next frame where hopefully the next frame is mostly the same
;as the one frame. T... |
prototyping/Luau/RuntimeError/ToString.agda | TheGreatSageEqualToHeaven/luau | 1 | 8706 | <reponame>TheGreatSageEqualToHeaven/luau
{-# OPTIONS --rewriting #-}
module Luau.RuntimeError.ToString where
open import Agda.Builtin.Float using (primShowFloat)
open import FFI.Data.String using (String; _++_)
open import Luau.RuntimeError using (RuntimeErrorᴮ; RuntimeErrorᴱ; local; return; FunctionMismatch; BinOpMi... |
3-mid/opengl/source/lean/light/opengl-light.ads | charlie5/lace-alire | 1 | 18200 | with
openGL.Palette;
package openGL.Light
--
-- Models a light.
--
is
type Item is tagged private;
type Items is array (Positive range <>) of Item;
--------------
--- Attributes
--
type Id_t is new Natural;
type Kind_t is (Diffuse, Direct);
null_Id : constant Id_t;
function Id... |
ground-decidable.agda | hazelgrove/hazelnut-dynamics-agda | 16 | 3214 | <reponame>hazelgrove/hazelnut-dynamics-agda
open import Prelude
open import core
module ground-decidable where
ground-decidable : (τ : htyp) → (τ ground) + ((τ ground) → ⊥)
ground-decidable b = Inl GBase
ground-decidable ⦇-⦈ = Inr (λ ())
ground-decidable (b ==> b) = Inr (λ ())
ground-decidable (b ==> ⦇-⦈) = ... |
test/interaction/Issue1950.agda | cruhland/agda | 1,989 | 10140 | -- Andreas, 2016-05-03 issue #1950
-- testcases from issue #679
-- {-# OPTIONS --show-implicit #-}
-- {-# OPTIONS -v reify.display:100 #-}
-- {-# OPTIONS -v tc.display.top:100 #-}
postulate anything : ∀{A : Set} → A
postulate Anything : ∀{A : Set1} → A
record ⊤ : Set where
data ty : Set where
♭ : ty
_`→_ : ty →... |
source/nodes/program-nodes-type_conversions.adb | reznikmm/gela | 0 | 27229 | <gh_stars>0
-- SPDX-FileCopyrightText: 2019 <NAME> <<EMAIL>>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
package body Program.Nodes.Type_Conversions is
function Create
(Subtype_Mark : not null Program.Elements.Expressions
.Expression_Access... |
src/shared/generic/lsc-internal-aes.ads | Componolit/libsparkcrypto | 30 | 26955 | <filename>src/shared/generic/lsc-internal-aes.ads
-------------------------------------------------------------------------------
-- This file is part of libsparkcrypto.
--
-- Copyright (C) 2010, <NAME>
-- Copyright (C) 2010, secunet Security Networks AG
-- All rights reserved.
--
-- Redistribution and use in sourc... |
Exercise_4/partA.asm | dekoperez/SEL0433_microprocessorAplications | 0 | 28383 | <reponame>dekoperez/SEL0433_microprocessorAplications
;*******************************************************************************
; @INSTITUTION
; University of Sao Paulo | Sao Carlos School of Engineering | SEL
;------------------------------------------------------------------------------
; @DISCIPLINE
; Name:... |
tests/ada/test_queue.adb | jwhitham/x86determiniser | 7 | 3341 | <reponame>jwhitham/x86determiniser
with Ada . Text_IO ;
with Ada . Integer_Text_IO ;
with Ada . Float_Text_IO ;
with Binary_Heap ;
with Measure_Time ;
use Ada . Text_IO ;
use Ada . Integer_Text_IO ;
use Ada . Float_Text_IO ;
with Ada.Numerics.Discrete_Random ;
procedure test_queue is
arr_size : constant Natural ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.