HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 201 - 225 of 706) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/opencv/cv/src/
cvhaar.cpp 1294 CvAvgComp comp; local
1332 CvAvgComp comp; local
1374 CvAvgComp* comp = (CvAvgComp*)cvGetSeqElem( bseq, i ); local
1414 CvAvgComp comp; local
1453 CvAvgComp comp; local
1498 CvAvgComp* comp = (CvAvgComp*)cvGetSeqElem( seq2, i ); local
    [all...]
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 108 const std::string& comp = components[ndx]; local
109 if (comp == "..")
111 else if (comp == ".")
116 reverseNormalizedComponents.push_back(comp);
  /external/squashfs-tools/squashfs-tools/
mksquashfs.h 154 extern struct compressor *comp;
action.c 1616 static struct dir_ent *lookup_comp(char *comp, struct dir_info *dest)
1621 if(strcmp(comp, dir_ent->name) == 0)
1633 char *comp, *path = pathname; local
2687 char *comp, *path = pathname; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixpath.py 335 for comp in comps:
336 if comp in ('', '.'):
338 if (comp != '..' or (not initial_slashes and not new_comps) or
340 new_comps.append(comp)
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixpath.py 335 for comp in comps:
336 if comp in ('', '.'):
338 if (comp != '..' or (not initial_slashes and not new_comps) or
340 new_comps.append(comp)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 335 for comp in comps:
336 if comp in ('', '.'):
338 if (comp != '..' or (not initial_slashes and not new_comps) or
340 new_comps.append(comp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 335 for comp in comps:
336 if comp in ('', '.'):
338 if (comp != '..' or (not initial_slashes and not new_comps) or
340 new_comps.append(comp)
  /external/jdiff/src/jdiff/
JDiff.java 95 APIComparator comp = new APIComparator(); local
97 comp.compareAPIs(oldAPI, newAPI);
119 reporter.generate(comp, existingComments);
  /external/opencv/ml/src/
_ml.h 69 #define CV_MAT_ELEM_FLAG( mat, type, comp, vect, tflag ) \
71 ? (CV_MAT_ELEM( mat, type, comp, vect )) \
72 : (CV_MAT_ELEM( mat, type, vect, comp )))
  /external/toybox/toys/pending/
tr.c 239 char *comp = xmalloc(256); local
243 else comp[j++] = (char)i;
247 *set = comp;
  /frameworks/base/core/java/android/bluetooth/
BluetoothPan.java 145 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
146 intent.setComponent(comp);
147 if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
BluetoothPbap.java 161 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
162 intent.setComponent(comp);
163 if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
BluetoothPbapClient.java 113 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
114 intent.setComponent(comp);
115 if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
BluetoothSap.java 142 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
143 intent.setComponent(comp);
144 if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
  /packages/apps/MusicFX/src/com/android/musicfx/
Compatibility.java 223 ComponentName comp = new ComponentName(foo.activityInfo.packageName, foo.activityInfo.name); local
226 mPackageManager.setComponentEnabledSetting(comp,
231 mPackageManager.setComponentEnabledSetting(comp,
  /cts/tools/cts-media/
get_achievable_rates.py 345 Comp = namedtuple('Comp', 'is_decoder google mime name')
347 lambda e: Comp(is_decoder=e.is_decoder, google='.google.' in e.codec, mime=e.mime, name=e.codec))
348 for comp in sorted(by_comp):
349 section = 'Decoders' if comp.is_decoder else 'Encoders'
355 yield ' <MediaCodec name="%s" type="%s" update="true">' % (comp.name, comp.mime)
356 by_size = createLookup(by_comp[comp], lambda e: e.size)
  /external/deqp/framework/randomshaders/
rsgVariableValue.hpp 187 for (int comp = 0; comp < 4; comp++)
188 component(comp).asFloat() = vec.getPtr()[comp];
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_motion_comp.cpp 553 Vop *comp; local
583 comp = video->currVop;
585 c_comp = comp->yChan + offset;
586 cu_comp = comp->uChan + (offset >> 2) + (xpos >> 2);
587 cv_comp = comp->vChan + (offset >> 2) + (xpos >> 2);
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 154 String comp = null; local
159 comp = oid.substring(start);
162 comp = oid.substring(start,end);
167 BigInteger bignum = new BigInteger(comp);
181 int num = Integer.parseInt(comp);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 68 Composite comp = new Composite(parent, SWT.NONE); local
69 setControl(comp);
70 comp.setLayout(new GridLayout(1, false));
72 Group grpGdb = new Group(comp, SWT.NONE);
133 Group grpSharedLibraries = new Group(comp, SWT.NONE);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 557 void InternalSort(Container *v, uptr size, Compare comp) {
565 if (comp((*v)[p], (*v)[j]))
580 if (left < i && comp((*v)[max_ind], (*v)[left]))
582 if (right < i && comp((*v)[max_ind], (*v)[right]))
594 const Value &val, Compare comp) {
598 if (comp(v[mid], val))
600 else if (comp(val, v[mid]))
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 612 Coon_Color() { FXSYS_memset(comp, 0, sizeof(int) * 3); }
613 int comp[3]; member in struct:Coon_Color
620 comp[i] =
621 _BiInterpol(colors[0].comp[i], colors[1].comp[i], colors[2].comp[i],
622 colors[3].comp[i], x, y, x_scale, y_scale);
626 max = FXSYS_abs(comp[0] - o.comp[0]);
627 diff = FXSYS_abs(comp[1] - o.comp[1])
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c 334 uint i, j, k, comp; local
340 for (comp = 0; comp < 4; comp++) {
342 aj = util_half_to_float(rowA[j][comp]);
343 ak = util_half_to_float(rowA[k][comp]);
344 bj = util_half_to_float(rowB[j][comp]);
345 bk = util_half_to_float(rowB[k][comp]);
346 dst[i][comp] = util_float_to_half((aj + ak + bj + bk) * 0.25F);
351 uint i, j, k, comp; local
368 uint i, j, k, comp; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
maverick.d 324 # comp:
325 0*4d8 <comp> 0e ?1f ?a4 ?9a ? * cfcmpseq sl, ?mvf15, ?mvf10
326 0*4dc <comp\+0x4> 4e ?13 ?14 ?98 ? * cfcmpsmi r1, ?mvf3, ?mvf8
327 0*4e0 <comp\+0x8> 7e ?11 ?f4 ?9c ? * cfcmpsvc pc, ?mvf1, ?mvf12
328 0*4e4 <comp\+0xc> be ?17 ?04 ?95 ? * cfcmpslt r0, ?mvf7, ?mvf5
329 0*4e8 <comp\+0x10> 3e ?1a ?e4 ?91 ? * cfcmpscc lr, ?mvf10, ?mvf1
330 0*4ec <comp\+0x14> ee ?16 ?54 ?bb ? * cfcmpd r5, ?mvd6, ?mvd11
331 0*4f0 <comp\+0x18> 2e ?10 ?34 ?b5 ? * cfcmpdcs r3, ?mvd0, ?mvd5
332 0*4f4 <comp\+0x1c> ae ?14 ?44 ?be ? * cfcmpdge r4, ?mvd4, ?mvd14
333 0*4f8 <comp\+0x20> 8e ?17 ?24 ?b2 ? * cfcmpdhi r2, ?mvd7, ?mvd
    [all...]

Completed in 1064 milliseconds

1 2 3 4 5 6 7 891011>>