HomeSort by relevance Sort by last modified time
    Searched refs:pi (Results 1 - 25 of 464) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/Inputs/
tokens-between-ifndef-and-define.h 3 const int pi = 3; variable
  /external/llvm/utils/lint/
remove_trailing_whitespace.sh 6 perl -pi -e 's/\s+$/\n/' $*
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p1.cpp 5 long double operator "" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar_supp.c 7 // 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/
cxx-typeof.cpp 4 int *pi; local
6 typeof pi[x] y;
typeof.c 6 int *pi; local
16 const typeof (*pi) aConstInt;
  /external/eigen/unsupported/doc/examples/
MatrixSquareRoot.cpp 8 const double pi = std::acos(-1.0); local
11 A << cos(pi/3), -sin(pi/3),
12 sin(pi/3), cos(pi/3);
MatrixExponential.cpp 8 const double pi = std::acos(-1.0); local
11 A << 0, -pi/4, 0,
12 pi/4, 0, 0,
MatrixFunction.cpp 13 const double pi = std::acos(-1.0); local
16 A << 0, -pi/4, 0,
17 pi/4, 0, 0,
  /bionic/libc/bionic/
system_properties_compat.c 75 prop_info_compat *pi; local
86 pi = TOC_TO_INFO(pa, entry);
87 if(memcmp(name, pi->name, len)) continue;
89 return (const prop_info *)pi;
98 const prop_info_compat *pi = (const prop_info_compat *)_pi; local
101 serial = pi->serial;
103 __futex_wait((volatile void *)&pi->serial, serial, 0);
104 serial = pi->serial;
107 memcpy(value, pi->value, len + 1);
108 if(serial == pi->serial)
126 prop_info_compat *pi = TOC_TO_INFO(pa, entry); local
    [all...]
  /external/llvm/tools/llvm-objdump/
ELFDump.cpp 29 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<uint64_t>(pi->p_align))
68 << format(Fmt, (uint64_t)pi->p_filesz)
70 << format(Fmt, (uint64_t)pi->p_memsz
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
arg.pass.cpp 31 const double pi = std::atan2(+0., -0.); local
46 is_about(r, -pi);
48 is_about(r, pi);
59 is_about(r, -pi/2);
61 is_about(r, pi/2);
68 is_about(r, -pi);
70 is_about(r, pi);
89 is_about(r, 0.75 * pi);
91 is_about(r, -0.75 * pi);
96 is_about(r, 0.25 * pi);
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_atan2f.c 28 pi = 3.1415927410e+00; /* 0x40490fdb */ variable
53 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
54 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
73 case 2: return pi+tiny ; /* atan(+...,-INF) */
74 case 3: return -pi-tiny ; /* atan(-...,-INF) */
92 case 2: return pi-(z-pi_lo);/* atan(+,-) */
94 return (z-pi_lo)-pi;/* atan(-,-) */
e_atan2.c 23 * ARG (x+iy) = pi - arctan[y/(-x)] ... if x < 0,
30 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
31 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
33 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
34 * ATAN2(+-INF,+INF ) is +-pi/4 ;
35 * ATAN2(+-INF,-INF ) is +-3pi/4;
36 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
56 pi = 3.1415926535897931160E+00; /* 0x400921FB, 0x54442D18 */ variable
82 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
    [all...]
  /system/core/toolbox/
watchprops.c 36 const prop_info *pi)
43 *value = __system_property_serial(pi);
47 static void populate_watchlist(const prop_info *pi, void *cookie)
53 __system_property_read(pi, name, value_unused);
54 add_to_watchlist(watchlist, name, pi);
57 static void update_watchlist(const prop_info *pi, void *cookie)
64 __system_property_read(pi, name, value);
67 add_to_watchlist(watchlist, name, pi);
70 unsigned tmp = __system_property_serial(pi);
  /external/clang/test/CXX/temp/temp.spec/
cxx1y-variable-template-no-body.cpp 7 T pi = T(3.1415926535897932385); // expected-note {{template is declared here}} variable
9 template int pi<int>; variable
12 template float pi; // expected-error {{too few template arguments for template 'pi'}} variable
  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 46 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 : pi-actualPanelWidth
    [all...]
  /bionic/libc/include/sys/
_system_properties.h 70 ** 1. serial = pi->serial
72 ** 3. memcpy(local, pi->value, SERIAL_VALUE_LEN(serial) + 1)
73 ** 4. if pi->serial != serial, goto 2
76 ** 1. pi->serial = pi->serial | 1
77 ** 2. memcpy(pi->value, local_value, value_len)
78 ** 3. pi->serial = (value_len << 24) | ((pi->serial + 1) & 0xffffff)
119 int __system_property_update(prop_info *pi, const char *value, unsigned int len);
126 unsigned int __system_property_serial(const prop_info *pi);
    [all...]
system_properties.h 73 int __system_property_read(const prop_info *pi, char *name, char *value);
97 void (*propfn)(const prop_info *pi, void *cookie),
  /external/iproute2/tc/
f_rsvp.c 46 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->offset = 4
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_pointer.h 43 } pi; local
44 pi.p = p;
45 return pi.i;
54 } pi; local
55 pi.i = i;
56 return pi.p;
  /external/mesa3d/src/gallium/auxiliary/util/
u_pointer.h 43 } pi; local
44 pi.p = p;
45 return pi.i;
54 } pi; local
55 pi.i = i;
56 return pi.p;
  /external/fdlibm/
e_atan2.c 20 * 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...]
  /ndk/sources/host-tools/gdb-stub/
gdb-stub.c 85 PROCESS_INFORMATION pi; local
167 memset(&pi, 0, sizeof(pi));
180 ,&pi // receives PROCESS_INFORMATION
185 if ( AssignProcessToJobObject(ghJob, pi.hProcess) == 0 ) {
192 WaitForSingleObject(pi.hProcess, INFINITE);
195 GetExitCodeProcess(pi.hProcess, &exitCode)
200 CloseHandle( pi.hProcess );
201 CloseHandle( pi.hThread );
  /external/clang/test/CXX/special/class.dtor/
p10-0x.cpp 19 void a(const A *x, int i, int *pi) {
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}}

Completed in 1062 milliseconds

1 2 3 4 5 6 7 8 91011>>