Symbol: NE
bin/expr/expr.c
198
token = NE;
bin/expr/expr.c
383
while ((op = token) == EQ || op == NE || op == LT || op == GT ||
bin/expr/expr.c
405
case NE:
bin/expr/expr.c
431
case NE:
lib/libkeynote/keynote.y
338
| numex NE numex { $$ = $1 != $3; }
lib/libkeynote/keynote.y
36
%nonassoc EQ NE LT GT LE GE REGEXP
lib/libkeynote/keynote.y
429
| str NE str {
regress/lib/libc/cephes/econst.c
101
unsigned short eeul[NE] = {
regress/lib/libc/cephes/econst.c
25
#if NE == 10
regress/lib/libc/cephes/econst.c
27
unsigned short ezero[NE] =
regress/lib/libc/cephes/econst.c
32
unsigned short ehalf[NE] =
regress/lib/libc/cephes/econst.c
37
unsigned short eone[NE] =
regress/lib/libc/cephes/econst.c
42
unsigned short etwo[NE] =
regress/lib/libc/cephes/econst.c
47
unsigned short e32[NE] =
regress/lib/libc/cephes/econst.c
52
unsigned short elog2[NE] =
regress/lib/libc/cephes/econst.c
57
unsigned short esqrt2[NE] =
regress/lib/libc/cephes/econst.c
62
unsigned short epi[NE] =
regress/lib/libc/cephes/econst.c
67
unsigned short eeul[NE] = {
regress/lib/libc/cephes/econst.c
73
unsigned short ezero[NE] = {
regress/lib/libc/cephes/econst.c
76
unsigned short ehalf[NE] = {
regress/lib/libc/cephes/econst.c
79
unsigned short eone[NE] = {
regress/lib/libc/cephes/econst.c
82
unsigned short etwo[NE] = {
regress/lib/libc/cephes/econst.c
85
unsigned short e32[NE] = {
regress/lib/libc/cephes/econst.c
88
unsigned short elog2[NE] = {
regress/lib/libc/cephes/econst.c
91
unsigned short esqrt2[NE] = {
regress/lib/libc/cephes/econst.c
95
unsigned short eoneopi[NE] = {
regress/lib/libc/cephes/econst.c
98
unsigned short epi[NE] = {
regress/lib/libc/cephes/eexp.c
29
unsigned short num[NE], den[NE], x2[NE];
regress/lib/libc/cephes/eexp.c
46
expchk = x2[NE-1];
regress/lib/libc/cephes/eexp.c
48
x2[NE-1] &= 0x7fff;
regress/lib/libc/cephes/ehead.h
26
#define NI (NE+3)
regress/lib/libc/cephes/elog.c
31
unsigned short xx[NE], z[NE], a[NE], b[NE], t[NE], qj[NE];
regress/lib/libc/cephes/elog.c
36
if( x[NE-1] & (unsigned short )0x8000 )
regress/lib/libc/cephes/elog.c
65
esqrt2[NE-1] -= 1;
regress/lib/libc/cephes/elog.c
71
esqrt2[NE-1] += 1;
regress/lib/libc/cephes/elog.c
74
if( a[NE-1] == 0 )
regress/lib/libc/cephes/elog.c
94
while( ((b[NE-1] & 0x7fff) - (t[NE-1] & 0x7fff)) < NBITS );
regress/lib/libc/cephes/epow.c
110
signx = w[NE-1] & (unsigned short )0x8000;
regress/lib/libc/cephes/epow.c
111
w[NE-1] &= (unsigned short )0x7fff;
regress/lib/libc/cephes/epow.c
32
unsigned short w[NE];
regress/lib/libc/cephes/epow.c
64
unsigned short w[NE];
regress/lib/libc/cephes/epow.c
84
if( (x[NE-1] & (unsigned short )0x7fff) == 0 )
regress/lib/libc/cephes/etanh.c
32
unsigned short e[NE], r[NE], j[NE], xx[NE], m2[NE];
regress/lib/libc/cephes/etanh.c
37
r[NE-1] &= (unsigned short )0x7fff;
regress/lib/libc/cephes/ieee.c
1612
*(c+(NE-1)) |= 0x8000;
regress/lib/libc/cephes/ieee.c
1614
*(c+(NE-1)) &= ~0x8000;
regress/lib/libc/cephes/ieee.c
1708
*(c+(NE-1)) |= 0x8000;
regress/lib/libc/cephes/ieee.c
1710
*(c+(NE-1)) &= ~0x8000;
regress/lib/libc/cephes/ieee.c
1818
for( i=0; i<NE-5; i++ )
regress/lib/libc/cephes/ieee.c
1829
p = &yy[0] + (NE-1);
regress/lib/libc/cephes/ieee.c
1839
if((yy[NE-1] & 0x7fff) == 0 && (yy[NE-2] & 0x8000) == 0)
regress/lib/libc/cephes/ieee.c
1850
p = &yy[NE-1];
regress/lib/libc/cephes/ieee.c
1892
for( i=0; i<NE; i++ )
regress/lib/libc/cephes/ieee.c
206
for( i=0; i<NE; i++ )
regress/lib/libc/cephes/ieee.c
222
for( i=0; i<NE; i++ )
regress/lib/libc/cephes/ieee.c
238
x[NE-1] &= 0x7fff; /* sign is top bit of last word of external format */
regress/lib/libc/cephes/ieee.c
259
x[NE-1] ^= 0x8000; /* Toggle the sign bit */
regress/lib/libc/cephes/ieee.c
275
if( x[NE-1] & 0x8000 )
regress/lib/libc/cephes/ieee.c
289
if( (x[NE-1] & 0x7fff) == 0x7fff )
regress/lib/libc/cephes/ieee.c
2973
#if NE == 10
regress/lib/libc/cephes/ieee.c
2974
static unsigned short etens[NTEN + 1][NE] =
regress/lib/libc/cephes/ieee.c
3004
static unsigned short emtens[NTEN + 1][NE] =
regress/lib/libc/cephes/ieee.c
3034
static unsigned short etens[NTEN+1][NE] = {
regress/lib/libc/cephes/ieee.c
3050
static unsigned short emtens[NTEN+1][NE] = {
regress/lib/libc/cephes/ieee.c
310
if( (x[NE-1] & 0x7fff) != 0x7fff )
regress/lib/libc/cephes/ieee.c
313
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieee.c
3137
if( y[NE-1] & 0x8000 )
regress/lib/libc/cephes/ieee.c
3140
y[NE-1] &= 0x7fff;
regress/lib/libc/cephes/ieee.c
3150
if( y[NE-1] == 0 )
regress/lib/libc/cephes/ieee.c
3152
for( k=0; k<NE-1; k++ )
regress/lib/libc/cephes/ieee.c
3163
if( y[NE-1] == 0x7fff )
regress/lib/libc/cephes/ieee.c
3175
if( (y[NE-1] != 0) && ((y[NE-2] & 0x8000) == 0) )
regress/lib/libc/cephes/ieee.c
3191
u[NE-1] = EXONE + NBITS - 1;
regress/lib/libc/cephes/ieee.c
3199
for( j=0; j<NE-1; j++ )
regress/lib/libc/cephes/ieee.c
3207
p += NE;
regress/lib/libc/cephes/ieee.c
3213
u[NE-1] += y[NE-1] - (unsigned int )(EXONE + NBITS - 1);
regress/lib/libc/cephes/ieee.c
3230
p += NE;
regress/lib/libc/cephes/ieee.c
3236
if( y[NE-1] == 0 )
regress/lib/libc/cephes/ieee.c
3238
while( (y[NE-2] & 0x8000) == 0 )
regress/lib/libc/cephes/ieee.c
3264
if( eone[NE-1] <= u[1] )
regress/lib/libc/cephes/ieee.c
3287
p += NE;
regress/lib/libc/cephes/ieee.c
3288
r += NE;
regress/lib/libc/cephes/ieee.c
337
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieee.c
341
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieee.c
3714
p -= NE;
regress/lib/libc/cephes/ieee.c
381
p = a + (NE-1); /* point to last word of external number */
regress/lib/libc/cephes/ieee.c
3810
unsigned short f[NE];
regress/lib/libc/cephes/ieee.c
3813
expon = (int )f[NE-1];
regress/lib/libc/cephes/ieee.c
3839
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieee.c
4019
for( i=0; i<NE-2; i++ )
regress/lib/libc/cephes/ieee.c
410
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieee.c
4114
if( j < NE )
regress/lib/libc/cephes/ieee.c
427
q = b + (NE-1); /* point to output exponent */
regress/lib/libc/cephes/ieee.c
451
for( i=0; i<NE-1; i++ )
regress/lib/libc/cephes/ieetst.c
461
pvec( print, NE );
regress/lib/libc/cephes/ieetst.c
463
pvec( scan, NE );
regress/lib/libc/cephes/ieetst.c
480
pvec( tst, NE );
regress/lib/libc/cephes/ieetst.c
482
pvec( ref, NE );
regress/lib/libc/cephes/ieetst.c
499
pvec( ref, NE );
regress/lib/libc/cephes/ieetst.c
502
pvec( tst, NE );
regress/lib/libc/cephes/ieetst.c
51
static unsigned short fullp[NE], rounded[NE];
regress/lib/libc/cephes/ieetst.c
529
unsigned short e[NE];
regress/lib/libc/cephes/ieetst.c
546
unsigned short er[NE];
regress/lib/libc/cephes/ieetst.c
58
static unsigned short rprint[NE], rscan[NE];
regress/lib/libc/cephes/ieetst.c
59
static unsigned short q1[NE], q2[NE], q5[NE];
regress/lib/libc/cephes/ieetst.c
593
unsigned short t[NE], u[NE], v[NE];
regress/lib/libc/cephes/ieetst.c
60
static unsigned short e1[NE], e2[NE], e3[NE];
regress/lib/libc/cephes/ieetst.c
68
static unsigned short eten[NE], maxm[NE];
regress/lib/libc/cephes/ieetst.c
768
static unsigned short LOW[ NE ], WIDTH[NE], e27[NE], e10m13[NE];
regress/lib/libc/cephes/ieetst.c
774
unsigned short ea[NE], em[NE], en[NE], ex[NE];
regress/lib/libc/cephes/ieetst.c
838
unsigned short ea[NE], ex[NE];
sbin/pfctl/parse.y
4278
| NE { $$ = PF_OP_NE; }
sbin/pfctl/parse.y
546
%token DIVERTTO DIVERTREPLY DIVERTPACKET NATTO AFTO RDRTO RECEIVEDON NE LE GE
sbin/pfctl/parse.y
5822
return (NE);
usr.bin/awk/awkgram.y
235
| pattern NE pattern { $$ = op2($2, $1, $3); }
usr.bin/awk/awkgram.y
499
case LE: case LT: case EQ: case NE: case GT: case GE:
usr.bin/awk/awkgram.y
503
return op2(NE, n, nullnode);
usr.bin/awk/awkgram.y
55
%token <i> AND BOR APPEND EQ GE GT LE LT NE IN
usr.bin/awk/awkgram.y
83
%nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|'
usr.bin/awk/lex.c
255
input(); yylval.i = NE; RET(NE);
usr.bin/awk/maketab.c
47
{ NE, "relop", " != " },
usr.bin/awk/run.c
896
if ((x_is_nan || y_is_nan) && n != NE)
usr.bin/awk/run.c
910
case NE: if (x_is_nan && y_is_nan) return(True);
usr.bin/m4/parser.y
32
%left EQ NE
usr.bin/m4/parser.y
69
| expr NE expr { $$ = $1 != $3; }
usr.sbin/bgpd/parse.y
268
%token NE LE GE XRANGE LONGER MAXLEN MAX
usr.sbin/bgpd/parse.y
3503
| NE { $$ = OP_NE; }
usr.sbin/bgpd/parse.y
3511
| NE { $$ = OP_NE; }
usr.sbin/bgpd/parse.y
3915
return (NE);
usr.sbin/hostapd/parse.y
1142
| NE
usr.sbin/hostapd/parse.y
1543
return (NE);
usr.sbin/hostapd/parse.y
161
%token HOPPER DELAY NE LE GE ARROW