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

1 2 3 4 5 6 7 891011>>

  /external/openssl/crypto/cms/
cms_cd.c 62 #include <openssl/comp.h>
  /external/openssl/crypto/comp/
comp_lib.c 5 #include <openssl/comp.h>
  /external/openssl/crypto/stack/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /external/openssl/include/openssl/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /external/ppp/pppd/
chap_ms.h 84 #include <net/ppp-comp.h> /* MPPE_MAX_KEY_LEN */
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.c 215 Component comp; local
244 comp = FindNextComponent (NULL, &desc);
245 if (comp == NULL) {
251 result = OpenAComponent (comp, &outputAudioUnit);
  /hardware/intel/common/libstagefrighthw/
WrsOMXPlugin.cpp 135 WrsOMXComponent comp; local
137 comp.mComponent = *component;
138 comp.mCore = mCores[i];
140 mComponents.push_back(comp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/
types.pass.cpp 25 // Compare comp;
37 assert(comp(1, 2));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
splay-tree.h 107 splay_tree_compare_fn comp; variable
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
MainLaunchConfigTab.java 125 Composite comp = new Composite(parent, SWT.NONE); local
126 setControl(comp);
129 comp.setLayout(topLayout);
130 comp.setFont(font);
131 createProjectEditor(comp);
132 createVerticalSpacer(comp, 1);
135 Group group = new Group(comp, SWT.NONE);
  /sdk/emulator/opengl/tests/translator_tests/GLES_CM/
triangleCM.cpp 57 unsigned char *genTexture(int width, int height, int comp)
59 unsigned char *img = new unsigned char[width * height * comp];
65 for (int c = 0; c < comp; c++) {
73 unsigned char *genRedTexture(int width, int height, int comp)
75 unsigned char *img = new unsigned char[width * height * comp];
76 memset(img,0,width*height*comp);
82 ptr+=comp;
  /external/chromium_org/third_party/libxslt/libxslt/
templates.c 47 * @comp: the XPath compiled expression
57 xsltEvalXPathPredicate(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
76 res = xmlXPathCompiledEval(comp, ctxt->xpathCtxt);
106 * @comp: the compiled XPath expression
117 xsltEvalXPathStringNs(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
138 res = xmlXPathCompiledEval(comp, ctxt->xpathCtxt);
169 * @comp: the compiled XPath expression
177 xsltEvalXPathString(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp) {
178 return(xsltEvalXPathStringNs(ctxt, comp, 0, NULL));
298 xmlXPathCompExprPtr comp; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlregexp.c 309 xmlRegexpPtr comp; /* the compiled regexp */ member in struct:_xmlRegExecCtxt
4210 xmlRegexpPtr comp; local
    [all...]
  /external/libxml2/
xmlregexp.c 313 xmlRegexpPtr comp; /* the compiled regexp */ member in struct:_xmlRegExecCtxt
4220 xmlRegexpPtr comp; local
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_addr.c 245 UINT8 comp[3]; local
248 comp[0] = p_mgnt_cb->random_bda[5];
249 comp[1] = p_mgnt_cb->random_bda[4];
250 comp[2] = p_mgnt_cb->random_bda[3];
254 if (!memcmp(p->param_buf, &comp[0], 3))
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.cpp 42 int comp = 0; local
52 comp = GetInt();
109 if (comp == 1 || comp == 2) {
111 } else if (comp == 3) {
  /external/skia/src/images/
bmpdecoderhelper.cpp 42 int comp = 0; local
52 comp = GetInt();
109 if (comp == 1 || comp == 2) {
111 } else if (comp == 3) {
  /external/libpng/
pngwutil.c 479 png_text_compress_init(compression_state *comp, png_const_bytep input,
482 comp->input = input;
483 comp->input_len = input_len;
484 comp->output_len = 0;
490 compression_state *comp, png_uint_32 prefix_len)
504 ret = png_deflate_claim(png_ptr, chunk_name, comp->input_len);
517 png_alloc_size_t input_len = comp->input_len; /* may be zero! */
521 png_ptr->zstream.next_in = PNGZ_INPUT_CAST(comp->input);
523 png_ptr->zstream.next_out = comp->output;
524 png_ptr->zstream.avail_out = (sizeof comp->output)
1195 compression_state comp; local
1626 compression_state comp; local
1679 compression_state comp; local
    [all...]
  /external/opencv/cv/src/
cvmotempl.cpp 471 CvConnectedComp comp; local
477 &comp, CV_FLOODFILL_MASK_ONLY + 2*256 + 4, mask8u ));
479 for( y1 = 0; y1 < comp.rect.height; y1++ )
482 (comp.rect.y + y1)*mask->step) + comp.rect.x;
484 (comp.rect.y + y1+1)*mask8u->step + comp.rect.x+1;
486 for( x1 = 0; x1 < comp.rect.width; x1++ )
496 cvSeqPush( components, &comp );
  /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...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 132 ComponentName comp = new ComponentName(mServiceItem.mServiceInfo.packageName, local
139 new String[] { "-a", "service", comp.flattenToString() });
141 Log.w(TAG, "Can't dump service: " + comp, e);
152 Log.w(TAG, "Can't read service dump: " + comp, e);
353 final ComponentName comp = rpi.importanceReasonComponent; local
355 // + " pid=" + rpi.importanceReasonPid + " comp=" + comp);
541 ActiveDetail activeDetailForService(ComponentName comp) {
545 && comp.equals(ad.mServiceItem.mRunningService.service)) {
552 private void showConfirmStopDialog(ComponentName comp) {
    [all...]
  /art/compiler/optimizing/
code_generator_arm.cc 597 void LocationsBuilderARM::VisitCondition(HCondition* comp) {
598 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(comp);
600 locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1)));
601 if (comp->NeedsMaterialization()) {
604 comp->SetLocations(locations);
607 void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) {
608 if (!comp->NeedsMaterialization()) return;
610 LocationSummary* locations = comp->GetLocations();
626 __ it(ARMCondition(comp->GetCondition()), kItElse);
628 ARMCondition(comp->GetCondition()))
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 40 void Copy_MB_from_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width);
41 void Copy_B_from_Vop(UChar *comp, Int cChan[], Int width);
42 void Copy_MB_into_Vop(UChar *comp, Int yChan[][NCOEFF_BLOCK], Int width);
43 void Copy_B_into_Vop(UChar *comp, Int cChan[], Int width);
    [all...]
  /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);
  /external/chromium_org/third_party/bsdtrees/
tree.h 593 int comp = 0; \
597 comp = (cmp)(elm, parent); \
598 if (comp < 0) \
600 else if (comp > 0) \
607 if (comp < 0) \
623 int comp; \
625 comp = cmp(elm, tmp); \
626 if (comp < 0) \
628 else if (comp > 0) \
642 int comp; \
    [all...]

Completed in 1297 milliseconds

1 2 3 4 5 6 7 891011>>