/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
Win32PipeStream.cpp | 126 int tries = 10; local 131 for (; tries > 0; tries--) {
|
/bootable/recovery/ |
bootloader.cpp | 147 int tries = 0; local 151 ++tries; 154 printf("stat %s try %d: %s\n", fn, tries, strerror(errno)); 157 } while (ret && tries < 10);
|
/external/eigen/bench/btl/generic_bench/timers/ |
portable_perf_analyzer.hh | 56 for (int i=1; i<BtlConfig::Instance.tries; ++i)
|
/external/eigen/bench/ |
spmv.cpp | 11 #define SPMV_BENCH(CODE) BENCH(t,tries,repeats,CODE); 43 int tries = 2; local 63 tries = atoi(argv[i]+1); 76 std::cout << argv[0] << " r<nb rows> c<nb columns> n<non zeros per column> t<nb tries> p<nb repeats>\n"; 80 std::cout << "SpMV " << rows << " x " << cols << " with " << nnzPerCol << " non zeros per column. (" << repeats << " repeats, and " << tries << " tries)\n\n"; local
|
bench_gemm.cpp | 129 int tries = 2; // number of tries, we keep the best local 142 tries = atoi(argv[i]+1); 151 std::cout << argv[0] << " s<matrix size> c<cache size> t<nb tries> p<nb repeats>\n"; 201 BENCH(tblas, tries, rep, blas_gemm(a,b,c)); 208 BENCH(tmt, tries, rep, gemm(a,b,c)); 219 BENCH(tmono, tries, rep, gemm(a,b,c)); 237 BENCH(t, tries, rep, matlab_cplx_cplx(ar,ai,br,bi,cr,ci)); 250 BENCH(t, tries, rep, matlab_real_cplx(a,br,bi,cr,ci)); 263 BENCH(t, tries, rep, matlab_cplx_real(ar,ai,b,cr,ci)) [all...] |
eig33.cpp | 174 int tries = 10; local 182 BENCH(t, tries, rep, eig.compute(A)); 187 BENCH(t, tries, rep, eigen33(A,evecs,evals));
|
bench_norm.cpp | 217 for (int k=0; k<tries; ++k) { \ 222 for (int k=0; k<tries; ++k) { \ 227 for (int k=0; k<std::max(1,tries/3); ++k) { \ 274 int tries = 10; local
|
/external/ppp/pppd/plugins/radius/ |
buildreq.c | 96 int tries = 1; local 114 tries++; 115 if (tries <= 10) 121 if (tries > 10) { 122 error("rc_get_seqnbr: couldn't get lock after %d tries: %s", tries-1, seqfile);
|
/external/libppp/src/ |
datalink.c | 136 dl->dial.tries = dl->cfg.dial.max; 154 ((!dl->dial.tries || (dl->dial.tries < 0 && !dl->reconnect_tries)) && 157 dl->dial.tries = -1; 169 if (dl->dial.tries < 0) { 171 dl->dial.tries = dl->cfg.dial.max; 216 dl->dial.tries = -1; 220 dl->dial.tries = 0; 234 dl->dial.tries = -1; 276 if (--dl->dial.tries < 0 1172 int timeout, inc, maxinc, tries; local [all...] |
datalink.h | 103 int tries; /* currently try again this number of times */ member in struct:datalink::__anon10757
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
ExtendedWikiHelper.java | 202 int tries = 0; local 203 while (tries++ < RANDOM_TRIES) { 225 // No valid word found in number of tries, so return null
|
/external/webkit/Tools/DumpRenderTree/android/ |
view_source.php | 37 # Very primitive check if path tries to go above DOCUMENT_ROOT or is absolute
|
get_layout_tests_dir_contents.php | 91 # Very primitive check if path tries to go above DOCUMENT_ROOT or is absolute
|
/external/eigen/bench/btl/generic_bench/ |
btl.hh | 172 : overwriteResults(false), checkResults(true), realclock(false), tries(DEFAULT_NB_TRIES) 199 Instance.tries = atoi(config[i+1].c_str()); 238 int tries; member in class:BtlConfig
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
TryListBuilder.java | 141 ArrayList<CodeItem.TryItem> tries = new ArrayList<CodeItem.TryItem>(); local 176 tries.add(tryItem); 181 return new Pair<List<CodeItem.TryItem>, List<CodeItem.EncodedCatchHandler>>(tries, handlers); 263 /*Either the list of tries is blank, or all the tries in the list
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSource.java | 131 int tries = 0; local 133 while (image == null && tries < mBadImageSkipLimit) { 146 tries++;
|
/external/chromium/chrome/common/extensions/docs/js/ |
bootstrap.js | 36 // when the browser tries to resolve any #anchors in the URL. So we reset
|
/external/chromium/net/tools/flip_server/ |
create_listener.cc | 49 // tries - the number of tries to close the socket. 56 bool CloseSocket(int *fd, int tries) { 57 for (int i = 0; i < tries; ++i) {
|
/external/openssh/ |
dh.c | 78 arg = strsep(&cp, " "); /* tries */ 237 int i, bits_set, tries = 0; local 259 if (tries++ > 10)
|
/external/qemu/distrib/sdl-1.2.15/src/audio/windib/ |
SDL_dibaudio.c | 187 int i, left, tries = 5; local 205 } while ( --tries > 0 );
|
/external/webkit/Source/WebCore/manual-tests/inspector-wrappers/ |
inspector-wrappers-test-utils.js | 28 var str = "<p>This test tries to make a cross-domain XMLHttpRequest to " +
|
/hardware/ril/rild/ |
rild.c | 171 int tries = 5; local 198 if (--tries == 0)
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
AbstractSyncService.java | 260 int tries = 0; local 261 while (tries++ < 1) {
|
/external/e2fsprogs/misc/ |
uuidd.c | 92 int tries = 0; local 99 (tries++ < 5)) 104 tries = 0;
|
/dalvik/dx/src/com/android/dx/io/ |
DexBuffer.java | 448 Try[] tries; 456 * We can't read the tries until we've read the catch handlers. 463 tries = triesSection.readTries(triesSize, catchHandlers); 465 tries = new Try[0]; 469 tries, catchHandlers);
|