HomeSort by relevance Sort by last modified time
    Searched defs:pi (Results 76 - 100 of 328) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ToastService.java 68 PendingIntent pi = PendingIntent.getService( local
70 return pi;
UpdateService.java 71 PendingIntent pi = PendingIntent.getService( local
73 return pi;
PhoneService.java 77 PendingIntent pi = PendingIntent.getService( local
79 return pi;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 366 ProcessingInstruction pi = (ProcessingInstruction) node; local
367 String name = pi.getNodeName();
369 // String data = pi.getData();
376 this.m_contentHandler.processingInstruction(pi.getNodeName(),
377 pi.getData());
  /bionic/libc/bionic/
system_properties_compat.c 77 prop_info_compat *pi; local
88 pi = TOC_TO_INFO(pa, entry);
89 if(memcmp(name, pi->name, len)) continue;
91 return (const prop_info *)pi;
100 const prop_info_compat *pi = (const prop_info_compat *)_pi; local
103 serial = pi->serial;
105 __futex_wait((volatile void *)&pi->serial, serial, NULL);
106 serial = pi->serial;
109 memcpy(value, pi->value, len + 1);
110 if(serial == pi->serial)
128 prop_info_compat *pi = TOC_TO_INFO(pa, entry); local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acos.c 19 * acos(x) = pi/2 - asin(x)
20 * acos(-x) = pi/2 + asin(x)
22 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
24 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2)))
31 * acos(x) = pi - 2asin(sqrt((1-|x|)/2))
32 * = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z)
48 pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */ variable
76 else return pi+2.0*pio2_lo; /* acos(-1)= pi */
    [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
BuildInfo.java 67 PackageInfo pi = pm.getPackageInfo(context.getPackageName(), 0); local
69 if (pi.versionCode > 0) {
70 msg = Integer.toString(pi.versionCode);
84 PackageInfo pi = pm.getPackageInfo(context.getPackageName(), 0); local
85 msg = pi.versionName;
  /external/chromium_org/chrome/installer/util/
product.cc 85 PROCESS_INFORMATION pi = {0}; local
92 &si, &pi)) {
95 ::CloseHandle(pi.hThread);
97 DWORD ret = ::WaitForSingleObject(pi.hProcess, INFINITE);
100 if (::GetExitCodeProcess(pi.hProcess, &ret)) {
109 ::CloseHandle(pi.hProcess);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
dtmf_tone_generator_unittest.cc 89 const double pi = 3.14159265358979323846; local
92 double x = attenuate_3dB * sin(2.0 * pi * f1 / fs * (-n - 1))
93 + sin(2.0 * pi * f2 / fs * (-n - 1));
  /external/fdlibm/
e_acos.c 16 * acos(x) = pi/2 - ieee_asin(x)
17 * acos(-x) = pi/2 + ieee_asin(x)
19 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c)
21 * acos(x) = pi/2 - (pi/2 - 2asin(ieee_sqrt((1-x)/2)))
28 * acos(x) = pi - 2asin(ieee_sqrt((1-|x|)/2))
29 * = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=ieee_sqrt(z)
46 pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */ variable
74 else return pi+2.0*pio2_lo; /* ieee_acos(-1)= pi */
    [all...]
  /external/fonttools/Lib/fontTools/misc/
bezierTools.py 253 from math import sqrt, acos, cos, pi namespace
311 x1 = rQ2*cos((theta+2.0*pi)/3.0) - a1/3.0
312 x2 = rQ2*cos((theta+4.0*pi)/3.0) - a1/3.0
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.cpp 156 int32_t pi = pairIndex & ~1; local
158 while (parenSP >= 0 && parenStack[parenSP].pairIndex != pi) {
  /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/libunwind/tests/
Gtest-bt.c 61 unw_proc_info_t pi; local
87 if (unw_get_proc_info (&cursor, &pi) == 0)
90 (long) pi.start_ip, (long) pi.end_ip,
91 (long) pi.handler, (long) pi.lsda, (long) pi.gp);
  /external/qemu/android/
loadpng.c 19 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 = png_create_info_struct(p)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 88 public void pi(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
  /external/tremolo/Tremolo/
asm_arm.h 153 ogg_uint32_t qi=*qip,pi=*pip; local
168 "umull %1,r3,r1,%1;" //pi*=labs(ilsp[j+1]-wi)
192 "umull %1,r3,r0,%1;\n" //pi*=labs(ilsp[j+1]-wi)
202 //qi=(pi>>shift)*labs(ilsp[j]-wi);
203 //pi=(qi>>shift)*labs(ilsp[j+1]-wi);
230 : "+r"(qi),"+r"(pi),"+r"(qexp)
235 *pip=pi;
  /frameworks/base/libs/hwui/utils/
Blur.cpp 67 static float pi = 3.1415926535897932f; local
68 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 )
77 float coeff1 = 1.0f / (sqrt(2.0f * pi) * sigma);
  /frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
AlarmImpl.java 53 PendingIntent pi = PendingIntent.getBroadcast(mContext, 0, wakupIntent, 0); local
55 am.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, atTime, pi);
  /frameworks/testing/uiautomator/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeLoopService.java 83 PendingIntent pi = PendingIntent.getBroadcast(this, 0, wakupIntent, local
86 am.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, atTime, pi);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode14.java 41 * parameters. The returned PI should belong to this document whose systemId is "staff.dtd".
71 ProcessingInstruction pi; local
82 pi = aNewDoc.createProcessingInstruction("target1", "data1");
83 aNode = (ProcessingInstruction) doc.importNode(pi, false);
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_rtti.cpp 61 int * pi; local
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
69 printf(" pi is: %s\n", typeid(pi).name());
70 printf("*pi is: %s\n", typeid(*pi).name());
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 61 int * pi; local
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
69 printf(" pi is: %s\n", typeid(pi).name());
70 printf("*pi is: %s\n", typeid(*pi).name());
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
HttpClientFactory.java 110 PackageInfo pi; local
112 pi = context.getPackageManager().getPackageInfo(
118 pi.packageName,
119 pi.versionName,
  /bionic/tests/
system_properties_test.cpp 72 static void foreach_test_callback(const prop_info *pi, void* cookie) {
75 ASSERT_NE((prop_info *)NULL, pi);
79 static void hierarchical_test_callback(const prop_info *pi, void *cookie) {
85 __system_property_read(pi, name, value);
106 prop_info *pi; local
107 pi = (prop_info *)__system_property_find("property");
111 __system_property_update(pi, "value3", 6);
148 prop_info *pi; local
154 pi = (prop_info *)__system_property_find("property");
155 ASSERT_NE((prop_info *)NULL, pi);
347 const prop_info *pi; local
365 prop_info *pi; local
    [all...]

Completed in 430 milliseconds

1 2 34 5 6 7 8 91011>>