代码搜索:arithmetic
找到约 7,844 项符合「arithmetic」的源代码
代码结果 7,844
www.eeworm.com/read/309344/13673870
1 word.1
.PU
.TH word 1 local
.SH NAME
word \- data compression using arithmetic coding
.SH SYNOPSIS
.ll +8
.B word
[\fB\-e\fR]
[\fB\-d\fR]
[\fB\-v\fR]
[\fB\-m\fR \fImbytes\fP]
[\fB\-f\fR \fIfbi
www.eeworm.com/read/339038/12266786
c i5r.c
/* i5R.c */
/* programs for doing arithmetic with MPR's. */
#include
#include
#include
#include "integer.h"
#include "fun.h"
#ifdef DEBUG
extern long int ne
www.eeworm.com/read/214429/15100393
h center.h
#include
#include "types.h"
#include "arithmetic.h"
/*宏定义*/
//指令功能类别(指令功能码)定义
#define IT_NOHANDLE 0 //转发类
#define IT_MONTHREADSET 1 //月冻结设置
#define IT_TIMERREA
www.eeworm.com/read/207792/15262079
1 bits.1
.PU
.TH bits 1 local
.SH NAME
bits \- data compression using arithmetic coding
.SH SYNOPSIS
.ll +8
.B bits
[\fB\-e\fR]
[\fB\-d\fR]
[\fB\-v\fR]
[\fB\-m\fR \fImbytes\fP]
[\fB\-f\fR \fIfbi
www.eeworm.com/read/207792/15262081
1 word.1
.PU
.TH word 1 local
.SH NAME
word \- data compression using arithmetic coding
.SH SYNOPSIS
.ll +8
.B word
[\fB\-e\fR]
[\fB\-d\fR]
[\fB\-v\fR]
[\fB\-m\fR \fImbytes\fP]
[\fB\-f\fR \fIfbi
www.eeworm.com/read/16793/691385
tests appendop.tests
# basic cases
a=1
a+=4
echo $a
x=(1 2 3)
x+=(4 5 6)
echo ${x[@]}
x[4]+=1
echo ${x[@]}
# trickier cases
a+=5 printenv a
echo $a
# if the integer flag is set, ksh93 appears to do arithmetic += and
www.eeworm.com/read/233448/4685494
c 20040703-1.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dom2" } */
float foo(float x)
{
x += 1;
x -= 1;
return x;
}
/* We should *not* fold the arithmetic. */
/* { dg-final { scan-tree-dump-
www.eeworm.com/read/209211/4985589
s mpdigdiv.s
/*
* This only works on R[45]000 chips that allow 64 bit
* integer arithmetic even when uding 32 bit addresses
*
* R1 = dividend*
* R2 = dividend[low]
* R3 = dividend[high]
* R4 = 32 bit divi
www.eeworm.com/read/186672/5230383
s wm_sqrt.s
.file "wm_sqrt.S"
/*
* wm_sqrt.S
*
* Fixed point arithmetic square root evaluation.
*
* Call from C as:
* void wm_sqrt(FPU_REG *n, unsigned int control_word)
*
*
* Copyright (C) 1992,1993
www.eeworm.com/read/419049/2081152
java ishr.java
package de.fub.bytecode.generic;
/**
* ISHR - Arithmetic shift right int
* Stack: ..., value1, value2 -> ..., result
*
* @version $Id: ISHR.java,v 1.5 2001/05/09 09:26:57 dahm Exp $