Home
last modified time | relevance | path

Searched refs:places (Results 1 – 25 of 206) sorted by relevance

123456789

/freebsd/usr.bin/seq/
H A Dseq.c444 int places = 0; in decimal_places() local
452 places++; in decimal_places()
454 return (places); in decimal_places()
468 int precision, width1, width2, places; in generate_format() local
487 if ((places = decimal_places(buf))) in generate_format()
488 width1 -= (places + strlen(decimal_point)); in generate_format()
490 precision = MAX(places, precision); in generate_format()
495 if ((places = decimal_places(buf))) in generate_format()
496 width2 -= (places + strlen(decimal_point)); in generate_format()
/freebsd/crypto/openssl/doc/man3/
H A DBN_add.pod50 BN_add() adds I<a> and I<b> and places the result in I<r> (C<r=a+b>).
53 BN_sub() subtracts I<b> from I<a> and places the result in I<r> (C<r=a-b>).
56 BN_mul() multiplies I<a> and I<b> and places the result in I<r> (C<r=a*b>).
60 BN_sqr() takes the square of I<a> and places the result in I<r>
64 BN_div() divides I<a> by I<d> and places the result in I<dv> and the
73 BN_nnmod() reduces I<a> modulo I<m> and places the nonnegative
76 BN_mod_add() adds I<a> to I<b> modulo I<m> and places the nonnegative
79 BN_mod_sub() subtracts I<b> from I<a> modulo I<m> and places the
89 BN_mod_sqr() takes the square of I<a> modulo B<m> and places the
98 BN_exp() raises I<a> to the I<p>-th power and places the result in I<r>
[all …]
H A DBN_set_bit.pod42 BN_lshift() shifts B<a> left by B<n> bits and places the result in
44 B<a> left by one and places the result in B<r> (C<r=2*a>).
46 BN_rshift() shifts B<a> right by B<n> bits and places the result in
48 B<a> right by one and places the result in B<r> (C<r=a/2>).
H A DOSSL_CMP_STATUSINFO_new.pod32 OSSL_CMP_snprint_PKIStatusInfo() places a human-readable string
36 OSSL_CMP_CTX_snprint_PKIStatus() places a human-readable string
H A DBIO_read.pod24 BIO_read_ex() attempts to read I<dlen> bytes from BIO I<b> and places the data
32 BIO_read() attempts to read I<len> bytes from BIO I<b> and places
35 BIO_gets() performs the BIOs "gets" operation and places the data
46 or the maximum length I<size-1> is reached and places the data in I<buf>.
H A DRIPEMD160_Init.pod33 bytes at B<d> and places it in B<md> (which must have space for
45 RIPEMD160_Final() places the message digest in B<md>, which must have
H A DMDC2_Init.pod34 bytes at B<d> and places it in B<md> (which must have space for
46 MDC2_Final() places the message digest in B<md>, which must have space
H A DDSA_sign.pod30 digest B<dgst> using the private key B<dsa> and places its ASN.1 DER
31 encoding at B<sigret>. The length of the signature is places in
H A DOPENSSL_hexchar2int.pod28 OPENSSL_hexstr2buf_ex() decodes the hex string B<str> and places the
46 length I<buflen> and places the resulting hexadecimal character string
H A DASN1_item_d2i_bio.pod33 I<it>. It places the result in I<*pval> unless I<pval> is NULL. If I<*pval> is
47 and places the result in I<*pval> unless I<pval> is NULL.
H A DSHA256_Init.pod59 bytes at B<d> and places it in B<md> (which must have space for
71 SHA1_Final() places the message digest in B<md>, which must have space
/freebsd/crypto/openssl/crypto/bn/
H A DREADME.pod114 arrays B<rp> and B<ap>. It computes B<ap> * B<w>, places the result
118 word arrays B<rp> and B<ap>. It computes B<ap> * B<w> + B<rp>, places
123 word-wise, and places the low and high bytes of the result in B<rp>.
129 arrays B<ap>, B<bp> and B<rp>. It computes B<ap> + B<bp>, places the
133 arrays B<ap>, B<bp> and B<rp>. It computes B<ap> - B<bp>, places the
138 B<b> and the 8 word array B<r>. It computes B<a>*B<b> and places the
142 B<b> and the 16 word array B<r>. It computes B<a>*B<b> and places the
159 array B<r>. It computes B<a>*B<b> and places the result in B<r>.
163 B<a>*B<b> and places the result in B<r>.
169 B<a>*B<b> and places the result in B<r>.
[all …]
/freebsd/contrib/bc/src/
H A Dnum.c290 size_t i, places, idx = bc_num_nonZeroLen(n) - 1; in bc_num_negPow10() local
292 places = 1; in bc_num_negPow10()
297 if (bc_num_pow10[i] > (BcBigDig) n->num[idx]) places += 1; in bc_num_negPow10()
303 return places + (BC_NUM_RDX_VAL(n) - (idx + 1)) * BC_BASE_DIGS; in bc_num_negPow10()
578 bc_num_truncate(BcNum* restrict n, size_t places) in bc_num_truncate() argument
582 if (!places) return; in bc_num_truncate()
587 places_rdx = nrdx ? nrdx - BC_NUM_RDX(n->scale - places) : 0; in bc_num_truncate()
590 assert(places <= n->scale && (BC_NUM_ZERO(n) || places_rdx <= n->len)); in bc_num_truncate()
592 n->scale -= places; in bc_num_truncate()
619 bc_num_extend(BcNum* restrict n, size_t places) in bc_num_extend() argument
[all …]
H A Dlibrary.c1482 * @param places The number of decimal places to generate.
1485 bcl_frandHelper(BcNum* restrict b, size_t places) in bcl_frandHelper() argument
1499 bc_num_bigdig2num(&exp, (BcBigDig) places); in bcl_frandHelper()
1514 bc_num_shiftRight(b, places); in bcl_frandHelper()
1523 bcl_frand(size_t places) in bcl_frand() argument
1541 bcl_frandHelper(BCL_NUM_NUM_NP(n), places); in bcl_frand()
1556 * @param places The number of decimal places to generate.
1559 bcl_ifrandHelper(BcNum* restrict a, BcNum* restrict b, size_t places) in bcl_ifrandHelper() argument
1587 bcl_ifrand_helper(BclNumber a,size_t places,bool destruct) bcl_ifrand_helper() argument
1630 bcl_ifrand(BclNumber a,size_t places) bcl_ifrand() argument
1636 bcl_ifrand_keep(BclNumber a,size_t places) bcl_ifrand_keep() argument
[all...]
/freebsd/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y94 expression_t *places, symbol_ref_t *src, int ret);
1678 format_2_instr(int opcode, symbol_ref_t *dest, expression_t *places, in format_2_instr() argument
1701 if (places->value > 8 || places->value <= 0) { in format_2_instr()
1707 if (places->value == 8) in format_2_instr()
1710 shift_control = (places->value << 4) | places->value; in format_2_instr()
1713 if (places->value == 8) { in format_2_instr()
1716 shift_control = (places->value << 4) in format_2_instr()
1717 | (8 - places->value) in format_2_instr()
1722 shift_control = places->value & 0x7; in format_2_instr()
1725 shift_control = (8 - places->value) | 0x08; in format_2_instr()
[all …]
/freebsd/contrib/bc/include/
H A Dbcl.h338 bcl_frand(size_t places);
341 bcl_ifrand(BclNumber a, size_t places);
344 bcl_ifrand_keep(BclNumber a, size_t places);
H A Dnum.h620 * The places function (@ operator). This is a BcNumBinaryOp function.
722 * A function returning the required allocation size for a places, left shift,
727 * @return The size of allocation needed for the result of places, left
736 * Truncate @a n *by* @a places decimal places. This only extends places *after*
739 * @param places The number of places to truncate @a n by.
742 bc_num_truncate(BcNum* restrict n, size_t places);
745 * Extend @a n *by* @a places decima
[all...]
/freebsd/contrib/bc/tests/
H A Dextra_required.txt4 places
/freebsd/contrib/bc/tests/dc/
H A Dall.txt17 places
/freebsd/usr.bin/dtc/
H A DHACKING25 pointers are also used in several other places to track ownership.
29 code, though `auto` should only be used in places where the type can be deduced
/freebsd/contrib/one-true-awk/
H A DFREEBSD-upgrade29 % git commit -m"Import awk YYYYMMDD hash f9affa922c5e" # 12 places
37 % git tag -a -s vendor/one-true-awk/f9affa92 # 8 places
/freebsd/contrib/bc/tests/bc/
H A Dall.txt17 places
/freebsd/contrib/bc/vs/tests/
H A Dtests_dc.bat27 places
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dmarvell,pxa168.txt12 region. There are 3 places in SOC has clock control logic:
H A Dmarvell,pxa910.txt12 region. There are 4 places in SOC has clock control logic:

123456789