代码搜索:arithmetic

找到约 7,844 项符合「arithmetic」的源代码

代码结果 7,844
www.eeworm.com/read/482138/6628436

c arithmetic.c

#include "BaseInc.h" #include "math.h" /*========================================================// 函数:PIDInit 功能:PID参数初始化 作者: 参数: 返回值:
www.eeworm.com/read/482138/6628438

h arithmetic.h

#ifndef _ARITHMETIC_H_ #define _ARITHMETIC_H_ typedef struct{ float Kp; // 比例常数 Proportional Const float Ki; // 积分常数 Integral Const float Kd; // 微分常数 Derivative Const float Un_1; // U
www.eeworm.com/read/479507/6688073

h arithmetic.h

#ifndef ARITHMETIC_H #define ARITHMETIC_H class Arithmetic { public: static int ChessPlace(int x, int y); static bool LimitArea(int x, int y); static void AdjustDraw(int x, int y, int &d
www.eeworm.com/read/479507/6688077

cpp arithmetic.cpp

#include "arithmetic.h" int Arithmetic::ChessPlace(int x, int y) //根据鼠标点击位置算棋子在数组中的位置 { //+0.5四省五入 int n = (x - 30.0) / 35 + 0.5; //30边距;35行距;+0.5四省五入 int m = (y - 30.0) / 35 + 0.5;
www.eeworm.com/read/403014/11523810

cpp arithmetic.cpp

//: C10:Arithmetic.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #include "NamespaceInt.h" void
www.eeworm.com/read/402476/11534306

v arithmetic.v

module arithmetic(op, clock,result,overflow,zero,pn); //运算器模块,输入为一个32位的机器指令和时钟,输出为运算结果和标志位 input clock;//时钟 input [31:0] op;//32位的机器指令 output [31:0] result;//32位的结果 output overflow,zero,pn;//标志位,依次为溢出
www.eeworm.com/read/259220/11814719

cpp arithmetic.cpp

//: C10:Arithmetic.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #include "NamespaceInt.h" void
www.eeworm.com/read/342073/12043600

c arithmetic.c

#include "spiht.h" #include "spihtdecode.h" static int QccENTArithmeticModelInitialize(QccENTArithmeticModel *model) { if (model == NULL) return(0); model->num_contexts = 0; model
www.eeworm.com/read/337687/12349634

h arithmetic.h

/* * * arithmetic.h * * Copyright (c) 2001, 2002 * Andrew Fedoniouk - andrew@terra-informatica.org * Portions: Serge Kuznetsov - kuznetsov@deeptown.org * * See the file "COPYING" for informati
www.eeworm.com/read/231698/14223041

h arithmetic.h

#pragma once #include "global.h" DLL_INTERNAL DWORD GetHexDataByBitNum(int nBitNum, BOOL bReverse=FALSE);