HomeSort by relevance Sort by last modified time
    Searched defs:comp (Results 176 - 200 of 356) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/openssl/ssl/
s3_enc.c 225 COMP_METHOD *comp; local
239 comp=NULL;
241 comp=s->s3->tmp.new_compression->method;
263 if (comp != NULL)
265 s->expand=COMP_CTX_new(comp);
271 if (s->s3->rrec.comp == NULL)
272 s->s3->rrec.comp=(unsigned char *)
274 if (s->s3->rrec.comp == NULL)
299 if (comp != NULL)
301 s->compress=COMP_CTX_new(comp);
395 SSL_COMP *comp; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
CDPlayer.c 568 Component comp = FindNextComponent (NULL, &desc); local
569 if (comp == NULL) {
574 result = OpenAComponent (comp, &theUnit);
  /external/qemu/slirp-android/
misc.c 18 int comp[4]; local
20 if (sscanf(str, "%d.%d.%d.%d", &comp[0], &comp[1], &comp[2], &comp[3]) != 4)
23 if ((unsigned)comp[0] >= 256 ||
24 (unsigned)comp[1] >= 256 ||
25 (unsigned)comp[2] >= 256 ||
26 (unsigned)comp[3] >= 256)
29 *ip = (uint32_t)((comp[0] << 24) | (comp[1] << 16)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
queue.h 188 // comparison function object. Comparison function object COMP is
197 ShortestFirstQueue(C comp)
198 : QueueBase<S>(SHORTEST_FIRST_QUEUE), heap_(comp) {}
530 Compare *comp = 0; local
533 comp = new Compare(distance, *less);
544 delete comp;
553 delete comp;
567 CHECK(comp);
568 queues_[i] = new ShortestFirstQueue<StateId, Compare>(*comp);
586 delete comp;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_intra_prediction.c 846 u32 i, comp, block; local
870 for (comp = 0, block = 16; comp < 2; comp++)
    [all...]
h264bsd_reconstruct.c 124 u32 comp; local
154 for (comp = 0; comp <= 1; comp++)
157 ptrA = pRef + (comp * height + (u32)y0) * width + x0;
158 cbr = predPartChroma + comp * 8 * 8;
220 u32 comp; local
250 for (comp = 0; comp <= 1; comp++
314 u32 comp; local
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 281 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
282 intent.setComponent(comp);
283 if (comp == null || !mContext.bindService(intent, mConnection, 0)) {
    [all...]
BluetoothHealth.java 489 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0); local
490 intent.setComponent(comp);
491 if (comp == null || !mContext.bindService(intent, mConnection, 0)) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsFragment.java 317 final RootComparator comp = new RootComparator(); local
318 Collections.sort(clouds, comp);
319 Collections.sort(locals, comp);
  /frameworks/base/tools/aapt/
StringPool.cpp 85 int comp = configTypeName.compare(o.configTypeName); local
86 if (comp != 0) {
87 return comp;
93 comp = configs[i].compareLogical(o.configs[i]);
94 if (comp != 0) {
95 return comp;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 92 Comparator comp = new ReversedComparator(); local
93 TreeMap reversedTreeMap = new TreeMap(comp);
95 .comparator() == comp);
135 Comparator comp = new ReversedComparator(); local
136 TreeMap reversedTreeMap = new TreeMap(comp);
141 anotherTreeMap.comparator() == comp);
  /packages/apps/Camera2/src/com/android/camera/data/
CameraDataAdapter.java 246 Comparator<LocalData> comp = new LocalData.NewestFirstComparator(); local
248 && comp.compare(data, mImages.get(pos)) > 0; pos++);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalSource.java 101 Comparator<MediaItem> comp = DataManager.sDateTakenComparator; local
103 path, comp, new MediaSet[] {imageSet, videoSet}, bucketId);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bz2.py 306 def comp(): function in function:BZ2FileTest.testThreading
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bz2.py 306 def comp(): function in function:BZ2FileTest.testThreading
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
  /external/chromium/base/
tracked_objects.cc 772 int comp = strcmp(left.location().file_name(), local
774 if (comp)
775 return 0 > comp;
781 int comp = strcmp(left.location().function_name(), local
783 if (comp)
784 return 0 > comp;
836 int comp = strcmp(left.location().file_name(), local
838 if (comp)
845 int comp = strcmp(left.location().function_name(), local
847 if (comp)
    [all...]
  /external/chromium/chrome/browser/themes/
theme_service.cc 389 std::string comp = WideToUTF8(*alignments); local
390 const char* component = comp.c_str();
  /external/chromium_org/third_party/libxslt/libxslt/
variables.c 525 cur->comp = elem->comp;
703 if (cur->comp != NULL) {
704 if (cur->comp->type == XSLT_FUNC_WITHPARAM)
706 else if (cur->comp->type == XSLT_FUNC_PARAM)
787 * @comp: the compiled XSLT instruction
798 xsltStyleItemVariablePtr comp = local
801 xsltStylePreCompPtr comp = castedComp;
829 if ((comp != NULL) && (comp->comp != NULL))
1025 xsltStyleBasicItemVariablePtr comp; local
1027 xsltStylePreCompPtr comp; local
1726 xsltStyleBasicItemVariablePtr comp = local
1774 xsltStyleBasicItemVariablePtr comp = local
1921 xsltStyleBasicItemVariablePtr comp; local
1983 xsltStyleItemVariablePtr comp; local
2045 xsltStyleItemParamPtr comp; local
2108 xsltStyleItemVariablePtr comp; local
2150 xsltStyleItemParamPtr comp; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_priv.h 113 const struct xa_composite *comp; member in struct:xa_context
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir.cpp 751 ir_constant *comp = ir_constant::zero(mem_ctx, type->fields.structure[i].type); local
752 c->components.push_tail(comp);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_emit.c 1373 GLuint comp = c->aa_dest_stencil_reg \/ 2; local
1491 GLuint comp = c->dest_depth_reg \/ 2; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 59 GLuint comp; local
116 for (comp = 0; comp < 4; ++comp) {
117 const GLuint coord = GET_SWZ(inst->SrcReg[arg].Swizzle, comp);
119 if (channel_mask & (1 << comp) && coord <= SWIZZLE_W)
135 GLuint comp; local
140 for (comp = 0; comp < 4; ++comp) {
254 GLuint i, rem = 0, comp; local
539 GLuint comp, read_mask; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 141 #include <openssl/comp.h>
333 const SSL_COMP *comp; local
348 comp=s->s3->tmp.new_compression;
353 printf("\talg= %ld/%ld, comp= %p\n",
356 comp);
390 if (comp != NULL)
392 s->expand=COMP_CTX_new(comp->method);
398 if (s->s3->rrec.comp == NULL)
399 s->s3->rrec.comp=(unsigned char *)
401 if (s->s3->rrec.comp == NULL
584 SSL_COMP *comp; local
    [all...]
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 465 RangeComparison comp = CharRange::compare(replacementRange, range, local
467 assert(comp == Range_Contained);
468 if (comp != Range_Contained)
531 RangeComparison comp = newRange.compareWith(*RI); local
532 switch (comp) {
  /external/icu4c/common/
normalizer2.cpp 424 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
427 ComposeNormalizer2 comp; member in struct:Norm2AllModes
514 return allModes!=NULL ? &allModes->comp : NULL;
535 return allModes!=NULL ? &allModes->comp : NULL;
547 return allModes!=NULL ? &allModes->comp : NULL;
688 return &allModes->comp;
    [all...]

Completed in 1641 milliseconds

1 2 3 4 5 6 78 91011>>