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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/test/MC/ELF/
undef2.s 5 je .Lfoo
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
x86-64-relax-1.s 2 je .LBB0_46
4 je .LBB0_46
7 je .LBB0_8
9 je .LBB0_8
11 je .LBB0_46
13 je .LBB0_8
15 je .LBB0_8
18 je .LBB0_8
19 je .LBB0_8
22 je .LBB0_4
    [all...]
x86-64-relax-1.d 10 358: 74 06 je (0x)?360( .*)?
mpx-add-bnd-prefix.s 6 je foo
x86-64-mpx-add-bnd-prefix.s 6 je foo
  /external/fio/
eta.c 354 bool calc_thread_status(struct jobs_eta *je, int force)
387 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
396 je->is_pow2 = 1;
397 je->unit_base = td->o.unit_base;
404 je->nr_running++;
406 je->t_rate[0] += td->o.rate[DDIR_READ];
407 je->t_iops[0] += td->o.rate_iops[DDIR_READ];
408 je->m_rate[0] += td->o.ratemin[DDIR_READ];
409 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ];
412 je->t_rate[1] += td->o.rate[DDIR_WRITE]
626 struct jobs_eta *je; local
648 struct jobs_eta *je; local
    [all...]
gclient.c 341 static void gfio_update_client_eta(struct fio_client *client, struct jobs_eta *je)
357 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
358 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
359 eta_to_str(eta_str, je->eta_sec);
362 sprintf(tmp, "%u", je->nr_running);
364 sprintf(tmp, "%u", je->files_open);
367 if (je->eta_sec != INT_MAX && je->nr_running)
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
JarEntry.java 69 * @param je the <code>JarEntry</code> to copy
71 public JarEntry(JarEntry je) {
72 this((ZipEntry)je);
73 this.attr = je.attr;
74 this.certs = je.certs;
75 this.signers = je.signers;
JarVerifier.java 112 public void beginEntry(JarEntry je, ManifestEntryVerifier mev)
115 if (je == null)
119 debug.println("beginEntry "+je.getName());
122 String name = je.getName();
139 if (je.isDirectory()) {
140 mev.setEntry(null, je);
153 mev.setEntry(null, je);
167 if (je.isDirectory()) {
168 mev.setEntry(null, je);
186 mev.setEntry(name, je);
240 JarEntry je = mev.getEntry(); local
793 JarEntry je = entry; local
    [all...]
  /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...]
  /art/runtime/interpreter/mterp/x86/
zcmp.S 16 je .L_check_not_taken_osr
op_array_length.S 8 je common_errNullObject
  /art/runtime/interpreter/mterp/x86_64/
zcmp.S 16 je .L_check_not_taken_osr
bindivLit8.S 11 je common_errDivideByZero
13 je 2f
op_array_length.S 8 je common_errNullObject
  /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...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiSetMemRep1.c 49 je Exit
EfiZeroMemRep4.c 47 je Exit
  /external/llvm/test/MC/MachO/
relax-jumps.s 16 je L1
  /external/swiftshader/third_party/LLVM/test/MC/MachO/
relax-jumps.s 20 je L1
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
JarTestFinder.java 50 JarEntry je = e.nextElement(); local
51 if (je.isDirectory() || !je.getName().endsWith(".class")
52 || je.getName().contains("$")) {
55 String className = getClassName(je.getName());
  /libcore/ojluni/src/main/java/javax/crypto/
JarVerifier.java 105 JarEntry je = jf.getJarEntry("cryptoPerms"); local
106 if (je == null) {
112 appPerms.load(jf.getInputStream(je));
  /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)
418 JarEntry je = jis.getNextJarEntry(); local
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/
VbeShim.asm 45 je GetInfo
47 je GetModeInfo
49 je SetMode
51 je GetMode
53 je GetPmCapabilities
55 je ReadEdid
57 je SetModeLegacy
101 je KnownMode1
163 je KnownMode2
209 je KnownMode3
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique_copy.pass.cpp 76 int je[se] = {-1}; local
77 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je));
78 assert(base(r) == je + 3);
79 assert(je[0] == 0);
80 assert(je[1] == 1);
81 assert(je[2] == 0);

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>