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

1 2 3 4 5 6 7 8 91011

  /external/tcpdump/
gmt2local.c 44 register int dt, dir; local
53 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 +
64 dt += dir * 24 * 60 * 60;
66 return (dt);
  /external/dtc/tests/
check_path.c 39 void *dt, *copy; local
41 dt = load_blob(path);
47 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
overlay_bad_fixup.c 3 * Testcase for DT overlays()
40 void *dt, *copy; local
43 dt = load_blob(path);
49 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE), 0);
overlay.c 3 * Testcase for DT overlays()
189 void *dt, *copy; local
191 dt = load_blob(path);
197 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 25 UDT<double> dt; variable
34 std::real(dt); // expected-error {{no matching function}}
41 std::imag(dt); // expected-error {{no matching function}}
48 std::arg(dt); // expected-error {{no matching function}}
55 std::norm(dt); // expected-error {{no matching function}}
62 std::conj(dt); // expected-error {{no matching function}}
69 std::proj(dt); // expected-error {{no matching function}}
  /external/mesa3d/src/gallium/targets/libgl-gdi/
libgl_gdi.c 117 struct sw_displaytarget *dt = NULL; local
122 dt = llvmpipe_resource(res)->dt;
123 gdi_sw_display(winsys, dt, hDC);
129 dt = softpipe_resource(res)->dt,
130 gdi_sw_display(winsys, dt, hDC);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 36 dt = t2-t1 variable
37 mins, secs = divmod(dt, 60)
149 dt = t2-t1
150 print len(data), "bytes in", round(dt), "seconds",
151 if dt:
152 print "i.e.", round(len(data)/dt), "bytes/sec",
197 dt = t2-t1
198 print size, "bytes in", round(dt), "seconds",
199 if dt:
200 print "i.e.", size//dt, "bytes/sec",
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.h 55 struct sw_displaytarget *dt; member in struct:softpipe_resource
58 * Malloc'ed data for regular buffers and textures, or a mapping to dt above.
  /external/syslinux/core/fs/pxe/
ftp_readdir.c 55 int dt; local
125 dt = dirtype(type);
126 if (dt != DT_UNKNOWN) {
130 dirent->d_type = dt;
  /frameworks/base/services/core/java/com/android/server/notification/
RateEstimator.java 61 double dt = ((double) (now - mLastEventTime)) / 1000.0; local
62 dt = Math.max(dt, MINIMUM_DT);
64 return (RATE_ALPHA * mInterarrivalTime + (1.0 - RATE_ALPHA) * dt);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtl.c 39 double dr, dt, dx; local
98 dt = ft;
99 dr = dt * dt * dt;
100 dt = dt * (dx + dx + dr) / (dx + dr + dr);
103 dr = dt * dt * dt;
    [all...]
  /external/icu/icu4c/source/test/intltest/
caltztst.cpp 190 UDate dt = cal->getTime(status); local
197 return dt;
207 Date dt = date(y, m, d, hr, min, sec) +
216 return dt;
  /external/skia/tools/skdiff/
skdiff_html.cpp 39 SkTime::DateTime dt; local
40 SkTime::GetDateTime(&dt);
42 stream->writeDecAsText(dt.fHour);
44 if (dt.fMinute < 10) {
47 stream->writeDecAsText(dt.fMinute);
49 if (dt.fSecond < 10) {
52 stream->writeDecAsText(dt.fSecond);
  /external/toybox/lib/
dirtree.c 30 struct dirtree *dt = NULL; local
46 dt = xzalloc((len = sizeof(struct dirtree)+len+1)+linklen);
47 dt->parent = parent;
49 memcpy(&(dt->st), &st, sizeof(struct stat));
50 strcpy(dt->name, name);
52 if (linklen) dt->symlink = memcpy(len+(char *)dt, libbuf, linklen);
55 return dt;
65 free(dt);
  /external/toybox/toys/pending/
dumpleases.c 65 unsigned dt, hr, m; local
67 dt = expires / (24*60*60); expires %= (24*60*60);
70 if (dt) xprintf("%u days ", dt);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTimeFactory.java 67 XMPDateTime dt = new XMPDateTimeImpl(); local
68 dt.setYear(year);
69 dt.setMonth(month);
70 dt.setDay(day);
71 dt.setHour(hour);
72 dt.setMinute(minute);
73 dt.setSecond(second);
74 dt.setNanoSecond(nanoSecond);
75 return dt;
  /frameworks/rs/driver/
rsdMeshObj.cpp 59 RsDataType dt = elem->mHal.state.fields[fieldIdx]->mHal.state.dataType; local
60 if (dt != RS_TYPE_FLOAT_32 && dt != RS_TYPE_UNSIGNED_8 &&
61 dt != RS_TYPE_UNSIGNED_16 && dt != RS_TYPE_SIGNED_8 &&
62 dt != RS_TYPE_SIGNED_16) {
  /system/extras/tests/timetest/
timetest.c 80 struct timespec t, dt; local
82 dt = ts_sub(t, t1);
84 dtmin = ts_min(dtmin, dt);
85 if(dt.tv_sec > 0 || dt.tv_nsec > 0)
86 dtminp = ts_min(dtminp, dt);
88 dtmax = ts_max(dtmax, dt);
90 fprintf(stderr,"%09ld.%09ld, dt %ld.%09ld, min %ld.%09ld, minp %ld.%09ld, max %ld.%09ld\n",
91 t.tv_sec, t.tv_nsec, dt.tv_sec, dt.tv_nsec
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
dumpnode.c 146 void dt(Tree *t) function
148 void dt(t)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
AbstractTestLog.java 139 Date dt = c.getTime(); local
140 if(now.compareTo(dt)>=0){
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
AbstractTestLog.java 138 Date dt = c.getTime(); local
139 if(now.compareTo(dt)>=0){
  /external/valgrind/none/tests/amd64/
fma.c 11 } dt __attribute__((aligned (32))); variable in typeref:struct:double_test
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKDateTimeTextPrinting.java 141 LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); local
142 dt = dt.with(field, value);
143 String text = f.format(dt);
151 LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); local
152 dt = dt.with(field, value);
153 String text = f.format(dt);
176 LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); local
178 assertEquals(f.format(dt.with(month)), map.get((long) month.getValue()))
190 LocalDateTime dt = LocalDateTime.of(2010, 1, 1, 0, 0); local
202 LocalDateTime dt = LocalDateTime.of(2010, 2, 1, 0, 0); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
DampedSpring.java 100 float dt = dtMs / mTimeTo90PercentMs; local
101 float dts = dt * mSpringStiffness;
DynamicAnimator.java 54 mLastDrawTimeMillis = mDrawTimeMillis; // On the initial draw, dt is zero.
57 long dt = mDrawTimeMillis - mLastDrawTimeMillis; local
63 renderer.draw(mDrawTimeMillis, dt, canvas);

Completed in 1398 milliseconds

1 2 3 4 5 6 7 8 91011