Searched refs:zero (Results 101 - 125 of 617) sorted by relevance

1234567891011>>

/freebsd-current/lib/msun/src/
H A De_remainderf.c19 static const float zero = 0.0; variable
43 if ((hx-hp)==0) return zero*x;
H A De_jnf.c29 static const float zero = 0.0000000000e+00; variable
55 b = zero;
71 b = zero;
121 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
130 * likely underflow to zero
188 if(ix==0x7f800000) return zero;
H A De_lgamma_r.c74 * lgamma(0) = lgamma(neg.integer) = inf and raise divide-by-zero
87 zero= 0.00000000000000000000e+00, variable
171 return zero;
184 case 0: y = __kernel_sin(pi*y,zero,0); break;
186 case 2: y = __kernel_cos(pi*(0.5-y),zero); break;
188 case 4: y = __kernel_sin(pi*(one-y),zero,0); break;
190 case 6: y = -__kernel_cos(pi*(y-1.5),zero); break;
191 default: y = __kernel_sin(pi*(y-2.0),zero,0); break;
225 if(t==zero) return one/vzero; /* -integer */
227 if(t<zero) *signgam
[all...]
H A De_atan2l.c29 zero = 0.0; variable
90 case 0: return zero ; /* atan(+...,+INF) */
91 case 1: return -zero ; /* atan(-...,+INF) */
/freebsd-current/contrib/ldns/compat/
H A Dsnprintf.c240 int zero, int negative, char* buf, int len)
248 if(precision == 0 && zero) numw = 0;
256 if(precision == 0 && zero) {
270 if(precision == 0 && zero) numw = 0;
286 if(precision == 0 && zero)
301 int zero = (value == 0); local
305 plus, space, zero, negative, buf, len);
316 int zero = (value == 0); local
320 plus, space, zero, negative, buf, len);
331 int zero local
238 print_num(char** at, size_t* left, int* ret, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space, int zero, int negative, char* buf, int len) argument
346 int zero = (value == 0); local
360 int zero = (value == 0); local
374 int zero = (value == 0); local
388 int zero = (value == 0); local
402 int zero = (value == 0); local
416 int zero = (value == 0); local
430 int zero = (value == 0); local
514 int zero = 0; local
559 int zero = 0; local
[all...]
/freebsd-current/contrib/unbound/compat/
H A Dsnprintf.c241 int zero, int negative, char* buf, int len)
249 if(precision == 0 && zero) numw = 0;
257 if(precision == 0 && zero) {
271 if(precision == 0 && zero) numw = 0;
287 if(precision == 0 && zero)
302 int zero = (value == 0); local
306 plus, space, zero, negative, buf, len);
317 int zero = (value == 0); local
321 plus, space, zero, negative, buf, len);
332 int zero local
239 print_num(char** at, size_t* left, int* ret, int minw, int precision, int prgiven, int zeropad, int minus, int plus, int space, int zero, int negative, char* buf, int len) argument
347 int zero = (value == 0); local
361 int zero = (value == 0); local
375 int zero = (value == 0); local
389 int zero = (value == 0); local
403 int zero = (value == 0); local
417 int zero = (value == 0); local
431 int zero = (value == 0); local
515 int zero = 0; local
560 int zero = 0; local
[all...]
/freebsd-current/sys/powerpc/ps3/
H A Dps3-hvcall.h48 int lv1_allocate_memory(uint64_t size, uint64_t log_page_size, uint64_t zero, uint64_t flags, uint64_t *base_addr, uint64_t *muid);
57 int lv1_connect_irq_plug_ext(uint64_t ppe_id, uint64_t cpu_id, uint64_t virq, uint64_t outlet, uint64_t zero);
73 int lv1_disable_logical_spe(uint64_t spe_id, uint64_t zero);
74 int lv1_clear_spe_interrupt_status(uint64_t spe_id, uint64_t class, uint64_t stat, uint64_t zero);
96 int lv1_open_device(uint64_t bus, uint64_t dev, uint64_t zero);
107 int lv1_net_remove_multicast_address(uint64_t bus, uint64_t dev, uint64_t zero, uint64_t one);
108 int lv1_net_start_tx_dma(uint64_t bus, uint64_t dev, uint64_t bus_addr, uint64_t zero);
109 int lv1_net_stop_tx_dma(uint64_t bus, uint64_t dev, uint64_t zero);
110 int lv1_net_start_rx_dma(uint64_t bus, uint64_t dev, uint64_t bus_addr, uint64_t zero);
111 int lv1_net_stop_rx_dma(uint64_t bus, uint64_t dev, uint64_t zero);
[all...]
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache_inlines.h43 size_t size, szind_t binind, bool zero, bool slow_path) {
72 if (config_prof || (slow_path && config_fill) || unlikely(zero)) {
77 if (likely(!zero)) {
105 szind_t binind, bool zero, bool slow_path) {
124 ret = large_malloc(tsd_tsdn(tsd), arena, sz_s2u(size), zero);
133 unlikely(zero)) {
138 if (likely(!zero)) {
42 tcache_alloc_small(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size, szind_t binind, bool zero, bool slow_path) argument
/freebsd-current/lib/libc/tests/stdio/
H A Dmkostemp_test.c133 ATF_TC_WITHOUT_HEAD(zero); variable
134 ATF_TC_BODY(zero, tc)
175 ATF_TP_ADD_TC(tp, zero);
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Ds390x.S13 #define zero %r0 define
20 lghi zero,0 // zero = 0
33 algr zero,zero // clear carry
45 alcgr %r6,zero
52 alcgr %r8,zero
59 alcgr %r10,zero
66 alcgr %r12,zero
77 alcgr %r6,zero
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Daes_x86ni_ctrcbc.c58 __m128i erev, zero, one, four, notthree; local
72 zero = _mm_setzero_si128();
75 notthree = _mm_sub_epi64(zero, four);
84 _mm_slli_si128(_mm_cmpeq_epi64(ivx1, zero), 8));
87 _mm_slli_si128(_mm_cmpeq_epi64(ivx2, zero), 8));
90 _mm_slli_si128(_mm_cmpeq_epi64(ivx3, zero), 8));
227 * and check whether the remaining bits are zero.
235 _mm_and_si128(ivx0, notthree), zero), 8));
238 _mm_and_si128(ivx1, notthree), zero), 8));
241 _mm_and_si128(ivx2, notthree), zero),
315 __m128i erev, zero, one; local
464 __m128i erev, zero, one; local
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.header.ksh41 probe zero();
/freebsd-current/contrib/unbound/contrib/
H A Dlibunbound.so.conf9 typedef ub_result = struct(string, ub_type, ub_class, array(void*,zero)*, array(int,zero)*, string, ub_rcode, void*, int, ub_havedata, ub_nxdomain, ub_secure, ub_bogus, string, int);
/freebsd-current/contrib/netbsd-tests/dev/fss/
H A Dt_fss.sh45 dd if=/dev/zero of=./image bs=32k count=64
/freebsd-current/contrib/netbsd-tests/fs/tmpfs/
H A Dt_sizes.sh70 dd if=/dev/zero of=a bs=1m count=5
100 dd if=/dev/zero of=a bs=1m count=15
120 dd if=/dev/zero of=a bs=1024 count=10
123 dd if=/dev/zero of=a bs=1024 conv=notrunc seek=1 count=1
/freebsd-current/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex.sh70 create_tc zero "Checks NULs"
/freebsd-current/contrib/netbsd-tests/sbin/resize_ffs/
H A Dt_check.sh42 dd if=/dev/zero count=2048 >> ${IMG}
/freebsd-current/tools/test/stress2/misc/
H A Dzfs2.sh43 dd if=/dev/zero of=$d1 bs=1m count=1k status=none
44 dd if=/dev/zero of=$d2 bs=1m count=1k status=none
H A Dzfs3.sh49 dd if=/dev/zero of=$d1 bs=1m count=1k status=none
50 dd if=/dev/zero of=$d2 bs=1m count=1k status=none
H A Dzfs5.sh43 dd if=/dev/zero of=$d1 bs=1m count=1k status=none
44 dd if=/dev/zero of=$d2 bs=1m count=1k status=none
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_zil.ksh65 dd if=/dev/zero of=$ZDEV bs=8k count=1 &
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/features/async_destroy/
H A Dasync_destroy_001_pos.ksh38 # 3. Set compression to off to force zero-ed blocks to be written
39 # 4. dd a lot of data from /dev/zero to the file system
61 log_must dd bs=1024k count=128 if=/dev/zero of=/$TEST_FS/file
96 log_fail "Timed out waiting for freeing to drop to zero"
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/avr/
H A Dudivmodqi4.S24 sub r25, r25 ; Initialize the remainder to zero.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/mmap/
H A Dmmap_mixed.ksh58 log_must dd if=/dev/zero of=$tmp_file bs=$bs count=$blocks
/freebsd-current/usr.bin/printf/tests/
H A DMakefile20 ${PACKAGE}FILES+= regress.zero.out

Completed in 171 milliseconds

1234567891011>>