HomeSort by relevance Sort by last modified time
    Searched defs:ms (Results 126 - 150 of 558) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/
JavassistPerfTest.java 68 CtMethod[] ms = cc.getDeclaredMethods(); local
69 for (int j = 0; j < ms.length; ++j) {
87 CtMethod[] ms = cc.getDeclaredMethods(); local
88 for (int j = 0; j < ms.length; ++j) {
89 CtMethod m = ms[j];
BCELPerfTest.java 71 Method[] ms = cg.getMethods(); local
72 for (int j = 0; j < ms.length; ++j) {
73 MethodGen mg = new MethodGen(ms[j], cg.getClassName(), cp);
74 boolean lv = ms[j].getLocalVariableTable() == null;
75 boolean ln = ms[j].getLineNumberTable() == null;
94 cg.replaceMethod(ms[j], mg.getMethod());
112 Method[] ms = cg.getMethods(); local
113 for (int j = 0; j < ms.length; ++j) {
114 MethodGen mg = new MethodGen(ms[j], cg.getClassName(), cp);
128 boolean lv = ms[j].getLocalVariableTable() == null
    [all...]
  /external/ksoap2/kobjects/org/ksoap2/kobjects/isodate/
IsoDate.java 66 int ms = c.get(Calendar.MILLISECOND); local
67 buf.append((char) (((int) '0') + (ms / 100)));
68 dd(buf, ms % 100);
117 int ms = 0; local
123 ms += (d - '0') * f;
126 c.set(Calendar.MILLISECOND, ms);
  /external/libcxx/test/std/thread/futures/futures.async/
async.pass.cpp 32 typedef std::chrono::milliseconds ms; typedef
39 std::this_thread::sleep_for(ms(200));
48 std::this_thread::sleep_for(ms(200));
55 std::this_thread::sleep_for(ms(200));
61 std::this_thread::sleep_for(ms(200));
68 std::this_thread::sleep_for(ms(200));
74 std::this_thread::sleep_for(ms(200));
86 std::this_thread::sleep_for(ms(300));
97 // If the async is deferred it should take more than 100ms, otherwise
98 // it should take less than 100ms
    [all...]
  /external/libevent/
iocp-internal.h 86 long ms; member in struct:event_iocp_port
event_iocp.c 67 long ms = port->ms; local
70 if (ms <= 0)
71 ms = INFINITE;
78 &overlapped, ms);
196 port->ms = -1;
252 DWORD ms = INFINITE; local
261 ms = waitMsec;
263 WaitForSingleObject(port->shutdownSemaphore, ms);
  /external/mdnsresponder/mDNSShared/
PlatformCommon.c 165 int ms = ((t < 0) ? -t : t) % 1000; local
172 fprintf(stderr,"%8d.%03d: %s\n", (int)(t/1000), ms, buffer);
199 syslog(syslog_level, "%8d.%03d: %s", (int)(t/1000), ms, buffer);
  /external/skia/tools/viewer/
StatsLayer.cpp 71 static const SkScalar kBaseMS = 1000.f / 60.f; // ms/frame to hit 60 fps
82 // draw the 16ms line
94 double ms = 0; local
114 ms += inc;
125 mainString.appendf("%4.3f ms -> %4.3f ms", ms / SkTMax(1, count),
132 str.appendf("%s: %4.3f ms", fTimers[timer].fLabel.c_str(),
  /external/skqp/tools/viewer/
StatsLayer.cpp 71 static const SkScalar kBaseMS = 1000.f / 60.f; // ms/frame to hit 60 fps
82 // draw the 16ms line
94 double ms = 0; local
114 ms += inc;
125 mainString.appendf("%4.3f ms -> %4.3f ms", ms / SkTMax(1, count),
132 str.appendf("%s: %4.3f ms", fTimers[timer].fLabel.c_str(),
  /external/v8/src/
compilation-statistics.cc 69 double ms = stats.delta_.InMillisecondsF(); local
76 "\"%s_time\"=%.3f\n\"%s_space\"=%" PRIuS, name, ms, name,
82 name, ms, percent, stats.total_allocated_bytes_,
103 os << " Turbonfan phase Time (ms) "
  /frameworks/base/services/core/java/com/android/server/
MountServiceIdler.java 70 StorageManagerService ms = StorageManagerService.sSelf; local
71 if (ms != null) {
75 ms.runIdleMaint(mFinishCallback);
77 return ms != null;
85 StorageManagerService ms = StorageManagerService.sSelf; local
86 if (ms != null) {
87 ms.abortIdleMaint(mFinishCallback);
  /hardware/akm/AK8975_FS/libsensors/
KionixSensor.cpp 127 int ms; local
136 ms = delay_ns / 1000000;
137 if (ioctl(dev_fd, KIONIX_IOCTL_UPDATE_ODR, &ms)) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.async/
async.pass.cpp 32 typedef std::chrono::milliseconds ms; typedef
39 std::this_thread::sleep_for(ms(200));
48 std::this_thread::sleep_for(ms(200));
55 std::this_thread::sleep_for(ms(200));
61 std::this_thread::sleep_for(ms(200));
68 std::this_thread::sleep_for(ms(200));
74 std::this_thread::sleep_for(ms(200));
86 std::this_thread::sleep_for(ms(300));
97 // If the async is deferred it should take more than 100ms, otherwise
98 // it should take less than 100ms
    [all...]
  /system/bt/btif/src/
btif_debug_conn.cc 40 const uint64_t ms = ts / 1000; local
41 const time_t secs = ms / 1000;
46 snprintf(buffer, len, "%s.%03u", tempbuff, (uint16_t)(ms % 1000));
  /toolchain/binutils/binutils-2.27/libiberty/
pex-msdos.c 109 struct pex_msdos *ms; local
112 ms = (struct pex_msdos *) obj->sysdep;
116 if (ms->files[i] == NULL)
118 ms->files[i] = xstrdup (name);
130 pex_msdos_fdindex (struct pex_msdos *ms, int fd)
133 if (fd < 0 || fd >= PEX_MSDOS_FILE_COUNT || ms->files[fd] == NULL)
144 struct pex_msdos *ms; local
147 ms = (struct pex_msdos *) obj->sysdep;
148 fdindex = pe_msdos_fdindex (ms, fd);
149 free (ms->files[fdindex])
162 struct pex_msdos *ms; local
291 struct pex_msdos *ms; local
308 struct pex_msdos *ms; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultisetTest.java 147 Multiset<String> ms = TreeMultiset.create(); local
148 ms.add("a", 3);
149 ms.add("c", 1);
150 ms.add("b", 2);
152 assertEquals("[a x 3, b x 2, c]", ms.toString());
156 TreeMultiset<String> ms = TreeMultiset.create(); local
157 ms.add("c", 1);
158 ms.add("a", 3);
159 ms.add("b", 2);
160 SortedSet<String> elementSet = ms.elementSet()
172 TreeMultiset<String> ms = TreeMultiset.create(); local
197 TreeMultiset<String> ms = TreeMultiset.create(); local
217 TreeMultiset<String> ms = TreeMultiset.create(); local
237 TreeMultiset<String> ms = TreeMultiset.create(); local
263 TreeMultiset<String> ms = TreeMultiset.create(comparator); local
281 TreeMultiset<String> ms = TreeMultiset.create(comparator); local
311 TreeMultiset<String> ms = TreeMultiset.create(DEGENERATE_COMPARATOR); local
337 TreeMultiset<String> ms = TreeMultiset.create(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/shims/
MediaSetLoader.java 153 MediaSet ms = mMediaSet.getSubMediaSet(index); local
154 return ms == null ? null : ms.getContentUri();
160 MediaSet ms = mMediaSet.getSubMediaSet(index); local
161 if (ms == null) return null;
163 ms.enumerateMediaItems(new MediaSet.ItemConsumer() {
185 MediaSet ms = mMediaSet.getSubMediaSet(index); local
186 if (ms != null) {
187 return ms.getPath();
  /art/runtime/native/
java_lang_Thread.cc 181 static void Thread_sleep(JNIEnv* env, jclass, jobject java_lock, jlong ms, jint ns) {
184 Monitor::Wait(Thread::Current(), lock.Ptr(), ms, ns, true, kSleeping); local
  /art/test/444-checker-nce/src/
Main.java 56 Main[] ms = new Main[1]; local
57 return ms[0];
  /external/clang/test/Analysis/
initializer.cpp 178 const MyStruct &ms; // expected-note {{reference member declared here}} member in struct:ReferenceInitialization::HasMyStruct
183 HasMyStruct() : ms(5), msWithCleanups(OtherStruct(5)) {
184 // expected-warning@-1 {{binding reference member 'ms' to a temporary value}}
190 ms.method(); // no-warning
  /external/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
call_once.pass.cpp 25 typedef std::chrono::milliseconds ms; typedef
33 std::this_thread::sleep_for(ms(250));
50 std::this_thread::sleep_for(ms(250));
116 std::this_thread::sleep_for(ms(250));
122 std::this_thread::sleep_for(ms(250));
  /external/libevent/test/
regress_main.c 94 long ms = end->tv_sec - start->tv_sec; local
95 ms *= 1000;
96 ms += ((end->tv_usec - start->tv_usec)+500) / 1000;
97 return ms;
  /external/lzma/CPP/Windows/
TimeUtils.cpp 60 Byte ms[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
96 ms[1] = 29;
99 unsigned s = ms[mon - 1];
178 Byte ms[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; local
180 ms[1] = 29;
183 numDays += ms[i];
191 // Both variants provide same low resolution on WinXP: about 15 ms.
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_miptree.c 40 const unsigned ms = util_logbase2(mt->base.base.nr_samples); local
52 tile_flags = 0x02 + ms;
60 tile_flags = 0x51 + ms;
68 tile_flags = 0x17 + ms;
74 tile_flags = 0x86 + ms;
81 tile_flags = 0xce + ms;
89 tile_flags = 0xf4 + ms * 2;
95 switch (ms) {
108 if (compressed && ms) {
109 switch (ms) {
    [all...]
  /external/tensorflow/tensorflow/c/eager/
runtime.cc 317 auto* ms = stats->mutable_memory_stats(); local
318 ms->set_temp_memory_size(context.temp_memory_allocated());
320 ms->mutable_persistent_tensor_alloc_ids()->Add(alloc_id);
323 ms->set_persistent_memory_size(context.persistent_memory_allocated());

Completed in 898 milliseconds

1 2 3 4 56 7 8 91011>>