HomeSort by relevance Sort by last modified time
    Searched refs:pi (Results 51 - 75 of 1091) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/external/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(-,-) */
  /external/libxml2/python/tests/
build.py 11 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":
30 print("error rereading PI")
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/PackageAccessApp/src/com/android/cts/packageaccessapp/
PackageAccessTest.java 54 PackageInfo pi = pm.getPackageInfo(TINY_PKG, 0); local
55 assertNotNull(pi);
65 PackageInfo pi = pm.getPackageInfo(TINY_PKG, PackageManager.MATCH_UNINSTALLED_PACKAGES); local
66 assertNotNull(pi);
76 PackageInfo pi = pm.getPackageInfo(TINY_PKG, 0); local
78 assertNull(pi);
87 PackageInfo pi = pm.getPackageInfo(TINY_PKG, PackageManager.MATCH_UNINSTALLED_PACKAGES); local
89 assertNull(pi);
99 for (PackageInfo pi : packages) {
100 if (TINY_PKG.equals(pi.packageName))
    [all...]
  /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 50 for(Index pi=IsLower ? 0 : size;
51 IsLower ? pi<size : pi>0;
52 IsLower ? pi+=PanelWidth : pi-=PanelWidth)
54 Index actualPanelWidth = (std::min)(IsLower ? size - pi : pi, PanelWidth);
56 Index r = IsLower ? pi : size - pi; // remaining size
62 Index startRow = IsLower ? pi : pi-actualPanelWidth
    [all...]
  /external/eigen/blas/
PackedTriangularSolverVector.h 32 for(Index pi=0; pi<size; ++pi)
34 Index i = IsLower ? pi : size-pi-1;
36 if (pi>0)
37 rhs[i] -= (ConjLhsType(LhsMap(lhs+s,pi))
38 .cwiseProduct(Map<const Matrix<RhsScalar,Dynamic,1> >(rhs+(IsLower ? 0 : i+1),pi))).sum();
41 IsLower ? lhs += pi+1 : lhs -= pi+2
    [all...]
  /bionic/libc/system_properties/include/system_properties/
contexts.h 42 virtual void ForEach(void (*propfn)(const prop_info* pi, void* cookie), void* cookie) = 0;
system_properties.h 61 int Read(const prop_info* pi, char* name, char* value);
62 void ReadCallback(const prop_info* pi,
67 int Update(prop_info* pi, const char* value, unsigned int len);
69 uint32_t Serial(const prop_info* pi);
71 bool Wait(const prop_info* pi, uint32_t old_serial, uint32_t* new_serial_ptr,
74 int Foreach(void (*propfn)(const prop_info* pi, void* cookie), void* cookie);
  /external/clang/test/Parser/
typeof.c 6 int *pi; local
16 const typeof (*pi) aConstInt;
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_control_c.cc 72 PROCESS_INFORMATION pi; local
73 memset(&pi, 0, sizeof(pi));
83 &si, &pi)) {
90 if (WaitForSingleObject(pi.hProcess, INFINITE) == WAIT_FAILED) {
98 if (!GetExitCodeProcess(pi.hProcess, &rc)) {
110 CloseHandle(pi.hProcess);
111 CloseHandle(pi.hThread);
  /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)
83 pi->mask = htonl(0xFFFFFFFF);
84 pi->key = htonl(gpi);
85 pi->offset = 4
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
dumpcycles.c 52 int *pi; local
62 for (pi=FoStack[k]; pi <= FoTOS[k]; pi++) {
64 fprintf(stderr,"#%d rule %d %s\n",i,*pi,RulePtr[*pi]->rname);
  /external/clang/test/SemaCXX/
libstdcxx_pair_swap_hack.cpp 54 using PI = std::CLASS<int, int>;
57 PI pi;
60 static_assert(!noexcept(pi.swap(pi)), "");
69 CLASS<int, int> pi;
71 static_assert(!noexcept(pi.swap(pi)), ""); // expected-note {{in instantiation of}}
  /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/python/cpython2/PC/
w9xpopen.c 31 PROCESS_INFORMATION pi; local
97 &si, &pi
103 if (WaitForSingleObject(pi.hProcess, INFINITE) != WAIT_FAILED) {
104 GetExitCodeProcess(pi.hProcess, &exit_code);
106 CloseHandle(pi.hProcess);
107 CloseHandle(pi.hThread);
  /bionic/libm/upstream-freebsd/lib/msun/src/
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...]
  /device/google/contexthub/firmware/lib/libm/
ef_atan2.c 28 pi = 3.1415927410e+00, /* 0x40490fdb */ variable
56 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
57 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
76 case 2: return pi+tiny ; /* atan(+...,-INF) */
77 case 3: return -pi-tiny ; /* atan(-...,-INF) */
97 case 2: return pi-(z-pi_lo);/* atan(+,-) */
99 return (z-pi_lo)-pi;/* atan(-,-) */
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_atan2.c 28 * ARG (x+iy) = pi - arctan[y/(-x)] ... if x < 0,
35 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
36 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
38 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
39 * ATAN2(+-INF,+INF ) is +-pi/4 ;
40 * ATAN2(+-INF,-INF ) is +-3pi/4;
41 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2;
58 pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */ variable
83 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
    [all...]
  /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...]
  /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}}
  /external/tremolo/Tremolo/
floor0.c 86 /* interpolated lookup based cos function, domain 0 to PI only */
87 /* a is in 0.16 format, where 0==0, 2^^16-1==PI, return 0.14 */
96 /* a is in 0.16 format, where 0==0, 2^^16==PI, return .LSP_FRACBITS */
179 /* lsp is in 8.24, range 0 to PI; coslook wants it in .16 0 to 1*/
199 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)
    [all...]
  /external/toybox/toys/pending/
lsof.c 41 struct proc_info pi; member in struct:file_info
65 if (fi->pi.pid != TT.last_shown_pid)
66 printf("%d\n", TT.last_shown_pid = fi->pi.pid);
76 fi->pi.cmd, fi->pi.pid, getusername(fi->pi.uid),
94 snprintf(toybuf, sizeof(toybuf), "/proc/%d/fdinfo/%s", fi->pi.pid, fi->fd);
289 struct file_info *new_file_info(struct proc_info *pi, const char *fd)
295 fi->pi = *pi;
386 struct proc_info pi; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPermissionUtil.java 104 private boolean shouldTargetPermission(String pkg, PermissionInfo pi) throws RemoteException {
105 int flags = mPm.getPermissionFlags(pi.name, pkg, UserHandle.myUserId());
108 return pi.group != null && pi.protectionLevel == PermissionInfo.PROTECTION_DANGEROUS
110 && isModernPermissionGroup(pi.group);
132 PermissionInfo pi = mPm.getPermissionInfo(perm, "shell", 0); local
133 if (pi != null && shouldTargetPermission(info.packageName, pi)) {
134 permissions.add(pi);
155 for (PermissionInfo pi : e.getValue())
    [all...]
  /external/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
TestTypecast.java 25 int pi = 0; local
26 i = pi;
27 o = pi;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
SimpleVectorialPointChecker.java 78 final double pi = p[i]; local
80 final double difference = FastMath.abs(pi - ci);
81 final double size = FastMath.max(FastMath.abs(pi), FastMath.abs(ci));

Completed in 1152 milliseconds

1 23 4 5 6 7 8 91011>>