HomeSort by: relevance | last modified time | path
    Searched defs:zero (Results 1 - 25 of 296) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/atari/stand/tostools/libtos/
bsdstart.S 89 0: lea %pc@(zero),%a3
115 zero: .long 0 label
bsdstart.S 89 0: lea %pc@(zero),%a3
115 zero: .long 0 label
  /src/tests/usr.bin/xlint/lint1/
msg_037.c 4 // Test for message: zero size bit-field [37]
7 /* expect+1: error: zero size bit-field [37] */
8 unsigned int zero: 0; member in struct:example
msg_139.c 15 zero = 0 enumerator in enum:example::__anonfa9981480103
19 sink_int(i / zero); /* only triggers in constant expressions */
25 sink_int(13 / zero);
msg_037.c 4 // Test for message: zero size bit-field [37]
7 /* expect+1: error: zero size bit-field [37] */
8 unsigned int zero: 0; member in struct:example
msg_139.c 15 zero = 0 enumerator in enum:example::__anonfa9981480103
19 sink_int(i / zero); /* only triggers in constant expressions */
25 sink_int(13 / zero);
  /src/lib/libm/src/
e_atanhf.c 26 static const float zero = 0.0; variable in typeref:typename:const float
38 return x/zero;
39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainderf.c 24 static const float zero = 0.0; variable in typeref:typename:const float
48 if ((hx-hp)==0) return zero*x;
k_standard.c 31 static const double zero = 0.0; /* used as const */ variable in typeref:typename:const double
105 exc.retval = zero;
107 exc.retval = zero/zero;
121 exc.retval = zero;
123 exc.retval = zero/zero;
139 exc.retval = zero;
141 exc.retval = copysign(signbit(y) ? M_PI : zero, x);
199 exc.retval = zero;
    [all...]
s_truncl.c 48 static const float zero[] = { 0.0, -0.0 }; variable in typeref:typename:const float[]
59 ux.extu_ld = zero[ux.extu_sign];
e_atanhl.c 52 static const double zero = 0.0; variable in typeref:typename:const double
64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
e_atanhf.c 26 static const float zero = 0.0; variable in typeref:typename:const float
38 return x/zero;
39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainderf.c 24 static const float zero = 0.0; variable in typeref:typename:const float
48 if ((hx-hp)==0) return zero*x;
k_standard.c 31 static const double zero = 0.0; /* used as const */ variable in typeref:typename:const double
105 exc.retval = zero;
107 exc.retval = zero/zero;
121 exc.retval = zero;
123 exc.retval = zero/zero;
139 exc.retval = zero;
141 exc.retval = copysign(signbit(y) ? M_PI : zero, x);
199 exc.retval = zero;
    [all...]
s_truncl.c 48 static const float zero[] = { 0.0, -0.0 }; variable in typeref:typename:const float[]
59 ux.extu_ld = zero[ux.extu_sign];
e_atanhl.c 52 static const double zero = 0.0; variable in typeref:typename:const double
64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
e_atanh.c 41 static const double zero = 0.0; variable in typeref:typename:const double
54 return x/zero;
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainder.c 30 static const double zero = 0.0; variable in typeref:typename:const double
55 if (((hx-hp)|(lx-lp))==0) return zero*x;
s_rintl.c 54 static const float zero[2] = { 0.0, -0.0 }; variable in typeref:typename:const float[2]
89 return (zero[sign]);
e_atanh.c 41 static const double zero = 0.0; variable in typeref:typename:const double
54 return x/zero;
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainder.c 30 static const double zero = 0.0; variable in typeref:typename:const double
55 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /src/sys/external/isc/libsodium/dist/test/default/
core1.c 11 static unsigned char zero[32]; variable in typeref:typename:unsigned char[32]
23 crypto_core_hsalsa20(firstkey, zero, shared, c);
core1.c 11 static unsigned char zero[32]; variable in typeref:typename:unsigned char[32]
23 crypto_core_hsalsa20(firstkey, zero, shared, c);
  /src/tests/lib/libc/gen/
t_getentropy.c 42 static uint8_t zero[sizeof(buf)]; variable in typeref:typename:uint8_t[]
58 ATF_CHECK(memcmp(buf, zero, sizeof(buf)) == 0);
74 ATF_CHECK(memcmp(buf + 1, zero, 32) != 0);
75 ATF_CHECK(memcmp(buf + 1 + 32, zero, sizeof(buf) - 1 - 32) == 0);
91 ATF_CHECK(memcmp(buf + 1, zero, 256) != 0);
92 ATF_CHECK(memcmp(buf + 1 + 256, zero, sizeof(buf) - 1 - 256) == 0);
106 ATF_CHECK(memcmp(buf, zero, sizeof(buf)) == 0);
158 ATF_CHECK(memcmp(p + pagesize - 25, zero, 25) != 0);
171 ATF_CHECK(memcmp(p + pagesize - 25, zero, 25) != 0);
t_getentropy.c 42 static uint8_t zero[sizeof(buf)]; variable in typeref:typename:uint8_t[]
58 ATF_CHECK(memcmp(buf, zero, sizeof(buf)) == 0);
74 ATF_CHECK(memcmp(buf + 1, zero, 32) != 0);
75 ATF_CHECK(memcmp(buf + 1 + 32, zero, sizeof(buf) - 1 - 32) == 0);
91 ATF_CHECK(memcmp(buf + 1, zero, 256) != 0);
92 ATF_CHECK(memcmp(buf + 1 + 256, zero, sizeof(buf) - 1 - 256) == 0);
106 ATF_CHECK(memcmp(buf, zero, sizeof(buf)) == 0);
158 ATF_CHECK(memcmp(p + pagesize - 25, zero, 25) != 0);
171 ATF_CHECK(memcmp(p + pagesize - 25, zero, 25) != 0);

Completed in 79 milliseconds

1 2 3 4 5 6 7 8 91011>>