代码搜索:Multiplication
找到约 1,176 项符合「Multiplication」的源代码
代码结果 1,176
www.eeworm.com/read/288816/4004373
c multiply.c
#include "emul.h"
// Perform long multiplication of x by y.
extern MIPS_State * mstate;
void
multiply_UInt64(UInt64 u, UInt64 v)
{
UInt64 u0 = bits(u, 31, 0);
UInt64 u1 = bits(u, 63, 32)
www.eeworm.com/read/448675/1685351
c multiply.c
#include "emul.h"
// Perform long multiplication of x by y.
extern MIPS_State * mstate;
void
multiply_UInt64(UInt64 u, UInt64 v)
{
UInt64 u0 = bits(u, 31, 0);
UInt64 u1 = bits(u, 63, 32)
www.eeworm.com/read/365273/2897846
c multiply.c
#include "emul.h"
// Perform long multiplication of x by y.
extern MIPS_State * mstate;
void
multiply_UInt64(UInt64 u, UInt64 v)
{
UInt64 u0 = bits(u, 31, 0);
UInt64 u1 = bits(u, 63, 32)
www.eeworm.com/read/264113/4289222
c multiply.c
#include "emul.h"
// Perform long multiplication of x by y.
extern MIPS_State * mstate;
void
multiply_UInt64(UInt64 u, UInt64 v)
{
UInt64 u0 = bits(u, 31, 0);
UInt64 u1 = bits(u, 63, 32)
www.eeworm.com/read/237118/4631827
h turingmultab.h
/* @(#)TuringMultab.h 1.3 (QUALCOMM) 02/09/03 */
/* Multiplication table for Turing using 0xD02B4367 */
unsigned long Multab[256] = {
0x00000000, 0xD02B4367, 0xED5686CE, 0x3D7DC5A9,
0x97AC41D1
www.eeworm.com/read/305575/13765655
m vectmult.m
function[v1,v2]=vectmult(i1,i2,i3,i4)
%VECTMULT Matrix multiplication for arrays of two-vectors.
%
% [Y1,Y2]=VECTMULT(M,X1,X2) where MAT is a 2x2 matrix and X1 and X2
% are length K column vecto