Searched defs:tab (Results 276 - 300 of 318) sorted by path

<<111213

/external/opencv/cv/src/
H A Dcvhistogram.cpp794 icvCalcHistLookupTables8u( const CvHistogram* hist, int dims, int* size, int* tab )
822 tab[i*(hi - lo) + j - lo] = idx;
844 tab[i*(hi - lo) + j - lo] = write_idx;
856 tab[i*(hi - lo) + j - lo] = ICV_HIST_DUMMY_IDX;
874 int* tab; local
882 tab = (int*)cvStackAlloc( dims*256*sizeof(int));
883 status = icvCalcHistLookupTables8u( hist, dims, histsize, tab );
940 int idx = tab[i];
957 int idx = tab[v0] + tab[25
1557 int* tab = 0; local
[all...]
H A Dcvsegmentation.cpp338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \
339 tab[c1-dptr[(ofs0)+1]+255] + tab[c2-dptr[(ofs0)+2]+255] >= isr22)
350 int tab[768]; local
378 tab[i] = (i - 255)*(i - 255);
477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
483 if( tab[t0-c0+255] + tab[t
[all...]
H A Dcvstereobm.cpp114 uchar tab[TABSZ]; local
122 tab[x] = (uchar)(x - OFS < -ftzero ? 0 : x - OFS > ftzero ? ftzero*2 : x - OFS + ftzero);
157 dptr[0] = tab[val + OFS];
163 dptr[x] = tab[val + OFS];
168 dptr[x] = tab[val + OFS];
206 uchar tab[TABSZ]; local
215 tab[x] = (uchar)abs(x - ftzero);
236 htext[y] += tab[lval];
280 htext[y] += tab[lval] - tab[lptr_su
413 uchar tab[TABSZ]; local
[all...]
H A Dcvthresh.cpp49 uchar tab[256]; local
55 tab[i] = 0;
57 tab[i] = maxval;
61 tab[i] = maxval;
63 tab[i] = 0;
67 tab[i] = (uchar)i;
69 tab[i] = thresh;
73 tab[i] = 0;
75 tab[i] = (uchar)i;
79 tab[
[all...]
H A Dcvutils.cpp208 int* idst = (int*)dst, *tab; local
224 tab = (int*)cvStackAlloc( tab_size*sizeof(tab[0]) );
230 tab[i + k] = k + left;
238 tab[i + k] = j + k + left;
248 tab[i + k] = j + k + left;
264 k = tab[j];
269 k = tab[j];
286 k = tab[j];
291 k = tab[
[all...]
/external/opencv/cvaux/src/
H A Dcvhmmobs.cpp180 work_t *tab = tab_y + 2; local
185 k0 = ((work_t) is) * tab[-1];
201 buf[0] = DESCALE( is * tab[-2], PASS1_SHIFT );
211 s += temp1[k] * tab[k];
217 tab += m1;
226 s += temp0[k] * tab[k];
229 tab += m1;
244 work_t *tab = tab_x + 2; local
252 k0 = (work_t) (s * tab[-1]);
268 *obs++ = (float) DESCALE( s * tab[
377 work_t *tab = tab_y + 2; local
441 work_t *tab = tab_x + 2; local
[all...]
/external/opencv/cxcore/src/
H A Dcxarray.cpp3261 static const char* tab[][2] = local
3274 *colorModel = tab[nchannels][0];
3275 *channelSeq = tab[nchannels][1];
H A Dcxcmp.cpp1202 uchar tab[256]; local
1203 CvMat _tab = cvMat( 1, 256, CV_8U, tab );
1208 tab[i] = (uchar)buf.i;
1210 tab[i] = (uchar)i;
1215 tab[i] = (uchar)i;
1217 tab[i] = (uchar)buf.i;
1399 static void icvInit##FUNCNAME##Table( CvFuncTable* tab ) \
1401 tab->fn_2d[CV_8U] = (void*)icv##FUNCNAME##_8u_##suffix; \
1402 tab->fn_2d[CV_16U] = (void*)icv##FUNCNAME##_16u_##suffix; \
1403 tab
[all...]
H A Dcxcopy.cpp904 static CvBtFuncTable tab; local
919 icvInitFlipHorzRTable( &tab );
963 func = (CvFunc2D_2A)(tab.fn_2d[pix_size]);
H A Dcxmatrix.cpp443 static CvBtFuncTable tab, inp_tab; local
458 icvInitTransposeRTable( &tab );
527 CvFunc2D_2A func = (CvFunc2D_2A)(tab.fn_2d[pix_size]);
/external/openssl/crypto/bn/
H A Dbn_gf2m.c137 BN_ULONG tab[8], top2b = a >> 30; local
142 tab[0] = 0; tab[1] = a1; tab[2] = a2; tab[3] = a1^a2;
143 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4;
145 s = tab[
169 BN_ULONG tab[16], top3b = a >> 61; local
[all...]
H A Dbn_kron.c69 /* In 'tab', only odd-indexed entries are relevant:
71 * tab[BN_lsw(n) & 7]
75 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
124 ret = tab[BN_lsw(A) & 7];
164 ret = ret * tab[BN_lsw(B) & 7];
/external/oprofile/module/ia64/
H A Dop_pmu.c584 ctl_table * tab; local
592 if (!(tab = kmalloc(sizeof(ctl_table)*7, GFP_KERNEL)))
595 next->child = tab;
597 memset(tab, 0, sizeof(ctl_table)*7);
598 tab[0] = ((ctl_table) { 1, "enabled", &sysctl_parms.ctr[i].enabled, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
599 tab[1] = ((ctl_table) { 1, "event", &sysctl_parms.ctr[i].event, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
600 tab[2] = ((ctl_table) { 1, "count", &sysctl_parms.ctr[i].count, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
601 tab[3] = ((ctl_table) { 1, "unit_mask", &sysctl_parms.ctr[i].unit_mask, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
602 tab[4] = ((ctl_table) { 1, "kernel", &sysctl_parms.ctr[i].kernel, sizeof(int), 0600, NULL, lproc_dointvec, NULL, });
603 tab[
[all...]
/external/oprofile/module/x86/
H A Dop_nmi.c313 ctl_table * tab; local
322 if (!(tab = kmalloc(sizeof(ctl_table)*7, GFP_KERNEL)))
325 next->child = tab;
327 memset(tab, 0, sizeof(ctl_table)*7);
328 tab[0] = ((ctl_table) { 1, "enabled", &sysctl_parms.ctr[i].enabled, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
329 tab[1] = ((ctl_table) { 1, "event", &sysctl_parms.ctr[i].event, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
330 tab[2] = ((ctl_table) { 1, "count", &sysctl_parms.ctr[i].count, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
331 tab[3] = ((ctl_table) { 1, "unit_mask", &sysctl_parms.ctr[i].unit_mask, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
332 tab[4] = ((ctl_table) { 1, "kernel", &sysctl_parms.ctr[i].kernel, sizeof(int), 0644, NULL, lproc_dointvec, NULL, });
333 tab[
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dasm-util-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/util/ASMifiable.class " package org.objectweb.asm ...
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
/external/qemu/android/
H A Dhw-qemud.c472 uint8_t tab[194]; local
474 memset(tab, 0, sizeof(tab));
480 qemu_chr_write(s->cs, tab, sizeof(tab));
/external/qemu/hw/intc/
H A Dapic.c115 static inline void set_bit(uint32_t *tab, int index) argument
120 tab[i] |= mask;
123 static inline void reset_bit(uint32_t *tab, int index) argument
128 tab[i] &= ~mask;
131 static inline int get_bit(uint32_t *tab, int index) argument
136 return !!(tab[i] & mask);
324 static int get_highest_priority_int(uint32_t *tab) argument
328 if (tab[i] != 0) {
329 return i * 32 + fls_bit(tab[i]);
/external/qemu/
H A Dtranslate-all.c925 static inline void set_bits(uint8_t *tab, int start, int len) argument
930 tab += start >> 3;
935 *tab |= mask;
938 *tab++ |= mask;
942 *tab++ = 0xff;
947 *tab |= mask;
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/skia/experimental/Intersection/
H A DEdgeWalker.cpp417 const int tab = 8; local
477 SkDebugf("%*s %d %sTo (%g,%g)\n", tab, "", lastIndex + 1,
493 SkDebugf("%*s %d gap lineTo (%g,%g)\n", tab, "",
539 SkDebugf("%*s %d %sTo last (%g, %g)\n", tab, "",
546 SkDebugf("%*s %d final line (%g, %g)\n", tab, "",
552 SkDebugf("%*s close\n", tab, "");
558 SkDebugf("%*s advance=%d edgeIndex=%d flip=%s\n", tab, "",
779 const int tab = 8;
795 SkDebugf("%*s.fTs[%d]=%1.9g (%1.9g,%1.9g)\n", tab + sizeof(className),
798 SkDebugf("%*s.fTopIntercepts=%u\n", tab
2233 const int tab = 3; // FIXME: debugging only local
2454 const int tab = 7; // FIXME: debugging only local
[all...]

Completed in 409 milliseconds

<<111213