Searched refs:zero (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.relenum.d40 zero,
52 /zero >= one || second <= first || zero == second/
55 printf("zero = %d; one = %d; two = %d", zero, one, two);
64 printf("zero = %d; one = %d; two = %d", zero, one, two);
70 /first < two && second > one && one != two && zero != first/
H A Dtst.enum.d39 zero,
/freebsd-10.0-release/lib/libc/mips/string/
H A Dffs.S50 move v0, zero
51 beq a0, zero, done
56 beq v1, zero, 1b # no, continue
H A Dstrcmp.S54 beq t0, zero, LessOrEq # end of first string?
59 beq t0, zero, LessOrEq # end of first string?
66 subu v0, zero, t1
H A Dbzero.S58 PTR_SUBU a3, zero, a0 # compute # bytes to word align address
60 beq a3, zero, 1f # skip if word aligned
62 REG_SHI zero, 0(a0) # clear 1, 2, or 3 bytes to align
72 REG_S zero, -SZREG(a0) # since we are limited by memory speed
74 ble a1, zero, 2f
79 sb zero, -1(a0)
H A Dstrchr.S52 bne a2, zero, 1b
54 move v0, zero
H A Dstrrchr.S48 move v0, zero # default if not found
55 bne a3, zero, 1b # continue if not end
/freebsd-10.0-release/sys/modules/geom/geom_zero/
H A DMakefile3 .PATH: ${.CURDIR}/../../../geom/zero
/freebsd-10.0-release/lib/libc/mips/sys/
H A DOvfork.S57 beq a3, zero, 1f # jump if no errors
60 beq v1, zero, 2f # parent process ?
61 move v0, zero # return zero in child
H A Dfork.S50 bne a3, zero, 2f
51 beq v1, zero, 1f # v1 == 0 in parent, 1 in child
52 move v0, zero
H A Dexect.S47 bne a3, zero, 1f
H A Dpipe.S50 bne a3, zero, 1f
53 move v0, zero
/freebsd-10.0-release/tools/regression/usr.bin/printf/
H A Dregress.sh18 REGRESSION_TEST('zero', `printf "%u%u\n" 15')
19 REGRESSION_TEST('zero', `printf "%d%d\n" 15')
20 REGRESSION_TEST('zero', `printf "%d%u\n" 15')
21 REGRESSION_TEST('zero', `printf "%u%d\n" 15')
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dchunk_mmap.h14 void *chunk_alloc_mmap(size_t size, size_t alignment, bool *zero);
H A Dhuge.h20 void *huge_malloc(size_t size, bool zero);
21 void *huge_palloc(size_t size, size_t alignment, bool zero);
25 size_t alignment, bool zero, bool try_tcache_dalloc);
H A Dchunk_dss.h26 void *chunk_alloc_dss(size_t size, size_t alignment, bool *zero);
/freebsd-10.0-release/tools/regression/tls/ttls3/
H A Delftls.S41 .zero 4
48 .zero 4
55 .zero 4
62 .zero 4
69 .zero 4
76 .zero 4
83 .zero 4
90 .zero 4
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dprintdstl_live.c24 ipf_dstnode_t *entry, *zero; local
35 zero = calloc(1, sizeof(*zero) + 64);
36 if (zero == NULL) {
68 if (bcmp((char *)zero, (char *)entry, sizeof(*zero)) == 0)
76 free(zero);
H A Dprinthash_live.c20 iphtent_t entry, zero; local
51 bzero((char *)&zero, sizeof(zero));
56 if (bcmp(&zero, &entry, sizeof(zero)) == 0)
/freebsd-10.0-release/lib/libc/mips/gen/
H A Dldexp.S72 beq t1, zero, 1f # zero or denormalized number?
77 ble t1, zero, 4f # underflow?
85 bne t2, zero, 1f
86 beq t3, zero, 9f # result is zero
89 * Find out how many leading zero bits are in t2,t3 and put in t9.
92 move t9, zero
93 bne t2, zero, 1f
98 bne ta0, zero,
[all...]
/freebsd-10.0-release/lib/msun/src/
H A Ds_modfl.c55 static const long double zero[] = { 0.0L, -0.0L }; variable
67 *iptr = zero[ux.bits.sign];
73 return (zero[ux.bits.sign]);
87 return (zero[ux.bits.sign]);
92 return (zero[ux.bits.sign]);
H A De_atanh.c42 static const double zero = 0.0; variable
55 return x/zero;
56 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhf.c24 static const float zero = 0.0; variable
36 return x/zero;
37 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhl.c52 static const double zero = 0.0; variable
64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
/freebsd-10.0-release/sys/mips/mips/
H A Dfp.S647 bne t2, zero, result_fs_s # if FS is NAN, result is FS
648 bne ta2, zero, result_ft_s # if FT is NAN, result is FT
653 bne t1, zero, 4f # is FS a denormalized num?
654 beq t2, zero, 3f # is FS zero?
655 bne ta1, zero, 2f # is FT a denormalized num?
656 beq ta2, zero, result_fs_s # FT is zero, result=FS
666 bne ta1, zero, result_ft_s # if FT != 0, result=FT
667 bne ta2, zero, result_ft_
[all...]

Completed in 605 milliseconds

1234567891011>>