/external/fio/ |
D | eta.c | 321 int calc_thread_status(struct jobs_eta *je, int force) in calc_thread_status() argument 354 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000; in calc_thread_status() 363 je->is_pow2 = 1; in calc_thread_status() 364 je->unit_base = td->o.unit_base; in calc_thread_status() 371 je->nr_running++; in calc_thread_status() 373 je->t_rate[0] += td->o.rate[DDIR_READ]; in calc_thread_status() 374 je->t_iops[0] += td->o.rate_iops[DDIR_READ]; in calc_thread_status() 375 je->m_rate[0] += td->o.ratemin[DDIR_READ]; in calc_thread_status() 376 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ]; in calc_thread_status() 379 je->t_rate[1] += td->o.rate[DDIR_WRITE]; in calc_thread_status() [all …]
|
D | gclient.c | 344 static void gfio_update_client_eta(struct fio_client *client, struct jobs_eta *je) argument 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]) { 372 if (je->m_rate || je->t_rate) { 375 mr = num2str(je->m_rate, 4, 0, i2p); 376 tr = num2str(je->t_rate, 4, 0, i2p); [all …]
|
D | client.c | 1031 static void convert_jobs_eta(struct jobs_eta *je) in convert_jobs_eta() argument 1035 je->nr_running = le32_to_cpu(je->nr_running); in convert_jobs_eta() 1036 je->nr_ramp = le32_to_cpu(je->nr_ramp); in convert_jobs_eta() 1037 je->nr_pending = le32_to_cpu(je->nr_pending); in convert_jobs_eta() 1038 je->nr_setting_up = le32_to_cpu(je->nr_setting_up); in convert_jobs_eta() 1039 je->files_open = le32_to_cpu(je->files_open); in convert_jobs_eta() 1042 je->m_rate[i] = le32_to_cpu(je->m_rate[i]); in convert_jobs_eta() 1043 je->t_rate[i] = le32_to_cpu(je->t_rate[i]); in convert_jobs_eta() 1044 je->m_iops[i] = le32_to_cpu(je->m_iops[i]); in convert_jobs_eta() 1045 je->t_iops[i] = le32_to_cpu(je->t_iops[i]); in convert_jobs_eta() [all …]
|
D | server.c | 706 struct jobs_eta *je; in handle_send_eta_cmd() local 711 je = get_jobs_eta(1, &size); in handle_send_eta_cmd() 712 if (!je) in handle_send_eta_cmd() 717 je->nr_running = cpu_to_le32(je->nr_running); in handle_send_eta_cmd() 718 je->nr_ramp = cpu_to_le32(je->nr_ramp); in handle_send_eta_cmd() 719 je->nr_pending = cpu_to_le32(je->nr_pending); in handle_send_eta_cmd() 720 je->nr_setting_up = cpu_to_le32(je->nr_setting_up); in handle_send_eta_cmd() 721 je->files_open = cpu_to_le32(je->files_open); in handle_send_eta_cmd() 724 je->m_rate[i] = cpu_to_le32(je->m_rate[i]); in handle_send_eta_cmd() 725 je->t_rate[i] = cpu_to_le32(je->t_rate[i]); in handle_send_eta_cmd() [all …]
|
D | 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/ |
D | 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() 174 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue() 184 if len(self.je.ctrls[JetDefs.F_JFILE].GetValue()) == 0: [all …]
|
/external/opencv3/samples/android/face-detection/jni/ |
D | DetectionBasedTracker_jni.cpp | 94 jclass je = jenv->FindClass("org/opencv/core/CvException"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() local 95 if(!je) in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 96 je = jenv->FindClass("java/lang/Exception"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 97 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 102 jclass je = jenv->FindClass("java/lang/Exception"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() local 103 … jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeCreateObject()"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject() 127 jclass je = jenv->FindClass("org/opencv/core/CvException"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() local 128 if(!je) in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() 129 je = jenv->FindClass("java/lang/Exception"); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() 130 jenv->ThrowNew(je, e.what()); in Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject() [all …]
|
/external/opencv3/modules/java/generator/src/cpp/ |
D | utils.cpp | 54 jclass je = env->FindClass("org/opencv/core/CvException"); in Java_org_opencv_android_Utils_nBitmapToMat2() local 55 if(!je) je = env->FindClass("java/lang/Exception"); in Java_org_opencv_android_Utils_nBitmapToMat2() 56 env->ThrowNew(je, e.what()); in Java_org_opencv_android_Utils_nBitmapToMat2() 61 jclass je = env->FindClass("java/lang/Exception"); in Java_org_opencv_android_Utils_nBitmapToMat2() local 62 env->ThrowNew(je, "Unknown exception in JNI code {nBitmapToMat}"); in Java_org_opencv_android_Utils_nBitmapToMat2() 136 jclass je = env->FindClass("org/opencv/core/CvException"); in Java_org_opencv_android_Utils_nMatToBitmap2() local 137 if(!je) je = env->FindClass("java/lang/Exception"); in Java_org_opencv_android_Utils_nMatToBitmap2() 138 env->ThrowNew(je, e.what()); in Java_org_opencv_android_Utils_nMatToBitmap2() 143 jclass je = env->FindClass("java/lang/Exception"); in Java_org_opencv_android_Utils_nMatToBitmap2() local 144 env->ThrowNew(je, "Unknown exception in JNI code {nMatToBitmap}"); in Java_org_opencv_android_Utils_nMatToBitmap2()
|
/external/avahi/po/ |
D | sl.po | 33 msgstr "Dejanje je spodletelo" 57 msgstr "Ključ zapisa vira je vzorec" 61 msgstr "Krajevno poimenovanje je v sporu" 89 msgstr "Čas je potekel" 109 msgstr "Dostop je zavrnjen" 117 msgstr "Prišlo je do nepričakovane napake vodila D-Bus." 121 msgstr "Povezava z ozadnjim programom je spodletela" 125 msgstr "Pomnilnik je izčrpan" 241 msgstr "Zahtevana operacija je zaradi odvečnosti neveljavna" 388 msgstr "Dejanje odjemalca Avahi je spodletelo: %s" [all …]
|
/external/google-breakpad/src/client/mac/sender/sl.lproj/ |
D | Localizable.strings | 2 "crashDialogHeader" = "Program %@ se je nepričakovano zaprl."; 3 "crashDialogMsg" = "Sistem in ostali programi niso bili prizadeti. Ustvarjeno je bilo poročilo, ki … 5 "noCrashDialogHeader" = "Program %@ je naletel na težavo."; 6 "noCrashDialogMsg" = "Sistem in ostali programi niso bili prizadeti. Ustvarjeno je bilo poročilo, k… 8 …agajte nam razrešiti težavo z opisom dogodkov, ki so se zgodili, preden se je program sesul. Poroč…
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
D | unique_copy.pass.cpp | 61 int je[se] = {-1}; in test() local 62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je)); in test() 63 assert(base(r) == je + 3); in test() 64 assert(je[0] == 0); in test() 65 assert(je[1] == 1); in test() 66 assert(je[2] == 0); in test()
|
D | unique_copy_pred.pass.cpp | 80 int je[se] = {-1}; in test() local 82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal()); in test() 83 assert(base(r) == je + 3); in test() 84 assert(je[0] == 0); in test() 85 assert(je[1] == 1); in test() 86 assert(je[2] == 0); in test()
|
/external/mesa3d/src/mesa/x86/ |
D | read_rgba_span_x86.S | 104 je .L17 152 je .L20 215 je .L32 221 je .L31 303 je .L36 325 je .L35 376 je .L41 381 je .L40 440 je .L47 462 je .L46 [all …]
|
/external/llvm/test/CodeGen/SystemZ/ |
D | fp-cmp-05.ll | 13 ; CHECK-NEXT: je 24 ; CHECK-NEXT: je 37 ; CHECK-NEXT: je 50 ; CHECK-NEXT: je 63 ; CHECK-NEXT: je 74 ; CHECK-NEXT: je
|
D | int-cmp-13.ll | 31 ; CHECK-NEXT: je 43 ; CHECK-NEXT: je 55 ; CHECK-NEXT: je 67 ; CHECK-NEXT: je 79 ; CHECK-NEXT: je 91 ; CHECK-NEXT: je 136 ; CHECK-NEXT: je 148 ; CHECK-NEXT: je 160 ; CHECK-NEXT: je 172 ; CHECK-NEXT: je
|
D | int-cmp-48.ll | 11 ; CHECK: je {{\.L.*}} 34 ; CHECK: je {{\.L.*}} 55 ; CHECK: je {{\.L.*}} 68 ; CHECK: je {{\.L.*}} 151 ; CHECK: je {{\.L.*}} 165 ; CHECK: je {{\.L.*}} 179 ; CHECK: je {{\.L.*}} 194 ; CHECK: je {{\.L.*}} 208 ; CHECK: je {{\.L.*}} 223 ; CHECK: je {{\.L.*}} [all …]
|
D | int-cmp-24.ll | 9 ; CHECK-NEXT: je 22 ; CHECK-NEXT: je 35 ; CHECK-NEXT: je 48 ; CHECK-NEXT: je
|
D | int-cmp-26.ll | 10 ; CHECK-NEXT: je 23 ; CHECK-NEXT: je 61 ; CHECK-NEXT: je 74 ; CHECK-NEXT: je 100 ; CHECK-NEXT: je 113 ; CHECK-NEXT: je
|
D | int-cmp-18.ll | 10 ; CHECK-NEXT: je 23 ; CHECK-NEXT: je 61 ; CHECK-NEXT: je 74 ; CHECK-NEXT: je 100 ; CHECK-NEXT: je 113 ; CHECK-NEXT: je
|
D | int-cmp-28.ll | 10 ; CHECK-NEXT: je 23 ; CHECK-NEXT: je 61 ; CHECK-NEXT: je 74 ; CHECK-NEXT: je 100 ; CHECK-NEXT: je 113 ; CHECK-NEXT: je
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64PBQPRegAlloc.cpp | 195 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local 220 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local 231 for (unsigned j = 0, je = vRaAllowed->size(); j != je; ++j) { in addIntraChainConstraint() local 297 for (unsigned j = 0, je = vRrAllowed->size(); j != je; ++j) { in addInterChainConstraint() local 308 for (unsigned j = 0, je = vRrAllowed->size(); j != je; ++j) { in addInterChainConstraint() local
|
/external/llvm/test/CodeGen/X86/ |
D | xor-icmp.ll | 12 ; X32: je 18 ; X64: je 46 ; X32: je 54 ; X64: je
|
D | peep-test-4.ll | 8 ; CHECK-NEXT: je 26 ; CHECK-NEXT: je 44 ; CHECK-NEXT: je 62 ; CHECK-NEXT: je 80 ; CHECK-NEXT: je 98 ; CHECK-NEXT: je 139 ; CHECK-NEXT: je 158 ; CHECK-NEXT: je 177 ; CHECK-NEXT: je
|
D | atom-bypass-slow-division-64.ll | 12 ; CHECK-NEXT: je 26 ; CHECK-NEXT: je 40 ; CHECK-NEXT: je
|
D | peep-test-3.ll | 13 ; CHECK-NEXT: je 31 ; CHECK-NEXT: je 53 ; CHECK-NEXT: je 78 ; CHECK-NEXT: je
|