代码搜索:Addition

找到约 2,224 项符合「Addition」的源代码

代码结果 2,224
www.eeworm.com/read/298155/3876104

dat asslandat65.dat

组合的十进制加法调整指令 DAA(Decimal Adjust for Addition) 格式: DAA ---- 功能: 对AL中的两个组合进制数相加的结果进行调整,调整结果仍放在AL中,进位标志放在CF中. ----
www.eeworm.com/read/279884/4132565

cmp math.cmp

Addition and subtraction : 1 + 1 = 2 2 - 1 = 1 Multiplication, division, and modulus : 5 % 2 = 1 5 % 0 = $rem2 7 % 2 = 1 5 / 2 = 2 5 / 0 = $rem4 5 * 2 = 10 5 * -1 = -5 5 * -2 = -10 5 * -2 = -10
www.eeworm.com/read/277285/10648830

makefile

# # Text Editor Makefile # # Revision 9: Addition of XmText direct clipboard interface # .c.o: cc -g -c $*.c -D_NO_PROTO OBJS = main.o menu.o misc.o alerts.o filer.o find.o saveproto.o a.out: $(OB
www.eeworm.com/read/165343/7144004

txt maketable.cc.txt

// Program: maketable.cc // Make the addition/multiplication table #include "GFNUM2m.h" main() { int g = 0x13; // 1 0011 = 1+d+d^4 GFNUM2m::initgf(4,g); // int g = 0xB; // 1011 = 1+d+d
www.eeworm.com/read/333167/12700133

o main.o

XH H 2 areas B global symbols M main.asm S _Multiplication Ref0000 S _Addition Ref0000 A text size 22 flags 0 dbfile ./main.asm dbfunc 0 ? 0 I dbline 23 0 dbline 24 3 dbline 25 6 dbline 26
www.eeworm.com/read/385178/6285172

m mk_nbrs_of_dag_topo.m

function [new_nbrs, new_ops, new_nodes, new_topos] = mk_nbrs_of_dag_topo(G0) % MK_NBRS_OF_DAG_TOPO Make all DAGs that differ from G0 by a single edge deletion, addition or reversal % [new_nbrs, new_
www.eeworm.com/read/385191/2594879

svn-base mk_nbrs_of_dag_topo.m.svn-base

function [new_nbrs, new_ops, new_nodes, new_topos] = mk_nbrs_of_dag_topo(G0) % MK_NBRS_OF_DAG_TOPO Make all DAGs that differ from G0 by a single edge deletion, addition or reversal % [new_nbrs, new_
www.eeworm.com/read/277285/10648893

makefile

# # Text Editor Makefile # # Revision 7: Addition of DELETE_WINDOW protocol # .c.o: cc -g -c $*.c -D_NO_PROTO OBJS = main.o menu.o misc.o alerts.o filer.o find.o saveproto.o a.out: $(OBJS) cc -g
www.eeworm.com/read/277285/10648936

makefile

# # Text Editor Makefile # # Revision 8: Addition of clipboard interfaces # .c.o: cc -g -c $*.c -D_NO_PROTO OBJS = main.o menu.o misc.o alerts.o clipper.o filer.o find.o saveproto.o a.out: $(OBJS)
www.eeworm.com/read/439400/7710455

tcl calculator.tcl

proc addition {nbr1 nbr2} { set sum [expr $nbr1+$nbr2]; return $sum } proc subtraction {nbr1 nbr2} { set sub [expr $nbr1-$nbr2] return $sub } proc multiplication {nbr1 nbr2} {