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

1234567

/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 literal suffixes not starting with '_' are reserved}}
/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/eigen/unsupported/doc/examples/
H A DMatrixSquareRoot.cpp8 const double pi = std::acos(-1.0); local
11 A << cos(pi/3), -sin(pi/3),
12 sin(pi/3), cos(pi/3);
H A DMatrixExponential.cpp8 const double pi = std::acos(-1.0); local
11 A << 0, -pi/4, 0,
12 pi/4, 0, 0,
H A DMatrixFunction.cpp13 const double pi = std::acos(-1.0); local
16 A << 0, -pi/4, 0,
17 pi/4, 0, 0,
/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);
/external/llvm/tools/llvm-objdump/
H A DELFDump.cpp29 for (typename ELFO::Elf_Phdr_Iter pi = o->begin_program_headers(),
31 pi != pe; ++pi) {
32 switch (pi->p_type) {
61 << format(Fmt, (uint64_t)pi->p_offset)
63 << format(Fmt, (uint64_t)pi->p_vaddr)
65 << format(Fmt, (uint64_t)pi->p_paddr)
66 << format("align 2**%u\n", CountTrailingZeros_64(pi->p_align))
68 << format(Fmt, (uint64_t)pi->p_filesz)
70 << format(Fmt, (uint64_t)pi
[all...]
/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverVector.h46 for(Index pi=IsLower ? 0 : size;
47 IsLower ? pi<size : pi>0;
48 IsLower ? pi+=PanelWidth : pi-=PanelWidth)
50 Index actualPanelWidth = (std::min)(IsLower ? size - pi : pi, PanelWidth);
52 Index r = IsLower ? pi : size - pi; // remaining size
58 Index startRow = IsLower ? pi
[all...]
/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/clang/test/CXX/special/class.dtor/
H A Dp10-0x.cpp19 void a(const A *x, int i, int *pi) { argument
35 pi->~decltype(int())();
36 pi.~decltype(int())(); // expected-error{{the type of object expression ('int *') does not match the type being destroyed ('decltype(int())' (aka 'int')) in pseudo-destructor expression}}
37 pi.~decltype(intp())();
38 pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
/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/bison/tests/
H A Dbison.in43 $PERL -pi -e 's{"y\.tab\.}{"parse-gram.}g;' \
/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...]

Completed in 2970 milliseconds

1234567