HomeSort by relevance Sort by last modified time
    Searched full:best (Results 1 - 25 of 2948) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 96 double best; local
99 best=s[0];pos=0;
100 if(s[1]>best){best=s[1];pos=1;}
101 if(s[2]>best){best=s[2];pos=2;}
107 double best; local
110 best=s[0];pos=0;
111 if(s[1]>best){best=s[1];pos=1;
119 double best; local
132 double best; local
146 double best; local
161 double best; local
176 double best; local
193 double t,best; local
204 double t,best; local
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities_indexing.h 96 double best; local
99 best=s[0];pos=0;
100 if(s[1]>best){best=s[1];pos=1;}
101 if(s[2]>best){best=s[2];pos=2;}
107 double best; local
110 best=s[0];pos=0;
111 if(s[1]>best){best=s[1];pos=1;
119 double best; local
132 double best; local
146 double best; local
161 double best; local
176 double best; local
193 double t,best; local
204 double t,best; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 96 double best; local
99 best=s[0];pos=0;
100 if(s[1]>best){best=s[1];pos=1;}
101 if(s[2]>best){best=s[2];pos=2;}
107 double best; local
110 best=s[0];pos=0;
111 if(s[1]>best){best=s[1];pos=1;
119 double best; local
132 double best; local
146 double best; local
161 double best; local
176 double best; local
193 double t,best; local
204 double t,best; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_CompareMV.c 14 * the best MV and SAD
29 * best MV and SAD
37 * [in] bestMVX x coordinate of the best motion vector
38 * [in] bestMVY y coordinate of the best motion vector
39 * [in] bestSAD best SAD
42 * OMX_INT -- 1 to indicate that the current sad is the best
43 * 0 to indicate that it is NOT the best SAD
  /frameworks/base/docs/html/training/
best-performance.jd 1 page.title=Best Practices for Performance
best-security.jd 1 page.title=Best Practices for Security & Privacy
best-ux.jd 1 page.title=Best Practices for User Experience & UI
8 <p>These classes focus on the best Android user experience for your app.
best-user-input.jd 1 page.title=Best Practices for User Input
advanced.jd 5 <p>Advanced Training contains a variety of classes that teach you best practices in Android
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_CompareMotionCostToMV.c 14 * the best MV and SAD
67 * best MV and best MC
76 * [in] bestMV Best MV, contains best MV till the previous interation.
78 * [in] *pBestCost Contains the current best motion cost.
79 * [out] *pBestCost pBestCost Motion cost will be associated with the best MV
82 * than the best cost passed then the *pBestCost will be equal to candCost
83 * [out] bestMV Finally will have the best MV after the judgement.
86 * OMX_INT -- 1 to indicate that the current motion cost is the best
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
misc.c 24 int i,best; local
30 best = -1;
35 best = i;
40 if (best > -1) (*pos) += best_len;
41 return best;
  /bionic/libc/upstream-netbsd/libc/inet/
inet_ntop.c 135 struct { int base, len; } best, cur; local
151 best.base = -1;
152 best.len = 0;
163 if (best.base == -1 || cur.len > best.len)
164 best = cur;
170 if (best.base == -1 || cur.len > best.len)
171 best = cur;
173 if (best.base != -1 && best.len < 2
    [all...]
  /external/openssh/openbsd-compat/
inet_ntop.c 119 struct { int base, len; } best, cur; local
132 best.base = -1;
142 if (best.base == -1 || cur.len > best.len)
143 best = cur;
149 if (best.base == -1 || cur.len > best.len)
150 best = cur;
152 if (best.base != -1 && best.len < 2
    [all...]
  /external/tcpdump/missing/
inet_ntop.c 117 } best, cur; local
129 best.base = -1;
141 if (best.base == -1 || cur.len > best.len)
142 best = cur;
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len))
147 best = cur;
148 if (best.base != -1 && best.len < 2
    [all...]
  /external/clang/test/SemaCXX/
overloaded-builtin-operators-0x.cpp 1 // RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++11 -verify %s
  /external/eigen/bench/
quatmul.cpp 33 std::cout << label << " default " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n";
36 std::cout << label << " novec " << 1e3*t.best(CPU_TIMER) << "ms \t" << 1e-6*double(rep)/(t.best(CPU_TIMER)) << " M mul/s\n";
bench_gemm.cpp 129 int tries = 2; // number of tries, we keep the best
202 std::cout << "blas cpu " << tblas.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tblas.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tblas.total(CPU_TIMER) << "s)\n";
203 std::cout << "blas real " << tblas.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tblas.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tblas.total(REAL_TIMER) << "s)\n";
209 std::cout << "eigen cpu " << tmt.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(CPU_TIMER) << "s)\n";
210 std::cout << "eigen real " << tmt.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(REAL_TIMER) << "s)\n";
220 std::cout << "eigen mono cpu " << tmono.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" (…)
    [all...]
  /ndk/sources/host-tools/make-3.81/
strcache.c 60 struct strcache *best = NULL; local
71 the blocks and choose the one with the best fit (the one that leaves the
74 if (sp->bytesfree > len && (!best || best->bytesfree > sp->bytesfree))
75 best = sp;
78 if (!best)
79 best = new_cache();
81 assert (best->bytesfree > len);
83 /* Add the string to the best cache. */
84 res = best->end
    [all...]
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoAndroidHarness.java 22 if (eglConfig.equals("Best"))
24 eglConfigType = ConfigType.BEST;
  /packages/apps/Bluetooth/res/values-de/
test_strings.xml 7 <string name="update_record" msgid="2480425402384910635">"Aufnahme bestätigen"</string>
8 <string name="ack_record" msgid="6716152390978472184">"Aufnahme bestätigen"</string>
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator.c 120 WebRtc_Word32 best[4]= {-100, -100, -100, -100}; local
124 if (in[k] > best[3]) {
125 if (in[k] > best[2]) {
126 if (in[k] > best[1]) {
127 if (in[k] > best[0]) { // The Best
128 best[3] = best[2];
130 best[2] = best[1]
    [all...]
  /external/kernel-headers/original/asm-generic/
mman.h 13 #define MAP_STACK 0x20000 /* give out an address that is best suited for process/thread stacks */
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GetVideoInfo.3 11 This function returns a read-only pointer to \fIinformation\fR about the video hardware\&. If this is called before \fISDL_SetVideoMode\fR, the \fBvfmt\fR member of the returned structure will contain the pixel format of the "best" video mode\&.
  /external/harfbuzz/contrib/tables/
BidiMirroring.txt 26 # A comment indicates where the characters are "BEST FIT" mirroring.
81 2268; 2269 # [BEST FIT] LESS-THAN BUT NOT EQUAL TO
82 2269; 2268 # [BEST FIT] GREATER-THAN BUT NOT EQUAL TO
85 226E; 226F # [BEST FIT] NOT LESS-THAN
86 226F; 226E # [BEST FIT] NOT GREATER-THAN
87 2270; 2271 # [BEST FIT] NEITHER LESS-THAN NOR EQUAL TO
88 2271; 2270 # [BEST FIT] NEITHER GREATER-THAN NOR EQUAL TO
89 2272; 2273 # [BEST FIT] LESS-THAN OR EQUIVALENT TO
90 2273; 2272 # [BEST FIT] GREATER-THAN OR EQUIVALENT TO
91 2274; 2275 # [BEST FIT] NEITHER LESS-THAN NOR EQUIVALENT T
    [all...]
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Bump.glsllib 14 // best depth
27 if (d <= h) bd = depth; // best depth

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>