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

1 2 3 4 5 6

  /external/emma/core/java12/com/vladium/emma/data/
ICoverageData.java 22 public DataHolder (final boolean [][] coverage, final long stamp)
25 m_stamp = stamp;
41 * can return data holder with a different version stamp than cls.getStamp()
46 void addClass (boolean [][] coverage, String classVMName, long stamp);
ClassDescriptor.java 29 public ClassDescriptor (final String packageVMName, final String name, final long stamp,
50 m_stamp = stamp;
174 final long stamp = in.readLong (); local
186 return new ClassDescriptor (packageVMName, name, stamp, srcFileName, methods);
CoverageData.java 71 public void addClass (final boolean [][] coverage, final String classVMName, final long stamp)
73 m_coverageMap.put (classVMName, new DataHolder (coverage, stamp));
172 final long stamp = in.readLong (); local
181 coverageMap.put (classVMName, new DataHolder (coverage, stamp));
  /external/tcpdump/
Makefile-devel-adds 8 # autoheader might not change config.h.in, so touch a stamp file.
9 ${srcdir}/config.h.in: ${srcdir}/stamp-h.in
10 ${srcdir}/stamp-h.in: configure.in acconfig.h
12 echo timestamp > ${srcdir}/stamp-h.in
14 config.h: stamp-h
15 stamp-h: ${srcdir}/config.h.in config.status
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicStampedReference.java 11 * along with an integer "stamp", that can be updated atomically.
25 final int stamp; field in class:AtomicStampedReference.Pair
26 private Pair(T reference, int stamp) {
28 this.stamp = stamp;
30 static <T> Pair<T> of(T reference, int stamp) {
31 return new Pair<T>(reference, stamp);
42 * @param initialStamp the initial stamp
58 * Returns the current value of the stamp.
60 * @return the current value of the stamp
    [all...]
  /external/bluetooth/glib/debian/
rules 7 build: build-stamp
8 build-stamp:
12 touch build-stamp
14 build-dbg: build-dbg-stamp
15 build-dbg-stamp:
19 touch build-dbg-stamp
24 rm -f build-stamp build-dbg-stamp install-stamp install-dbg-stamp
    [all...]
  /external/stlport/test/compiler/
gcc.mak 1 # -*- Makefile -*- Time-stamp: <04/03/14 23:50:57 ptr>
  /external/blktrace/btt/
iostat.c 60 "avgrq-sz avgqu-sz await svctm %%util Stamp\n");
83 void __dump_stats(__u64 stamp, int all, struct d_info *dip, struct stats_t *asp)
88 double now = TO_SEC(stamp);
91 dt = (double)stamp / 1.0e9;
94 dt = (double)(stamp-last_start) / 1.0e9;
135 fprintf(iostat_ofp, "%8.2lf\n", TO_SEC(stamp));
161 static void __dump_stats_t(__u64 stamp, struct stats_t *asp, int all)
182 fprintf(iostat_ofp, "%8.2lf\n", TO_SEC(stamp));
192 void iostat_dump_stats(__u64 stamp, int all)
206 __dump_stats(stamp, all, dip, &as)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 26 struct timeval stamp; member in struct:ebt_ulog_packet_msg
  /frameworks/compile/libbcc/
libbcc-gen-build-stamp.mk 46 # Build Rules for Automatically Generated Build Stamp
47 GEN := $(local-intermediates-dir)/libbcc-stamp.c
51 $(GEN): PRIVATE_CUSTOM_TOOL = $(PRIVATE_PATH)/tools/gen-build-stamp.py \
53 $(GEN): $(LOCAL_PATH)/tools/gen-build-stamp.py $(LOCAL_LIBBCC_LIB_DEPS) \
Android.mk 53 libbcc_GEN_SHA1_STAMP := $(LOCAL_PATH)/tools/gen-sha1-stamp.py
147 # Generate build stamp (Build time + Build git revision + Build Semi SHA1)
148 include $(LOCAL_PATH)/libbcc-gen-build-stamp.mk
215 # Generate build stamp (Build time + Build git revision + Build Semi SHA1)
216 include $(LOCAL_PATH)/libbcc-gen-build-stamp.mk
  /external/dropbear/debian/
rules 28 patch: deb-checkdir patch-stamp
29 patch-stamp:
33 touch patch-stamp
35 config.status: patch-stamp configure
43 build: deb-checkdir build-stamp
44 build-stamp: config.status
46 touch build-stamp
50 test ! -e patch-stamp || \
54 rm -f patch-stamp build-stamp config.log config.statu
    [all...]
  /external/webkit/Tools/wx/packaging/debian/
rules 8 build: build-stamp
9 build-stamp: $(PYVERS:%=build-python%)
15 rm -rf *-stamp build-python* build
21 install: build-stamp install-prereq $(PYVERS:%=install-python%) install-libs install-nover
23 install-prereq: build-stamp
  /external/chromium/sdch/open-vcdiff/packages/deb/
rules 45 build: build-stamp
46 build-stamp: config.status
52 touch build-stamp
57 rm -f build-stamp
  /external/qemu/android/camera/
camera-common.h 197 const uint64_t stamp = _get_timestamp(); local
198 if ((stamp / 1000) >= (wake_at / 1000)) {
201 t.tv_sec = (wake_at - stamp) / 1000000;
202 t.tv_usec = (wake_at - stamp) - (uint64_t)t.tv_sec * 1000000;
  /frameworks/base/core/res/
Android.mk 38 framework_RenderScript_STAMP_FILE := $(framework_GENERATED_SOURCE_DIR)/RenderScript.stamp
  /external/webkit/Source/WebCore/loader/icon/
IconRecord.h 86 void setTimestamp(time_t stamp) { m_stamp = stamp; }
  /external/bluetooth/glib/
Makefile.am 82 BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h
83 glibconfig.h: stamp-gc-h
85 else rm -f stamp-gc-h; $(MAKE) stamp-gc-h; fi
86 stamp-gc-h: config.status
88 echo timestamp > stamp-gc-h
116 DISTCLEANFILES = glibconfig-sysdefs.h glibconfig.h stamp-gc-h config.lt
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertFactoryPerfTest.java 359 byte[] stamp = new byte[10];
364 System.arraycopy(tmp, 0, stamp, 0, tmp.length);
365 System.arraycopy(stamp, 0, certEncoding,
366 certEncoding.length-stamp.length, stamp.length);
372 byte[] stamp_chek = new byte[stamp.length];
374 System.arraycopy(enc, enc.length - stamp.length,
375 stamp_chek, 0, stamp.length);
377 if (!Arrays.equals(stamp, stamp_chek)) {
383 byte[] stamp = new byte[10]
    [all...]
X509CRLImplTest.java 247 byte[] stamp = new byte[10];
252 System.arraycopy(tmp, 0, stamp, 0, tmp.length);
253 System.arraycopy(stamp, 0, encoding,
254 encoding.length-stamp.length, stamp.length);
265 byte[] stamp_chek = new byte[stamp.length];
267 System.arraycopy(enc, enc.length - stamp.length,
268 stamp_chek, 0, stamp.length);
270 if (!Arrays.equals(stamp, stamp_chek)) {
  /external/chromium/chrome/browser/extensions/
convert_web_app.cc 73 double stamp = day_fraction * std::numeric_limits<uint16>::max(); local
76 stamp = stamp >= (floor(stamp) + 0.5) ? (stamp + 1) : stamp;
82 static_cast<uint16>(stamp));
  /external/bluetooth/glib/tests/
bookmarkfile-test.c 72 time_t stamp; local
115 &stamp,
119 g_assert (stamp == g_bookmark_file_get_modified (bookmark, TEST_URI_0, NULL));
125 &stamp,
  /external/qemu/telephony/
sms.h 37 extern void sms_timestamp_now( SmsTimeStamp stamp );
38 extern int sms_timestamp_to_tm( SmsTimeStamp stamp, struct tm* tm );
sms.c 226 sms_timestamp_now( SmsTimeStamp stamp )
233 stamp->data[0] = gsm_int_to_bcdi( local.tm_year % 100 );
234 stamp->data[1] = gsm_int_to_bcdi( local.tm_mon+1 );
235 stamp->data[2] = gsm_int_to_bcdi( local.tm_mday );
236 stamp->data[3] = gsm_int_to_bcdi( local.tm_hour );
237 stamp->data[4] = gsm_int_to_bcdi( local.tm_min );
238 stamp->data[5] = gsm_int_to_bcdi( local.tm_sec );
246 stamp->data[6] = gsm_int_to_bcdi( tzdiff >= 0 ? tzdiff : -tzdiff );
248 stamp->data[6] |= 0x08;
252 sms_timestamp_to_tm( SmsTimeStamp stamp, struct tm* tm
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 105 public static void r (final boolean [][] coverage, final String classVMName, final long stamp)
126 cdata.addClass (coverage, classVMName, stamp);

Completed in 941 milliseconds

1 2 3 4 5 6