Home
last modified time | relevance | path

Searched refs:into (Results 1 – 25 of 1547) sorted by relevance

12345678910>>...62

/freebsd/contrib/bc/tests/bc/
H A Dlib2_results.txt442 Error: 128 cannot fit into 1 signed byte(s).
468 Error: 129 cannot fit into 1 signed byte(s).
469 Error: -129 cannot fit into 1 signed byte(s).
493 Error: 255 cannot fit into 1 signed byte(s).
494 Error: -255 cannot fit into 1 signed byte(s).
516 Error: 256 cannot fit into 1 unsigned byte(s).
517 Error: 256 cannot fit into 1 signed byte(s).
518 Error: -256 cannot fit into 1 signed byte(s).
563 Error: 32768 cannot fit into 2 signed byte(s).
583 Error: 32769 cannot fit into 2 signed byte(s).
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_settable_params.pod8 - set key parameters into a key
27 These functions can be used to set additional parameters into an existing
30 EVP_PKEY_set_params() sets one or more I<params> into a I<pkey>.
37 EVP_PKEY_set_int_param() sets an integer value I<in> into a key I<pkey> for the
40 EVP_PKEY_set_size_t_param() sets an size_t value I<in> into a key I<pkey> for
43 EVP_PKEY_set_bn_param() sets the BIGNUM value I<bn> into a key I<pkey> for the
46 EVP_PKEY_set_utf8_string_param() sets the UTF8 string I<str> into a key I<pkey>
50 size I<bsize> into a key I<pkey> for the associated field I<key_name>.
H A DOPENSSL_gmtime.pod20 OPENSSL_gmtime() returns the UTC time specified by I<timer> into the provided
30 contents of the time_t given by I<timer> are stored into the I<result>. Calling
33 OPENSSL_gmtime_adj() converts I<tm> into a days and seconds value, adds the
34 offsets, then converts back into a I<struct tm> specified by I<tm>. Leap seconds
38 structures I<from> and I<to>. The difference in days is placed into I<*pday>,
H A DEVP_PKEY_gettable_params.pod44 obtain an integer value that does not fit into a native C B<int> type will cause
46 value that is negative or does not fit into a native C B<size_t> type using
50 associated with a name of I<key_name> if it fits into C<int> type. For
51 parameters that do not fit into C<int> use EVP_PKEY_get_bn_param().
54 associated with a name of I<key_name> if it fits into C<size_t> type. For
55 parameters that do not fit into C<size_t> use EVP_PKEY_get_bn_param().
61 EVP_PKEY_get_utf8_string_param() get a key I<pkey> UTF8 string value into a
70 EVP_PKEY_get_octet_string_param() get a key I<pkey>'s octet string value into a
H A DSSL_CTX_use_certificate.pod54 These functions load the certificates and private keys into the SSL_CTX
57 The SSL_CTX_* class of functions loads the certificates and keys into the
62 The SSL_* class of functions only loads certificates and keys into a
66 SSL_CTX_use_certificate() loads the certificate B<x> into B<ctx>,
67 SSL_use_certificate() loads B<x> into B<ssl>. The rest of the
74 the memory location B<d> (with length B<len>) into B<ctx>,
75 SSL_use_certificate_ASN1() loads the ASN1 encoded certificate into B<ssl>.
78 into B<ctx>. The formatting B<type> of the certificate must be specified
80 SSL_use_certificate_file() loads the certificate from B<file> into B<ssl>.
85 B<file> into
[all...]
H A DSSL_CTX_use_serverinfo.pod25 These functions load "serverinfo" TLS extensions into the SSL_CTX. A
30 a byte array into B<ctx>. The B<version> parameter specifies the format of the
55 B<file> into B<ctx>. The extensions must be in PEM format. Each extension
61 SSL_CTX_use_certificate(), the serverinfo extension will be loaded into the
H A DOSSL_ENCODER_to_bio.pod60 To encode a pkey as PKCS#8 with PEM format into a bio:
78 /* pkey was successfully encoded into the bio */
85 AES-256-CBC into a buffer:
108 * pkey was successfully encoded into a newly allocated
/freebsd/contrib/kyua/utils/format/
H A Dcontainers.ipp37 /// Injects the object into a stream.
39 /// \param output The stream into which to inject the object.
60 /// Injects the object into a stream.
62 /// \param output The stream into which to inject the object.
75 /// Injects the object into a stream.
77 /// \param output The stream into which to inject the object.
94 /// Injects the object into a stream.
96 /// \param output The stream into which to inject the object.
117 /// Injects the object into a stream.
119 /// \param output The stream into which to inject the object.
/freebsd/contrib/atf/
H A DFREEBSD-upgrade2 of atf into head. These notes are built on the instructions in
12 and is imported into the atf vendor branch (see base/vendor/atf/).
14 To merge the vendor branch into head do something like this:
24 of doing so is by using the release files already imported into the
38 the vendor branch as you easily risk committing build products into the
/freebsd/contrib/ntp/ntpd/
H A Drefclock_nmea.c1188 /* format into output buffer with overflow check */ in gps_send()
1442 static int _parse_num2d(UCC *cp, UCC ** ep, uint16_t *into) in _parse_num2d()
1447 *into = (cp[0] - '0') * 10 + (cp[1] - '0'); in _parse_num2d()
1456 static int _parse_u16(UCC *cp, UCC **ep, uint16_t *into, unsigned int ndig) in _parse_u16()
1465 *into = num; in _parse_u16()
1472 static int _parse_u32(UCC *cp, UCC **ep, uint32_t *into, unsigned int ndig) in _parse_u32()
1481 *into = num; in _parse_u32()
1493 static int _parse_frac(UCC *cp, UCC **ep, l_fp *into) in _parse_frac()
1514 *into = tspec_intv_to_lfp(ts); in _parse_frac()
1521 static int _parse_time(UCC *cp, UCC ** ep, TCivilDate *into) in _parse_time()
1440 _parse_num2d(UCC * cp,UCC ** ep,uint16_t * into) _parse_num2d() argument
1454 _parse_u16(UCC * cp,UCC ** ep,uint16_t * into,unsigned int ndig) _parse_u16() argument
1470 _parse_u32(UCC * cp,UCC ** ep,uint32_t * into,unsigned int ndig) _parse_u32() argument
1491 _parse_frac(UCC * cp,UCC ** ep,l_fp * into) _parse_frac() argument
1519 _parse_time(UCC * cp,UCC ** ep,TCivilDate * into) _parse_time() argument
1545 _parse_date1(UCC * cp,UCC ** ep,TCivilDate * into) _parse_date1() argument
1571 _parse_date3(UCC * cp,UCC ** ep,TCivilDate * into) _parse_date3() argument
[all...]
/freebsd/contrib/bmake/unit-tests/
H A Dvardebug.exp17 ModifyWords: split "1 2 3" into 3 words
22 ModifyWords: split "1 2 3" into 3 words
28 ModifyWords: split "1 2 3" into 3 words
46 ModifyWords: split "value" into 1 word
50 ModifyWords: split "value" into 1 word
H A Dvarmod-match-escape.exp6 ModifyWords: split "\: : \\ * \*" into 5 words
11 ModifyWords: split "\: : \\ * \*" into 5 words
22 ModifyWords: split ": :: :\:" into 3 words
30 ModifyWords: split ": :: :\:" into 3 words
/freebsd/crypto/openssh/
H A DTODO41 - It looks like we could merge it into the password auth code to cut down
60 - Consider splitting the u_intXX_t test for sys/bitype.h into separate test
63 - Consider splitting configure.ac into separate files which do logically
64 similar tests. E.g move all the type detection stuff into one file,
65 entropy related stuff into another.
/freebsd/contrib/pjdfstest/
H A DFREEBSD-upgrade2 of pjdfstest into head. These notes are built on the instructions in
12 and is imported into the pjdfstest vendor branch (see base/vendor/pjdfstest/).
14 To merge the vendor branch into head do something like this:
/freebsd/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp178 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters()
180 int tail1 = into.prev, tail2 = from.prev;
181 into.prev = tail2;
185 into.size += from.size; in run()
186 into.weight += from.weight; in run()
191 // Group InputSections into clusters using the Call-Chain Clustering heuristic in run()
205 // clusters[L] has not been merged into another cluster yet. in run()
167 mergeClusters(std::vector<Cluster> & cs,Cluster & into,int intoIdx,Cluster & from,int fromIdx) mergeClusters() argument
/freebsd/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp140 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() argument
142 int tail1 = into.prev, tail2 = from.prev; in mergeClusters()
143 into.prev = tail2; in mergeClusters()
147 into.size += from.size; in mergeClusters()
148 into.weight += from.weight; in mergeClusters()
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-mux-pinctrl.txt36 will be created. I2C child bus numbers are assigned based on the index into
48 state will be programmed into hardware.
51 on a child bus, the idle pinctrl state will be programmed into hardware.
54 left programmed into hardware whenever no access is being made of a device on
/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros35 bits are shifted off, they are ``jammed'' into the least significant bit of
64 than 64, the result will be 0. The result is broken into two 32-bit pieces
96 are ``jammed'' into the least significant bit of the result by setting the
100 nonzero. The result is broken into two 32-bit pieces which are stored at
140 at most 64 nonzero bits; these are broken into two 32-bit pieces which are
211 of `count' must be less than 32. The result is broken into two 32-bit
230 The value of `count' must be less than 32. The result is broken into three
267 any carry out is lost. The result is broken into two 32-bit pieces which
287 modulo 2^96, so any carry out is lost. The result is broken into three
326 2^64, so any borrow out (carry out) is lost. The result is broken into two
[all …]
/freebsd/contrib/netbsd-tests/
H A DFREEBSD-upgrade2 of the NetBSD test suite into head. These notes are built on the instructions
13 and is imported into the NetBSD/tests vendor branch (see
26 To merge the vendor branch into head do something like this:
/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersRestore.S76 # On entry, thread_state pointer is in rcx; move it into rdi
717 @ r8-r11: ldm into r1-r4, then mov to r8-r11
729 mov lr, r3 @ restore pc into lr
739 ldr lr, [lr, #60] @ restore pc into lr
/freebsd/sys/tools/syscalls/
H A DREADME.md2 Parses `syscalls.master` and packages information into objects with methods.
30 into a system call object.
31 * `scarg.lua` - Packages each argument for the system call into an argument
/freebsd/usr.sbin/bsdconfig/share/
H A Dstrings.subr192 # Similar to sprintf(3), write a string into $var_to_set using printf(1) syntax
217 # Similar to vsprintf(3), write a string into $var_to_set using printf(1)
227 # Similar to snprintf(3), write at most $size number of bytes into $var_to_set
242 # Similar to vsnprintf(3), write at most $size number of bytes into $var_to_set
307 # Convert a string into a suitable value to be used as a variable name
308 # by converting unsuitable characters into the underscrore [_]. If $var_to_set
362 # Unformat $string into a number, optionally to be stored in $var_to_set. This
462 # splitting a single line into multiple lines.
491 # stdin. Supports newline escape-sequence `\n' for splitting a single line into
508 # Encode $text for the purpose of embedding safely into a URL. Non-alphanumeric
[all …]
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros36 bits are shifted off, they are ``jammed'' into the least significant bit of
63 bits are shifted off, they are ``jammed'' into the least significant bit of
139 than 128, the result will be 0. The result is broken into two 64-bit pieces
171 are ``jammed'' into the least significant bit of the result by setting the
175 nonzero. The result is broken into two 64-bit pieces which are stored at
215 at most 128 nonzero bits; these are broken into two 64-bit pieces which are
286 of `count' must be less than 64. The result is broken into two 64-bit
305 The value of `count' must be less than 64. The result is broken into three
342 any carry out is lost. The result is broken into two 64-bit pieces which
362 modulo 2^192, so any carry out is lost. The result is broken into three
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp144 static void mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, in mergeClusters() argument
146 int tail1 = into.prev, tail2 = from.prev; in mergeClusters()
147 into.prev = tail2; in mergeClusters()
151 into.size += from.size; in mergeClusters()
152 into.weight += from.weight; in mergeClusters()
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dfsl,pci.txt3 Typically any Freescale PCI-X bridge hardware strapped into Agent mode
9 enumeration despite being strapped into Agent mode.

12345678910>>...62