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

1234567891011>>

/freebsd-11-stable/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-11-stable/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
/freebsd-11-stable/sys/modules/geom/geom_zero/
H A DMakefile3 .PATH: ${SRCTOP}/sys/geom/zero
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dchunk_mmap.h13 bool *zero, bool *commit);
H A Dhuge.h12 void *huge_malloc(tsdn_t *tsdn, arena_t *arena, size_t usize, bool zero);
14 size_t alignment, bool zero);
16 size_t usize_min, size_t usize_max, bool zero);
18 size_t usize, size_t alignment, bool zero, tcache_t *tcache);
/freebsd-11-stable/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 Dexect.S47 bne a3, zero, 1f
/freebsd-11-stable/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-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DPipeBase.cpp18 std::chrono::microseconds::zero());
22 return ReadWithTimeout(buf, size, std::chrono::microseconds::zero(),
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dvarshell.exp1 make: "varshell.mk" line 5: warning: "/bin/no/such/command 2> /dev/null" returned non-zero status
2 make: "varshell.mk" line 8: warning: "false" returned non-zero status
3 make: "varshell.mk" line 9: warning: "echo "output before the error"; false" returned non-zero status
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/jemalloc/src/
H A Dchunk_mmap.c7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) argument
28 *zero = true;
33 chunk_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, argument
62 return (chunk_alloc_mmap_slow(size, alignment, zero, commit));
66 *zero = true;
/freebsd-11-stable/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-11-stable/sys/mips/mips/
H A Dfp.S649 bne t2, zero, result_fs_s # if FS is NAN, result is FS
650 bne ta2, zero, result_ft_s # if FT is NAN, result is FT
655 bne t1, zero, 4f # is FS a denormalized num?
656 beq t2, zero, 3f # is FS zero?
657 bne ta1, zero, 2f # is FT a denormalized num?
658 beq ta2, zero, result_fs_s # FT is zero, result=FS
668 bne ta1, zero, result_ft_s # if FT != 0, result=FT
669 bne ta2, zero, result_ft_
[all...]
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghashp8-ppc.pl48 my ($zero,$t0,$t1,$t2,$xC2,$H,$Hh,$Hl,$lemask)=map("v$_",(4..12));
70 vxor $zero,$zero,$zero
72 vsldoi $xC2,$xC2,$zero,15 # 0xe1...
73 vsldoi $t1,$zero,$t0,1 # ...1
84 vsldoi $xC2,$zero,$xC2,8 # 0xc2.0
85 vsldoi $Hl,$zero,$H,8 # ... and split
86 vsldoi $Hh,$H,$zero,8
119 vxor $zero,
[all...]
/freebsd-11-stable/usr.bin/printf/tests/
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')

Completed in 122 milliseconds

1234567891011>>