代码搜索:Addition

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

代码结果 2,224
www.eeworm.com/read/168845/5430012

py default_build.py

#!/usr/bin/python # Test that default build clause actually has any effect. from BoostBuild import Tester, List t = Tester() t.write("project-root.jam", "import gcc ;") t.write("Jamfile", "
www.eeworm.com/read/203088/15365563

h svm.h

#ifndef _LIBSVM_H #define _LIBSVM_H #ifdef __cplusplus extern "C" { #include "text.h" #endif struct svm_node { int index; double value; }; struct svm_problem { int l; double *y; struct svm_nod
www.eeworm.com/read/428838/8836207

asm 8-4-2.asm

;8-4-2.ASM ;2 BYTE DATA ADDITION $MOD51 ORG 0000H MOV R0,#20H MOV R1,#30H MOV A,@R0 ;A=(20H) ADD A,@R1 ;A=(20H)+(30H) MOV @R1,A ;(30H)=(20H)+(30H) INC R0 ;R0=21H INC R1 ;R1=31
www.eeworm.com/read/491760/6434103

vhd copy of k163_point_multiplication.vhd

---------------------------------------------------------------------------- -- Point multiplication in K163 (K163_point_multiplication.vhd) -- -- Uses the entities K163_addition and two classic squar
www.eeworm.com/read/262232/11598071

cpp finddlg.cpp

// FindDlg.cpp : implementation file // #include "stdafx.h" #include "vocabulory.h" #include "FindDlg.h" #include "Alert1.h" #include "Alert2.h" #ifdef _DEBUG #define new DEBUG_NEW #undef
www.eeworm.com/read/168845/5429820

py stage.py

#!/usr/bin/python # Test staging from BoostBuild import Tester t = Tester() t.write("project-root.jam", "import gcc ;") t.write( "Jamfile", """ lib a : a.cpp ; stage dist : a a.h
www.eeworm.com/read/168845/5429864

py project_test4.py

#!/usr/bin/python from BoostBuild import Tester import os from string import strip, find t = Tester(translate_suffixes=0) t.set_tree("project-test4") t.run_build_system() t.expect_a
www.eeworm.com/read/168845/5429996

py alias.py

#!/usr/bin/python from BoostBuild import Tester, List t = Tester() # Test that top-level project can affect build dir t.write("project-root.jam", "") t.write("Jamfile", """ exe a : a.cpp ;
www.eeworm.com/read/168845/5430037

py timedata.py

#!/usr/bin/python # Copyright David Abrahams 2005. Distributed under the Boost # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.
www.eeworm.com/read/162614/5530136

c string-opt-1.c

/* Ensure mempcpy is not "optimized" into memcpy followed by addition. */ /* { dg-do compile } */ /* { dg-options "-O2" } */ void * fn (char *x, char *y, int z) { return __builtin_mempcpy (x, y, z