Searched refs:fromstr (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/syslog-217.1.4/syslogd.tproj/
H A Dudp_in.c71 char fromstr[64], *r, *p; local
82 fromstr[0] = '\0';
88 inet_ntop(from.ss_family, &(s4->sin_addr), fromstr, 64);
89 r = fromstr;
90 asldebug("%s: fd %d recvfrom %s len %d\n", MY_ID, fd, fromstr, len);
95 inet_ntop(from.ss_family, &(s6->sin6_addr), fromstr, 64);
96 r = fromstr;
97 asldebug("%s: fd %d recvfrom %s len %d\n", MY_ID, fd, fromstr, len);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/math/
H A Dbigfloat.demo.tcl116 set x [fromstr $::bignum]
118 set x [fromstr $::bignum $::zeros]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dbigfloat.tcl66 set zero [::math::bignum::fromstr 0]
68 set one [::math::bignum::fromstr 1]
70 set two [::math::bignum::fromstr 2]
72 set three [::math::bignum::fromstr 3]
74 set four [::math::bignum::fromstr 4]
76 set five [::math::bignum::fromstr 5]
78 set ten [::math::bignum::fromstr 10]
95 # When calling fromstr, the Delta parameter is set to the value of the last decimal digit.
157 if {[compare $x [fromstr 0.7071]]>0} {
299 if {[compare $x [fromstr 0.707
[all...]
H A Dbigfloat2.tcl39 # When calling [fromstr], the Delta parameter is set to the value of 1 at the position
104 if {[compare $x [fromstr 0.7071]]>0} {
239 if {[compare $x [fromstr 0.7071]]>0} {
307 # here we have $two instead of [fromstr 2] (optimization)
349 if {[compare $x [fromstr 2.4142]]<0} {
363 if {[compare $x [fromstr 0.4142]]>0} {
990 proc ::math::bigfloat::fromstr {number {addzeros 0}} {
1043 # this is necessary to ensure we can call fromstr (recursively) with
1105 # like fromstr, but for a double scalar value
1116 return [fromstr
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Deditfns.c2744 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2763 len = CHAR_STRING (XFASTINT (fromchar), fromstr);
2781 fromstr[0] = XFASTINT (fromchar);
2822 && p[0] == fromstr[0]
2824 || (p[1] == fromstr[1]
2825 && (len == 2 || (p[2] == fromstr[2]
2826 && (len == 3 || p[3] == fromstr[3]))))))
2730 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH]; variable
/macosx-10.9.5/vim-53/src/
H A Deval.c17707 * "tr(string, fromstr, tostr)" function
17715 char_u *fromstr; local
17732 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17738 if (fromstr == NULL || tostr == NULL)
17745 /* not multi-byte: fromstr and tostr must be the same length */
17746 if (STRLEN(fromstr) != STRLEN(tostr))
17751 EMSG2(_(e_invarg2), fromstr); local
17756 /* fromstr and tostr have to contain the same number of chars */
17766 for (p = fromstr; *p != NUL; p += fromlen)
17781 if (*p == NUL) /* tostr is shorter than fromstr */
[all...]

Completed in 305 milliseconds