HomeSort by relevance Sort by last modified time
    Searched defs:di (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/libs/hwui/tests/unit/
DeviceInfoTests.cpp 27 const DeviceInfo* di = DeviceInfo::get(); local
28 ASSERT_NE(nullptr, di) << "DeviceInfo initialization failed";
29 EXPECT_EQ(2048, di->maxTextureSize()) << "Max texture size didn't match";
  /external/libunwind/src/mi/
Gfind_dynamic_proc_info.c 44 unw_dyn_info_t *di; local
53 for (di = list->first; di; di = di->next)
54 if (ip >= di->start_ip && ip < di->end_ip)
55 return unwi_extract_dynamic_proc_info (as, ip, pi, di, need_unwind_info,
Gget_proc_name.c 61 unw_dyn_info_t *di = pi.unwind_info; local
66 switch (di->format)
69 ret = intern_string (as, a, di->u.pi.name_ptr, buf, buf_len, arg);
Gdyn-remote.c 127 free_dyn_info (unw_dyn_info_t *di)
129 switch (di->format)
132 if (di->u.pi.regions)
134 free_regions (di->u.pi.regions);
135 di->u.pi.regions = NULL;
140 if (di->u.ti.table_data)
142 free (di->u.ti.table_data);
143 di->u.ti.table_data = NULL;
155 unw_word_t *addr, unw_dyn_info_t *di, void *arg)
160 switch (di->format
210 unw_dyn_info_t *di = NULL; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsWapPushReceiver.java 59 final Intent di = new Intent(); local
60 di.setClass(context, MmsMessagingDemo.class);
61 di.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
62 di.putExtra(MmsMessagingDemo.EXTRA_NOTIFICATION_URL, location);
63 context.startActivity(di);
SmsMessageReceiver.java 66 Intent di = new Intent(); local
67 di.setClass(context, SmsReceivedDialog.class);
68 di.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
69 di.putExtra(SmsReceivedDialog.SMS_FROM_ADDRESS_EXTRA, fromAddress);
70 di.putExtra(SmsReceivedDialog.SMS_FROM_DISPLAY_NAME_EXTRA, fromDisplayName);
71 di.putExtra(SmsReceivedDialog.SMS_MESSAGE_EXTRA, message.getMessageBody().toString());
72 context.startActivity(di);
  /packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
SmsMessageReceiver.java 76 Intent di = new Intent(); local
77 di.setClass(context, DialogSmsDisplay.class);
78 di.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP |
80 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, fromAddress);
81 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
82 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);
87 di.setType(Integer.toString(notificationId));
89 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, di, 0);
  /external/libvpx/libvpx/test/
vp8_decrypt_test.cc 64 vpx_decrypt_init di = { test_decrypt_cb, &encrypted[0] }; local
65 decoder.Control(VPXD_SET_DECRYPTOR, &di);
vp9_decrypt_test.cc 64 vpx_decrypt_init di = { test_decrypt_cb, &encrypted[0] }; local
65 decoder.Control(VPXD_SET_DECRYPTOR, &di);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp8_decrypt_test.cc 65 vp8_decrypt_init di = { test_decrypt_cb, &encrypted[0] }; local
66 decoder.Control(VP8D_SET_DECRYPTOR, &di);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/
no_op_insn.s 15 .global di
16 di: label
17 di label
  /toolchain/binutils/binutils-2.25/libiberty/
cp-demint.c 187 struct d_info di; local
201 cplus_demangle_init_info (mangled, options, len, &di);
203 di.comps = ((struct demangle_component *)
204 malloc (di.num_comps * sizeof (struct demangle_component)));
205 di.subs = ((struct demangle_component **)
206 malloc (di.num_subs * sizeof (struct demangle_component *)));
207 if (di.comps == NULL || di.subs == NULL)
209 free (di.comps);
210 free (di.subs)
    [all...]
safe-ctype.c 129 #define di _sch_isdigit macro
145 #define D (const unsigned short) (di |xd|pr) /* decimal digit */
  /external/icu/android_icu4j/src/main/java/android/icu/util/
DateInterval.java 59 DateInterval di = (DateInterval)a; local
60 return fromDate == di.fromDate && toDate == di.toDate;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DateInterval.java 63 DateInterval di = (DateInterval)a; local
64 return fromDate == di.fromDate && toDate == di.toDate;
  /external/libopus/celt/
laplace.c 74 int di; local
78 di = IMIN(val - i, ndi_max - 1);
79 fl += (2*di+1+s)*LAPLACE_MINP;
81 *value = (i+di+s)^s;
118 int di; local
119 di = (fm-fl)>>(LAPLACE_LOG_MINP+1);
120 val += di;
121 fl += 2*di*LAPLACE_MINP;
  /external/libunwind/src/coredump/
_UPT_get_dyn_info_list_addr.c 41 unw_dyn_info_t *di; local
59 di = tdep_find_unwind_table (&ui->edi, as, path, lo, off);
60 if (di)
62 res = _Uia64_find_dyn_list (as, di, arg);
  /external/clang/test/CodeGenCXX/
debug-info-template-explicit-specialization.cpp 38 d<int> di; variable
  /packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
DialogSmsDisplayTests.java 277 Intent di = new Intent(); local
278 di.setClass(dialogSmsDisplayActivity, DialogSmsDisplay.class);
279 di.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP |
281 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, dest);
282 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
283 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);
284 dialogSmsDisplayActivity.onNewIntent(di);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jnf.c 38 float a, b, temp, di; local
139 for(i=n-1,di=(float)(i+i);i>0;i--){
141 b *= di;
144 di -= two;
147 for(i=n-1,di=(float)(i+i);i>0;i--){
149 b *= di;
152 di -= two;
e_jn.c 59 double a, b, temp, di; local
183 for(i=n-1,di=(double)(i+i);i>0;i--){
185 b *= di;
188 di -= two;
191 for(i=n-1,di=(double)(i+i);i>0;i--){
193 b *= di;
196 di -= two;
  /external/fdlibm/
e_jn.c 61 double a, b, temp, di; local
186 for(i=n-1,di=(double)(i+i);i>0;i--){
188 b *= di;
191 di -= two;
194 for(i=n-1,di=(double)(i+i);i>0;i--){
196 b *= di;
199 di -= two;
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/google/gwt/corp/compatibility/
Compatibility.java 99 int di = data[i]; local
100 hex[i << 1] = Character.forDigit((di >> 4) & 15, 16);
101 hex[(i << 1) + 1] = Character.forDigit(di & 15, 16);
  /external/libunwind/tests/
Gtest-dyn1.c 171 unw_dyn_info_t di; local
202 memset (&di, 0, sizeof (di));
203 di.start_ip = (long) mem;
204 di.end_ip = (long) mem + 16*region->insn_count/3;
205 di.gp = get_gp (fdesc);
206 di.format = UNW_INFO_FORMAT_DYNAMIC;
207 di.u.pi.name_ptr = (unw_word_t) "copy_of_template";
208 di.u.pi.regions = region;
210 _U_dyn_register (&di);
    [all...]
  /external/valgrind/coregrind/m_demangle/
safe-ctype.c 135 #define di _sch_isdigit macro
151 #define D (const unsigned short) (di |xd|pr) /* decimal digit */

Completed in 712 milliseconds

1 2 3 4 5 6 7 8