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

1 2 3 4 5 6 7 8 91011

  /external/llvm/test/MC/ELF/
undef2.s 5 je .Lfoo
  /external/fio/
eta.c 321 int calc_thread_status(struct jobs_eta *je, int force)
354 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
363 je->is_pow2 = 1;
364 je->unit_base = td->o.unit_base;
371 je->nr_running++;
373 je->t_rate[0] += td->o.rate[DDIR_READ];
374 je->t_iops[0] += td->o.rate_iops[DDIR_READ];
375 je->m_rate[0] += td->o.ratemin[DDIR_READ];
376 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ];
379 je->t_rate[1] += td->o.rate[DDIR_WRITE]
568 struct jobs_eta *je; local
590 struct jobs_eta *je; local
    [all...]
gclient.c 344 static void gfio_update_client_eta(struct fio_client *client, struct jobs_eta *je)
360 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
361 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
362 eta_to_str(eta_str, je->eta_sec);
365 sprintf(tmp, "%u", je->nr_running);
367 sprintf(tmp, "%u", je->files_open);
371 if (je->m_rate[0] || je->m_rate[1] || je->t_rate[0] || je->t_rate[1])
    [all...]
client.c 1031 static void convert_jobs_eta(struct jobs_eta *je)
1035 je->nr_running = le32_to_cpu(je->nr_running);
1036 je->nr_ramp = le32_to_cpu(je->nr_ramp);
1037 je->nr_pending = le32_to_cpu(je->nr_pending);
1038 je->nr_setting_up = le32_to_cpu(je->nr_setting_up);
1039 je->files_open = le32_to_cpu(je->files_open)
1148 struct jobs_eta *je = (struct jobs_eta *) cmd->payload; local
1436 struct jobs_eta *je = (struct jobs_eta *) cmd->payload; local
    [all...]
client.h 78 typedef void (client_eta_op)(struct jobs_eta *je);
80 typedef void (client_jobs_eta_op)(struct fio_client *client, struct jobs_eta *je);
115 extern void fio_client_sum_jobs_eta(struct jobs_eta *dst, struct jobs_eta *je);
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 143 self.je = JetEdit(self, "JETOPEN_CTRLS", self)
145 self.je.ctrls[JetDefs.F_JLIST].AppendItems(fileList)
147 self.je.ctrls[JetDefs.F_JFILE].SetValue(fileList[0])
159 sValue = self.je.ctrls[JetDefs.F_JLIST].GetString(self.je.ctrls[JetDefs.F_JLIST].GetSelection())
160 self.je.ctrls[JetDefs.F_JFILE].SetValue(sValue)
164 sValue = self.je.ctrls[JetDefs.F_JLIST].GetString(self.je.ctrls[JetDefs.F_JLIST].GetSelection())
165 self.je.ctrls[JetDefs.F_JFILE].SetValue(sValue)
167 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue()
    [all...]
  /bionic/libc/arch-x86/atom/string/
ssse3-strcat-atom.S 161 je L(StrncatExit16)
408 je L(StrncatExit1)
412 je L(StrncatExit2)
416 je L(StrncatExit3)
420 je L(StrncatExit4)
424 je L(StrncatExit5)
428 je L(StrncatExit6)
432 je L(StrncatExit7)
448 je L(StrncatExit9)
452 je L(StrncatExit10
    [all...]
ssse3-strlcat-atom.S 115 je L(CalculateLengthOfSrcProlog)
166 je L(StrlcpyExit16)
274 je L(StrlcpyExit1)
278 je L(StrlcpyExit2)
282 je L(StrlcpyExit3)
286 je L(StrlcpyExit4)
290 je L(StrlcpyExit5)
294 je L(StrlcpyExit6)
298 je L(StrlcpyExit7)
311 je L(StrlcpyExit9
    [all...]
ssse3-strcmp-atom.S 132 je L(eq)
138 je L(eq)
144 je L(eq)
150 je L(eq)
156 je L(eq)
162 je L(eq)
168 je L(eq)
174 je L(eq)
181 je L(eq)
228 je L(ashr_0
    [all...]
ssse3-strlcpy-atom.S 140 je L(StrlcpyExit1)
144 je L(StrlcpyExit2)
148 je L(StrlcpyExit3)
152 je L(StrlcpyExit4)
156 je L(StrlcpyExit5)
160 je L(StrlcpyExit6)
164 je L(StrlcpyExit7)
177 je L(StrlcpyExit9)
181 je L(StrlcpyExit10)
185 je L(StrlcpyExit11
    [all...]
  /external/llvm/test/MC/MachO/
relax-jumps.s 20 je L1
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 61 int je[se] = {-1}; local
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
63 assert(base(r) == je + 3);
64 assert(je[0] == 0);
65 assert(je[1] == 1);
66 assert(je[2] == 0);
unique_copy_pred.pass.cpp 80 int je[se] = {-1}; local
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
83 assert(base(r) == je + 3);
84 assert(je[0] == 0);
85 assert(je[1] == 1);
86 assert(je[2] == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 61 int je[se] = {-1}; local
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
63 assert(base(r) == je + 3);
64 assert(je[0] == 0);
65 assert(je[1] == 1);
66 assert(je[2] == 0);
unique_copy_pred.pass.cpp 80 int je[se] = {-1}; local
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
83 assert(base(r) == je + 3);
84 assert(je[0] == 0);
85 assert(je[1] == 1);
86 assert(je[2] == 0);
  /external/llvm/test/MC/COFF/
weak.s 19 je LBB0_2
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonArrayRequest.java 69 } catch (JSONException je) {
70 return Response.error(new ParseError(je));
JsonObjectRequest.java 72 } catch (JSONException je) {
73 return Response.error(new ParseError(je));
  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 81 * @param je
84 public JarEntry(JarEntry je) {
85 super(je);
86 parentJar = je.parentJar;
87 attributes = je.attributes;
88 signers = je.signers;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarInputStreamTest.java 62 JarEntry je = jis.getNextJarEntry(); local
63 while (je != null) {
64 if (je.getName().equals(A_CLASS)) {
67 je = jis.getNextJarEntry();
99 JarEntry je = jis.getNextJarEntry(); local
100 while (je != null) {
101 actual.add(je.toString());
102 je = jis.getNextJarEntry();
148 JarEntry je = jis.getNextJarEntry(); local
149 while (je != null)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldJarEntryTest.java 129 JarEntry je = jarFile.getJarEntry(entryName); local
130 assertNotNull("Jar entry is null", je);
131 jarEntry = new JarEntry(je);
  /bionic/libm/x86/
e_pow.S 278 je .L_2TAG_PACKET_8.0.2
289 je .L_2TAG_PACKET_7.0.2
297 je .L_2TAG_PACKET_11.0.2
342 je .L_2TAG_PACKET_7.0.2
350 je .L_2TAG_PACKET_11.0.2
469 je .L_2TAG_PACKET_16.0.2
471 je .L_2TAG_PACKET_17.0.2
484 je .L_2TAG_PACKET_19.0.2
492 je .L_2TAG_PACKET_20.0.2
512 je .L_2TAG_PACKET_23.0.
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 40 JarEntry je = jarFile.getJarEntry("AndroidManifest.xml"); local
46 InputStream is = jarFile.getInputStream(je);
50 Certificate[] certs = je != null ? je.getCertificates() : null;
  /bionic/libm/x86_64/
e_pow.S 250 je .L_2TAG_PACKET_6.0.2
261 je .L_2TAG_PACKET_9.0.2
306 je .L_2TAG_PACKET_9.0.2
424 je .L_2TAG_PACKET_13.0.2
426 je .L_2TAG_PACKET_14.0.2
436 je .L_2TAG_PACKET_15.0.2
443 je .L_2TAG_PACKET_16.0.2
464 je .L_2TAG_PACKET_19.0.2
494 je .L_2TAG_PACKET_26.0.2
512 je .L_2TAG_PACKET_24.0.
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.cpp 195 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) {
220 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) {
231 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) {
297 for (unsigned j = 0, je = vRrAllowed->size(); j != je; ++j) {
308 for (unsigned j = 0, je = vRrAllowed->size(); j != je; ++j)
    [all...]

Completed in 1215 milliseconds

1 2 3 4 5 6 7 8 91011