/external/libcxx/test/std/utilities/time/ |
H A D | clock.h | 18 typedef duration::rep rep; typedef in class:Clock
|
/external/v8/src/ |
H A D | machine-type.cc | 11 std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) { argument 12 switch (rep) {
|
/external/compiler-rt/lib/builtins/ |
H A D | fp_trunc.h | 67 const union { src_t f; src_rep_t i; } rep = {.f = x}; local 68 return rep.i; 72 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; local 73 return rep.f;
|
H A D | fp_extend.h | 79 const union { src_t f; src_rep_t i; } rep = {.f = x}; local 80 return rep.i; 84 const union { dst_t f; dst_rep_t i; } rep = {.i = x}; local 85 return rep.f;
|
/external/dhcpcd-6.8.2/compat/ |
H A D | strtoi.c | 41 int rep; local 46 rstatus = &rep; 81 int rep; local 86 rstatus = &rep;
|
/external/eigen/bench/ |
H A D | quatmul.cpp | 23 int rep = 1000000; local 32 BENCH(t, tries, rep, quatmul_default(a,b,c)); 33 std::cout << label << " default " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n"; 35 BENCH(t, tries, rep, quatmul_novec(a,b,c)); 36 std::cout << label << " novec " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n";
|
H A D | product_threshold.cpp | 53 int rep = 100000./n; local 54 rep /= 2; 55 if(rep<1) rep = 1; 57 rep *= 2; 59 BENCH(t,1,rep,prod<CoeffBasedProductMode>(a,b,c)); 63 BENCH(t,5,rep,prod<Mode>(a,b,c)); 66 std::cout << int(1e-6*n*rep/t.best()) << "\t";
|
H A D | eig33.cpp | 175 int rep = 400000; local 182 BENCH(t, tries, rep, eig.compute(A)); 187 BENCH(t, tries, rep, eigen33(A,evecs,evals));
|
H A D | quat_slerp.cpp | 165 int rep = 100; local 167 for (int w=0; w<rep; ++w) 214 avgerr /= RefScalar(rep*iters);
|
/external/jemalloc/test/unit/ |
H A D | prng.c | 49 unsigned rep; local 52 for (rep = 0; rep < NREPS; rep++) {
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/ |
H A D | wait_until.pass.cpp | 30 typedef duration::rep rep; typedef in struct:Clock
|
H A D | wait_until_pred.pass.cpp | 31 typedef duration::rep rep; typedef in struct:Clock
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/ |
H A D | wait_until.pass.cpp | 29 typedef duration::rep rep; typedef in struct:Clock
|
H A D | wait_until_pred.pass.cpp | 31 typedef duration::rep rep; typedef in struct:Clock
|
/external/guava/guava-tests/benchmark/com/google/common/cache/ |
H A D | MapMakerComparisonBenchmark.java | 57 @Benchmark void computingMapMaker(int rep) { argument 58 for (int i = 0; i < rep; i++) { 63 @Benchmark void loadingCacheBuilder_stats(int rep) { argument 64 for (int i = 0; i < rep; i++) { 69 @Benchmark void loadingCacheBuilder(int rep) { argument 70 for (int i = 0; i < rep; i++) { 75 @Benchmark void concurrentHashMap(int rep) { argument 76 for (int i = 0; i < rep; i++) { 81 @Benchmark void cacheBuilder_stats(int rep) { argument 82 for (int i = 0; i < rep; 87 cacheBuilder(int rep) argument [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
H A D | ReplaceableContextIterator.java | 33 * @param rep Replaceable to iterate over. 36 this.rep=null; 44 * @param rep Iteration text. 46 public void setText(Replaceable rep) { argument 47 this.rep=rep; 48 limit=contextLimit=rep.length(); 81 if(0<=lim && lim<=rep.length()) { 84 limit=rep.length(); 97 } else if(contextStart<=rep 193 protected Replaceable rep; field in class:ReplaceableContextIterator [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | casetrn.cpp | 38 Replaceable *rep=(Replaceable *)csc->p; local 58 c=rep->char32At(csc->index-1); 69 c=rep->char32At(csc->index);
|
H A D | utrans.cpp | 17 #include "unicode/rep.h" 41 UReplaceable *rep; member in class:ReplaceableGlue 92 this->rep = replaceable; 99 return (*func->length)(rep); 103 return (*func->charAt)(rep, offset); 107 return (*func->char32At)(rep, offset); 113 (*func->replace)(rep, start, limit, text.getBuffer(), text.length()); 119 (*func->extract)(rep, start, limit, target.getBuffer(limit-start)); 124 (*func->copy)(rep, start, limit, dest); 398 UReplaceable* rep, [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | ReplaceableContextIterator.java | 32 * @param rep Replaceable to iterate over. 35 this.rep=null; 43 * @param rep Iteration text. 45 public void setText(Replaceable rep) { argument 46 this.rep=rep; 47 limit=contextLimit=rep.length(); 80 if(0<=lim && lim<=rep.length()) { 83 limit=rep.length(); 96 } else if(contextStart<=rep 192 protected Replaceable rep; field in class:ReplaceableContextIterator [all...] |
/external/libdrm/libkms/ |
H A D | vmwgfx.c | 96 struct drm_vmw_dmabuf_rep *rep = &arg.rep; local 113 bo->base.handle = rep->handle; 114 bo->map_handle = rep->map_handle; 115 bo->base.handle = rep->cur_gmr_id; 116 bo->base.offset = rep->cur_gmr_offset;
|
/external/v8/src/compiler/ |
H A D | c-linkage.cc | 164 MachineRepresentation rep = msig->GetReturn(i).representation(); local 165 CHECK_NE(MachineRepresentation::kFloat32, rep); 166 CHECK_NE(MachineRepresentation::kFloat64, rep); 169 MachineRepresentation rep = msig->GetParam(i).representation(); local 170 CHECK_NE(MachineRepresentation::kFloat32, rep); 171 CHECK_NE(MachineRepresentation::kFloat64, rep);
|
H A D | diamond.h | 52 Node* Phi(MachineRepresentation rep, Node* tv, Node* fv) { argument 53 return graph->NewNode(common->Phi(rep, 2), tv, fv, merge);
|
/external/compiler-rt/lib/tsan/dd/ |
H A D | dd_rtl.cc | 39 static void ReportDeadlock(Thread *thr, DDReport *rep) { argument 40 if (rep == 0) 45 for (int i = 0; i < rep->n; i++) { 47 rep->loop[i].thr_ctx, rep->loop[i].mtx_ctx1, rep->loop[i].mtx_ctx0); 48 PrintStackTrace(thr, rep->loop[i].stk[1]); 49 if (rep->loop[i].stk[0]) { 51 rep->loop[i].mtx_ctx0); 52 PrintStackTrace(thr, rep [all...] |
/external/compiler-rt/lib/tsan/tests/rtl/ |
H A D | tsan_test_util_posix.cc | 103 bool OnReport(const ReportDesc *rep, bool suppressed) { argument 105 if (rep->typ != expect_report_type) { 107 (int)expect_report_type, (int)rep->typ);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
H A D | Dominators.java | 142 SsaBasicBlock vAncestorRep = vabbInfo.rep; 143 SsaBasicBlock vRep = vbbInfo.rep; 146 vbbInfo.rep = vAncestorRep; 161 return bbInfo.rep; 261 bbInfo.rep = v; 273 * rep(resentative) is known as "label" in the paper. It is the node 276 public SsaBasicBlock rep; field in class:Dominators.DFSInfo
|