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

123456

/external/llvm/utils/lint/
H A Dremove_trailing_whitespace.sh6 perl -pi -e 's/\s+$/\n/' $*
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp1.cpp5 long double operator "" pi(long double); // expected-warning{{user-defined literals not starting with '_' are reserved by the implementation}}
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar_supp.c7 // uninitialised, but we know pi[0] is 0x0
8 int* pi = malloc(sizeof(int)); local
18 syscall(pi[0]+__NR_write, pi[0], pc[0], pi[0]+1);
/external/clang/test/Parser/
H A Dcxx-typeof.cpp4 int *pi; local
6 typeof pi[x] y;
H A Dtypeof.c6 int *pi; local
16 const typeof (*pi) aConstInt;
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodegetuserdata07.js92 var pi;
105 pi = doc.createProcessingInstruction("PITARGET","PIDATA");
107 pi.setUserData("key", pi, null);
109 pi.setUserData("key", pi, nullHandler.handle);
111 retUserData = pi.getUserData("key");
112 success = retUserData.isEqualNode(pi);
H A Dnodecomparedocumentposition12.js89 var pi;
99 pi = doc.createProcessingInstruction("PITarget","PIDATA");
100 appendedChild = doc.appendChild(pi);
101 documentPosition = doc.compareDocumentPosition(pi);
103 piPosition = pi.compareDocumentPosition(doc);
H A Dnodesettextcontent08.js93 var pi;
103 pi = doc.createProcessingInstruction("PIT","PID");
104 appendedChild = elem.appendChild(pi);
105 pi.textContent = "PID";
107 textContent = pi.textContent;
H A Dnoderemovechild09.js92 var pi;
102 pi = doc.createProcessingInstruction("PIT","PID");
103 appendedChild = doc.appendChild(pi);
104 removedPi = doc.removeChild(pi);
H A Dnoderemovechild14.js91 var pi;
100 pi = eRef.lastChild;
102 assertNotNull("piNotNull",pi);
107 removed = eRef.removeChild(pi);
H A Dnoderemovechild26.js92 var pi;
106 pi = ent4.lastChild;
108 assertNotNull("piNotNull",pi);
113 removed = ent4.removeChild(pi);
H A Dnodereplacechild17.js93 var pi;
108 pi = doc.createProcessingInstruction("target","Comment");
109 appendedChild = docFrag.appendChild(pi);
111 replacedCmt = docFrag.replaceChild(pi,cmt);
115 replacedPi = docFrag.replaceChild(cmt,pi);
H A Dnodecomparedocumentposition34.js93 var pi;
106 pi = doc.createProcessingInstruction("PIT","PID");
109 appendedChild = elemMain.appendChild(pi);
112 txtToPiPosition = pi.compareDocumentPosition(txt);
H A Dnodereplacechild12.js90 var pi;
104 pi = doc.createProcessingInstruction("PITarget","PIData");
106 appendedChild = doc.appendChild(pi);
107 replacedNode = doc.replaceChild(comment,pi);
H A Dnodereplacechild23.js94 var pi;
109 pi = doc.createProcessingInstruction("target","data");
113 appendedChild = elem.appendChild(pi);
130 replaced = entRef.replaceChild(pi,cdata);
141 replaced = entRef.replaceChild(comment,pi);
/external/iproute2/tc/
H A Df_rsvp.c46 struct tc_rsvp_gpi *pi = dir ? &pinfo->dpi : &pinfo->spi; local
56 pi->key = htonl(((__u32)tmp)<<16);
57 pi->mask = htonl(0xFFFF0000);
60 pi->key = htonl(((__u32)tmp));
61 pi->mask = htonl(0x0000FFFF);
63 pi->offset = 0;
73 if (pi->mask || argc <= 0)
82 pi->mask = htonl(0xFFFFFFFF);
83 pi->key = htonl(gpi);
84 pi
288 sprint_spi(struct tc_rsvp_gpi *pi, int dir, char *buf) argument
[all...]
/external/fdlibm/
H A De_atan2.c20 * ARG (x+iy) = pi - arctan[y/(-x)] ... if x < 0,
27 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
28 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
30 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
31 * ATAN2(+-INF,+INF ) is +-pi/4 ;
32 * ATAN2(+-INF,-INF ) is +-3pi/4;
33 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
53 pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */ variable
82 case 2: return pi+tiny;/* ieee_atan(+0,-anything) = pi */
[all...]
/external/tremolo/Tremolo/
H A Dfloor0.c199 ogg_uint32_t pi=46341; /* 2**-.5 in 0.16 */ local
208 lsp_loop_asm(&qi,&pi,&qexp,ilsp,wi,m);
210 pi=((pi*pi)>>16);
215 pi*=(1<<14)-((wi*wi)>>14);
216 qi+=pi>>14;
220 pi*=(1<<14)-wi;
223 qi=(qi+pi)>>14;
234 pi*
[all...]
/external/qemu/
H A Dloadpng.c19 png_infop pi = 0; local
30 pi = png_create_info_struct(p);
31 if(pi == 0) {
55 png_destroy_read_struct(&p, &pi, 0);
65 png_read_info(p, pi);
67 png_get_IHDR(p, pi, &width, &height, &bitdepth, &colortype,
78 if(png_get_valid(p, pi, PNG_INFO_tRNS)) {
116 png_destroy_read_struct(&p, &pi, 0);
157 png_infop pi = 0; local
168 pi
[all...]
/external/srtp/crypto/replay/
H A Drdbx.c90 index_init(xtd_seq_num_t *pi) { argument
92 *pi = make64(0,0);
94 *pi = 0;
99 index_advance(xtd_seq_num_t *pi, sequence_number_t s) { argument
103 *pi = make64(high32(*pi) + (s > ~low32(*pi) ? 1 : 0),low32(*pi) + s);
105 *pi += s;
/external/bluetooth/glib/tests/
H A Dchild-test.c61 PROCESS_INFORMATION pi; local
66 memset (&pi, 0, sizeof (pi));
70 if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
75 CloseHandle (pi.hThread);
76 pid = pi.hProcess;
/external/dbus/tools/
H A Ddbus-launch-win.c100 PROCESS_INFORMATION pi; local
141 memset (&pi, 0, sizeof (pi));
156 inherit, flags, 0, 0, &si, &pi);
166 CloseHandle (pi.hProcess);
167 CloseHandle (pi.hThread);
/external/clang/test/FixIt/
H A Dtypo.cpp31 float pi) {
32 return radious * pi; // expected-error{{did you mean 'radius'?}}
30 area(float radius, float pi) argument
/external/emma/core/java12/com/vladium/util/
H A DWCMatcher.java75 // private boolean matches (int pi, int si, final char [] string)
77 // System.out.println ("pi = " + pi + ", si = " + si);
79 // if (pi == m_pattern.length)
83 // switch (m_pattern [pi])
87 // return (si < string.length) && matches (pi + 1, si + 1, string);
92 // return matches (pi + 1, si, string) || ((si < string.length) && matches (pi, si + 1, string));
97 // return (si < string.length) && (m_pattern [pi] == string [si]) && matches (pi
[all...]
/external/srtp/crypto/include/
H A Drdbx.h150 /* index_init(&pi) initializes a packet index pi (sets it to zero) */
153 index_init(xtd_seq_num_t *pi);
155 /* index_advance(&pi, s) advances a xtd_seq_num_t forward by s */
158 index_advance(xtd_seq_num_t *pi, sequence_number_t s);

Completed in 344 milliseconds

123456