Home
last modified time | relevance | path

Searched refs:half (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/freebsd-14.2/contrib/libdivsufsort/lib/
H A Dutils.c36 saidx_t half, i; in binarysearch_lower() local
39 size = half, half >>= 1) { in binarysearch_lower()
41 i += half + 1; in binarysearch_lower()
277 size = half, half >>= 1) { in sa_search()
287 lsize = half, j = i, rsize = size - half - 1, k = i + half + 1; in sa_search()
292 lsize = half, half >>= 1) { in sa_search()
307 rsize = half, half >>= 1) { in sa_search()
342 size = half, half >>= 1) { in sa_simplesearch()
349 lsize = half, j = i, rsize = size - half - 1, k = i + half + 1; in sa_simplesearch()
354 lsize = half, half >>= 1) { in sa_simplesearch()
[all …]
H A Dsssort.c507 saidx_t len, half; in ss_inplacemerge() local
514 for(a = first, len = middle - first, half = len >> 1, r = -1; in ss_inplacemerge()
516 len = half, half >>= 1) { in ss_inplacemerge()
517 b = a + half; in ss_inplacemerge()
521 half -= (len & 1) ^ 1; in ss_inplacemerge()
671 saidx_t m, len, half; in ss_swapmerge() local
694 for(m = 0, len = MIN(middle - first, last - middle), half = len >> 1; in ss_swapmerge()
696 len = half, half >>= 1) { in ss_swapmerge()
697 if(ss_compare(T, PA + GETIDX(*(middle + m + half)), in ss_swapmerge()
699 m += half + 1; in ss_swapmerge()
[all …]
/freebsd-14.2/crypto/openssl/test/
H A Dpoly1305_internal_test.c1542 size_t half = inlen / 2; in test_poly1305() local
1545 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1546 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
1554 for (half = 16; half < inlen; half += 16) { in test_poly1305()
1556 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1557 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
1562 idx, half, inlen-half); in test_poly1305()
H A Dsiphash_internal_test.c222 size_t half = inlen / 2; in test_siphash() local
227 SipHash_Update(&siphash, in, half); in test_siphash()
228 SipHash_Update(&siphash, in+half, inlen-half); in test_siphash()
237 for (half = 16; half < inlen; half += 16) { in test_siphash()
241 SipHash_Update(&siphash, in, half); in test_siphash()
242 SipHash_Update(&siphash, in+half, inlen-half); in test_siphash()
248 idx, half, inlen-half); in test_siphash()
/freebsd-14.2/contrib/llvm-project/clang/lib/Headers/hlsl/
H A Dhlsl_intrinsics.h38 half abs(half);
88 half ceil(half);
120 half cos(half);
152 half floor(half);
184 half log(half);
216 half log10(half);
248 half log2(half);
280 half max(half, half);
366 half min(half, half);
452 half pow(half, half);
[all …]
H A Dhlsl_basic_types.h53 typedef vector<half, 2> half2;
54 typedef vector<half, 3> half3;
55 typedef vector<half, 4> half4;
/freebsd-14.2/usr.bin/m4/tests/
H A Dregress.quotes.out7 half quoted string
14 `half quoted STRING
21 `half quoted STRING
28 `half quoted STRING
34 half quoted stringgoing up to that STRING'
41 half quoted string
48 `half quoted string
H A Dquotes.m48 `half quoted string
16 `half quoted string
24 `half quoted string
32 `half quoted string
40 `half quoted string
48 `half quoted string
56 `half quoted string
/freebsd-14.2/contrib/llvm-project/clang/lib/Headers/
H A Dopencl-c.h7139 half __ovld __cnfn fma(half, half, half);
7281 half __ovld fract(half, half *);
7805 half __ovld __cnfn mad(half, half, half);
7890 half __ovld modf(half, half *);
8035 half __ovld __cnfn pow(half, half);
8377 half __ovld sincos(half, half *);
10048 half __ovld __cnfn clamp(half, half, half);
10117 half __ovld __cnfn max(half, half);
10204 half __ovld __cnfn mix(half, half, half);
10323 half __ovld __cnfn smoothstep(half, half, half);
[all …]
H A Dopencl-c-base.h210 typedef half half2 __attribute__((ext_vector_type(2)));
211 typedef half half3 __attribute__((ext_vector_type(3)));
212 typedef half half4 __attribute__((ext_vector_type(4)));
213 typedef half half8 __attribute__((ext_vector_type(8)));
214 typedef half half16 __attribute__((ext_vector_type(16)));
228 #define __half half
635 #define as_half(x) __builtin_astype((x), half)
/freebsd-14.2/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dcirrus,clps711x-intc.txt24 12: UTXINT1 UART1 transmit FIFO half empty
25 13: URXINT1 UART1 receive FIFO half full
29 17: SS2RX SSI2 receive FIFO half or greater full
30 18: SS2TX SSI2 transmit FIFO less than half empty
31 28: UTXINT2 UART2 transmit FIFO half empty
32 29: URXINT2 UART2 receive FIFO half full
/freebsd-14.2/lib/msun/src/
H A De_coshf.c19 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
44 return half*t+half/t; in coshf()
48 if (ix < 0x42b17217) return half*expf(fabsf(x)); in coshf()
H A De_cosh.c40 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
66 return half*t+half/t; in cosh()
70 if (ix < 0x40862E42) return half*exp(fabs(x)); in cosh()
H A Dk_sin.c48 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
66 else return x-((z*(half*y-v*r)-y)-v*S1); in __kernel_sin()
/freebsd-14.2/contrib/libcbor/src/cbor/internal/
H A Dloaders.c54 int half = (halfp[0] << 8) + halfp[1]; in _cbor_decode_half() local
55 int exp = (half >> 10) & 0x1f; in _cbor_decode_half()
56 int mant = half & 0x3ff; in _cbor_decode_half()
64 return (float)(half & 0x8000 ? -val : val); in _cbor_decode_half()
/freebsd-14.2/lib/libc/amd64/string/
H A Dstrcspn.S238 3: lea -16(%rax), %rax # go back to second half
263 pcmpistri $0, %xmm0, %xmm3 # match in second set half?
264 cmp %ecx, %eax # before the first half match?
273 pcmpistri $0, %xmm0, %xmm2 # match in first set half?
281 jb 4f # match in first set half?
283 jbe 1f # match in second set half or end of string?
287 jb 3f # match in first set half?
289 ja 0b # neither match in 2nd half nor string end?
292 lea -16(%rax), %rax # go back to second half
304 3: sub $16, %rax # go back to second half
[all …]
/freebsd-14.2/sys/contrib/openzfs/include/sys/
H A Dbtree.h154 uint32_t half = nelems / 2; \
155 nelems -= half; \
156 i += (COMP(&i[half - 1], value) < 0) * half; \
/freebsd-14.2/contrib/netbsd-tests/lib/libc/gen/
H A Dt_closefrom.c84 int buf[16], cur, half; in ATF_TC_BODY() local
104 half = STDERR_FILENO + __arraycount(buf) / 2; in ATF_TC_BODY()
105 ATF_REQUIRE(closefrom(half) == 0); in ATF_TC_BODY()
108 ATF_REQUIRE(cur == half - 1); in ATF_TC_BODY()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoZfh.td465 // half->[u]int. Round-to-zero must be used.
469 // Saturating half->[u]int32.
473 // half->int32 with current rounding mode.
493 // half->int32 with current rounding mode.
515 // Saturating half->[u]int64.
519 // half->int64 with current rounding mode.
549 // half->int64 with current rounding mode.
605 // half->int32 with current rounding mode.
621 // half->int32 with current rounding mode.
637 // half->int64 with current rounding mode.
[all …]
/freebsd-14.2/contrib/arm-optimized-routines/pl/math/
H A Dv_atanh_3u5.c18 uint64x2_t one, half; member
21 .half = V2 (0x3fe0000000000000) };
42 float64x2_t halfsign = vreinterpretq_f64_u64 (vorrq_u64 (sign, d->half)); in V_NAME_D1()
/freebsd-14.2/lib/msun/ld80/
H A Dk_sinl.c21 half = 0.5; variable
58 else return x-((z*(half*y-v*r)-y)-v*S1); in __kernel_sinl()
/freebsd-14.2/lib/msun/ld128/
H A Dk_sinl.c21 half = 0.5; variable
55 else return x-((z*(half*y-v*r)-y)-v*S1); in __kernel_sinl()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DBIO_s_bio.pod34 BIOs where data written to either half of the pair is buffered and can be read from
35 the other half. Both halves must usually by handled by the same application thread
39 one half of a BIO pair and have all the data processed by the chain under application
60 up any half of the pair will automatically destroy the association.
64 half of the pair will return any pending data or EOF when all pending data has
88 last read attempt at the other half of the BIO pair failed due to an
103 Both halves of a BIO pair should be freed. That is even if one half is implicit
104 freed due to a BIO_free_all() or SSL_free() call the other half needs to be freed.
108 on the other half of the pair and, if any data is pending, reading it and sending
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_div_impl.inc20 // it is done for float32 by default) and (N-1) half-width iteration plus one
21 // final full-width iteration. It is expected that half-width integer
28 // rep_t-sized bitmask with lower half of bits set to ones
134 // NB: Using half-width iterations increases computation errors due to
138 // Starting with (n-1) half-width iterations
179 // For half-width iterations, b_hw is used instead of b.
219 // For initial half-width iterations, U = 2^-HW
267 // <--- higher half ---><--- lower half --->
282 // Just like the case of half-width iterations but with possibility
292 // Then like for the half-width iterations:
[all …]
/freebsd-14.2/contrib/nvi/vi/
H A Dvs_split.c46 size_t half; in vs_split() local
71 half = sp->rows / 2; in vs_split()
72 if (ccl && half > 6) in vs_split()
73 half = 6; in vs_split()
96 !ccl && (vs_sm_cursor(sp, &smp) ? 0 : (smp - HMAP) + 1) >= half; in vs_split()
98 new->rows = sp->rows - half; /* New. */ in vs_split()
100 sp->rows = half; /* Old. */ in vs_split()
110 new->rows = half; /* New. */ in vs_split()
111 sp->rows -= half; /* Old. */ in vs_split()

12345678910>>...12