Searched refs:pi (Results 1 - 25 of 343) sorted by relevance

1234567891011>>

/macosx-10.10/llvmCore-3425.0.34/utils/lint/
H A Dremove_trailing_whitespace.sh6 perl -pi -e 's/\s+$/\n/' $*
/macosx-10.10/uucp-11/uucp/uuconf/
H A Dbool.c39 _uuconf_iboolean (qglobal, zval, pi)
42 boolean *pi;
50 *pi = TRUE;
56 *pi = FALSE;
H A Dreliab.c46 int *pi = (int *) pvar;
54 *pi |= UUCONF_RELIABLE_SPECIFIED;
56 *pi &=~ UUCONF_RELIABLE_EIGHT;
58 *pi |= UUCONF_RELIABLE_EIGHT;
77 int *pi = (int *) pvar;
85 *pi |= UUCONF_RELIABLE_SPECIFIED;
87 *pi |= UUCONF_RELIABLE_RELIABLE;
89 *pi &=~ UUCONF_RELIABLE_RELIABLE;
108 int *pi = (int *) pvar;
116 *pi |
45 int *pi = (int *) pvar; local
76 int *pi = (int *) pvar; local
107 int *pi = (int *) pvar; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dfloat-sup.el38 ;; define pi and e via math-lib calls. (much less prone to killer typos.)
39 (defconst pi (* 4 (atan 1)) "The value of Pi (3.1415926...).") function
45 (defconst degrees-to-radians (/ pi 180.0)
47 (defconst radians-to-degrees (/ 180.0 pi)
54 (list '* (/ pi 180.0) x))
57 (list '* (/ 180.0 pi) x))
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/build/
H A Dcrupdate21 find . -type f -not -name 'LICENSE*' -print -exec perl -pi -e 's/Copyright ([0-9]{4})([,\-][0-9]{2,4})*,? The OpenLDAP Foundation/Copyright $1-2008 The OpenLDAP Foundation/g;' {} \;
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A Dsc-130-resignationticket.c47 SOSPeerInfoRef pi; member in struct:piStuff_t
52 piStuff *pi = malloc(sizeof(piStuff)); local
54 if(!pi) return NULL;
55 pi->signingKey = NULL;
57 pi->fpi = SOSCreateFullPeerInfoFromName(cfName, &pi->signingKey, NULL);
59 pi->pi = SOSFullPeerInfoGetPeerInfo(pi->fpi);
60 pi
64 retire_me(piStuff *pi, size_t seconds) argument
74 chkBasicTicket(piStuff *pi) argument
78 in_between_time(CFDateRef before, piStuff *pi, CFDateRef after) argument
[all...]
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_str.c110 __printf_arginfo_str(const struct printf_info *pi, size_t n, int *argt) argument
114 if (pi->is_long || pi->spec == 'C')
122 __printf_render_str(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
129 if (pi->is_long || pi->spec == 'S') {
132 return (__printf_out(io, pi, "(null)", 6));
133 convbuf = __wcsconv(wcp, pi->prec, pi->loc);
136 l = __printf_out(io, pi, convbu
153 __printf_arginfo_chr(const struct printf_info *pi, size_t n, int *argt) argument
170 __printf_render_chr(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
[all...]
H A Dxprintf_int.c238 __printf_arginfo_int(const struct printf_info *pi, size_t n, int *argt) argument
243 if (pi->is_vec)
247 if (pi->is_ptrdiff)
249 else if (pi->is_size)
251 else if (pi->is_long)
253 else if (pi->is_intmax)
255 else if (pi->is_quad)
257 else if (pi->is_long_double)
259 else if (pi->is_short)
261 else if (pi
267 __printf_render_int(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
473 __printf_render_ptr(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
[all...]
H A Dxprintf_vis.c41 __printf_arginfo_vis(const struct printf_info *pi, size_t n, int *argt) argument
50 __printf_render_vis(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
59 return (__printf_out(io, pi, "(null)", 6));
60 if (pi->prec >= 0)
61 l = pi->prec;
67 if (pi->showsign)
69 else if (pi->pad == '0')
71 else if (pi->alt)
75 ret += __printf_out(io, pi, buf, ret);
H A Dxprintf_float.c127 __printf_arginfo_float(const struct printf_info *pi, size_t n, int *argt) argument
131 if (pi->is_vec)
136 if (pi->is_long_double)
160 __printf_render_float(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
195 if (pi->is_vec) return __xprintf_vector(io, pi, arg);
198 prec = pi->prec;
200 sign = pi->signchar;
204 thousands_sep = localeconv_l(pi->loc)->thousands_sep;
207 if (pi
[all...]
H A Dxprintf_quote.c42 __printf_arginfo_quote(const struct printf_info *pi __unused, size_t n, int *argt)
51 __printf_render_quote(struct __printf_io *io, const struct printf_info *pi __unused, const void *const *arg)
59 return (__printf_out(io, pi, "\"(null)\"", 8));
61 return (__printf_out(io, pi, "\"\"", 2));
67 return (__printf_out(io, pi, str, strlen(str)));
69 ret = __printf_out(io, pi, "\"", 1);
90 ret += __printf_out(io, pi, t, p - t);
91 ret += __printf_out(io, pi, o, strlen(o));
95 ret += __printf_out(io, pi, t, p - t);
96 ret += __printf_out(io, pi, "\"",
[all...]
H A Dxprintf_hexdump.c39 __printf_arginfo_hexdump(const struct printf_info *pi, size_t n, int *argt) argument
49 __printf_render_hexdump(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
56 if (pi->width > 0 && pi->width < 16)
57 l = pi->width;
67 if (pi->showsign)
71 if (pi->alt) {
H A Dxprintf_errno.c41 __printf_arginfo_errno(const struct printf_info *pi __unused, size_t n, int *argt)
50 __printf_render_errno(struct __printf_io *io, const struct printf_info *pi __unused, const void *const *arg)
60 return (__printf_out(io, pi, p, strlen(p)));
63 ret += __printf_out(io, pi, buf, strlen(buf));
H A Dxprintf.c197 __printf_out(struct __printf_io *io, const struct printf_info *pi, const void *ptr, int len) argument
201 if ((!pi->left) && pi->width > len)
202 ret += __printf_pad(io, pi->width - len, pi->pad == '0');
204 if (pi->left && pi->width > len)
205 ret += __printf_pad(io, pi->width - len, pi->pad == '0');
213 __printf_arginfo_pct(const struct printf_info *pi __unuse
229 __printf_arginfo_n(const struct printf_info *pi, size_t n, int *argt) argument
243 __printf_render_n(FILE *io __unused, const struct printf_info *pi, const void *const *arg) argument
439 struct printf_info *pi, *pil; local
773 struct printf_info *pi; local
1098 __xprintf_vector(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
[all...]
H A Dxprintf_time.c45 __printf_arginfo_time(const struct printf_info *pi, size_t n, int *argt) argument
58 __printf_render_time(struct __printf_io *io, const struct printf_info *pi, const void *const *arg) argument
68 if (pi->is_long) {
73 } else if (pi->is_long_double) {
84 if (pi->is_long || pi->is_long_double) {
85 if (pi->prec >= 0)
86 prec = pi->prec;
92 if (pi->alt) {
120 ret = __printf_out(io, pi, bu
[all...]
/macosx-10.10/bc-21/bc/Examples/
H A Dpi.b11 define pi () {
12 auto ix, pi, save_scale, work;
17 pi = 4*a(1);
19 work = pi;
24 /* Extract the One's digit from pi. */
46 print "PI to ", scale, " digits is:\n", pi/1, "\n\n"
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dpwd.pl27 local($pd,$pi) = stat($ENV{'PWD'});
28 if (!defined $dd or !defined $pd or $di != $pi or $dd != $pd) {
36 local($pd,$pi) = stat($2);
38 if (defined $pd and defined $dd and $di == $pi and $dd == $pd) {
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSPeerInfo.c196 SOSPeerInfoRef pi = CFTypeAllocate(SOSPeerInfo, struct __OpaqueSOSPeerInfo, allocator); local
197 pi->gestalt = gestalt;
198 CFRetain(pi->gestalt);
200 pi->version = SOSPeerInfoGetPeerProtocolVersion(pi);
201 pi->transportType = CFStringCreateCopy(kCFAllocatorDefault, CFSTR("KVS"));
208 CFReleaseNull(pi);
216 CFReleaseNull(pi);
220 pi->signature = CFDataCreateMutable(allocator, 0);
222 versionNumber = CFNumberCreateWithCFIndex(NULL, pi
[all...]
/macosx-10.10/ntp-92/util/
H A Dpps-api.c51 pps_info_t pi; local
84 i = time_pps_fetch(ph, PPS_TSFMT_TSPEC, &pi, &to);
87 if (olda == pi.assert_sequence &&
88 oldc == pi.clear_sequence) {
93 Chew(&pi.assert_timestamp, &pi.clear_timestamp,
94 pi.assert_sequence, pi.clear_sequence);
95 olda = pi.assert_sequence;
96 oldc = pi
[all...]
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dbuild.py11 pi = libxml2.newPI("test", "PI content") variable
12 doc.addChild(pi)
28 pi = comment.next variable
29 if pi.type != "pi" or pi.name != "test" or pi.content != "PI content":
32 root = pi.next
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dbuild.py11 pi = libxml2.newPI("test", "PI content") variable
12 doc.addChild(pi)
28 pi = comment.next variable
29 if pi.type != "pi" or pi.name != "test" or pi.content != "PI content":
32 root = pi.next
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DfieldMath.py1 from math import pi, sin, cos, hypot, sqrt
6 return (deg/180.0)*pi
9 return (rad/pi)*180.0
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/FieldGraph/
H A DfieldMath.py1 from math import pi, sin, cos, hypot, sqrt
6 return (deg/180.0)*pi
9 return (rad/pi)*180.0
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/FieldGraph/
H A DfieldMath.py1 from math import pi, sin, cos, hypot, sqrt
6 return (deg/180.0)*pi
9 return (rad/pi)*180.0
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/xbm/
H A Dxbm.c392 ReadXBMFileHeader(pi, widthPtr, heightPtr)
393 ParseInfo *pi;
422 if (NextBitmapWord(pi) != TCL_OK) {
425 if ((pi->wordLength >= 6) && (pi->word[pi->wordLength-6] == '_')
426 && (strcmp(pi->word+pi->wordLength-6, "_width") == 0)) {
427 if (NextBitmapWord(pi) != TCL_OK) {
430 width = strtol(pi
[all...]

Completed in 127 milliseconds

1234567891011>>