Searched refs:extras (Results 1 - 25 of 27) sorted by relevance

12

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DTBSCertificateStructure.java111 for (int extras = seq.size() - (seqStart + 6) - 1; extras > 0; extras--)
113 DERTaggedObject extra = (DERTaggedObject)seq.getObjectAt(seqStart + 6 + extras);
/external/valgrind/tsan/
H A Dmk-self-contained-tsan-pin.sh69 tar zcvh -C $IN_DIR $TAR_EXCLUDE $IN_FILES -C $PIN_ROOT ./{extras,ia32,intel64,pin} >> $OUT
H A DMakefile34 -I$(PIN_ROOT)/extras/xed2-$(PIN_ARCH)/include -I$(PIN_ROOT)/extras/components/include
35 PIN_LIBPATHS=-L$(PIN_ROOT)/extras/xed2-$(PIN_ARCH)/lib -L$(PIN_ROOT)/$(PIN_ARCH)/lib -L$(PIN_ROOT)/$(PIN_ARCH)/lib-ext
106 PIN_INCLUDES=/I$(PIN_ROOT)/source/include /I$(PIN_ROOT)/source/include/gen /I$(PIN_ROOT)/extras/xed2-ia32/include
109 PIN_LIBPATHS= /LIBPATH:$(PIN_ROOT)/ia32/lib /LIBPATH:$(PIN_ROOT)/ia32/lib-ext /LIBPATH:$(PIN_ROOT)/extras/xed2-ia32/lib
/external/valgrind/tsan/pin/
H A DMakefile10 INCLUDES_L64=-I.. -I$(PIN_ROOT)/extras/xed2-intel64/include -I$(PIN_ROOT)/source/include -I$(PIN_ROOT)/source/include/gen
11 INCLUDES_L32=-I.. -I$(PIN_ROOT)/extras/xed2-ia32/include -I$(PIN_ROOT)/source/include -I$(PIN_ROOT)/source/include/gen
12 LIBPATHS_L64=-L$(PIN_ROOT)/extras/xed2-intel64/lib -L$(PIN_ROOT)/intel64/lib -L$(PIN_ROOT)/intel64/lib-ext
13 LIBPATHS_L32=-L$(PIN_ROOT)/extras/xed2-ia32/lib -L$(PIN_ROOT)/ia32/lib -L$(PIN_ROOT)/ia32/lib-ext
37 /I.. /I$(PIN_ROOT)/source/include /I$(PIN_ROOT)/source/include/gen /I$(PIN_ROOT)/extras/xed2-ia32/include
39 /LIBPATH:$(PIN_ROOT)/ia32/lib /LIBPATH:$(PIN_ROOT)/ia32/lib-ext /LIBPATH:$(PIN_ROOT)/extras/xed2-ia32/lib
/external/webkit/Source/WebKit/android/nav/
H A DWebView.cpp208 DrawExtra* getDrawExtra(DrawExtras extras) argument
210 if (extras == DrawExtrasNone)
212 return m_extras[extras - 1];
256 WebCore::IntRect& screenClip, float scale, int extras, bool shouldDraw)
271 DrawExtra* extra = getDrawExtra((DrawExtras) extras);
299 void draw(SkCanvas* canvas, SkColor bgColor, DrawExtras extras) argument
327 m_baseLayer->draw(canvas, getDrawExtra(extras));
769 extras = _extras;
802 titlebarHeight, screenClip, scale, extras, shouldDraw);
832 extras
254 drawGL(WebCore::IntRect& invScreenRect, WebCore::IntRect* invalRect, WebCore::IntRect& screenRect, int titleBarHeight, WebCore::IntRect& screenClip, float scale, int extras, bool shouldDraw) argument
841 jint extras; member in class:android::GLDrawFunctor
875 nativeDraw(JNIEnv *env, jobject obj, jobject canv, jobject visible, jint color, jint extras) argument
885 nativeCreateDrawGLFunction(JNIEnv *env, jobject obj, jint nativeView, jobject jinvscreenrect, jobject jscreenrect, jobject jvisiblecontentrect, jfloat scale, jint extras) argument
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DGImpactCollisionShape.java36 import com.bulletphysics.extras.gimpact.GImpactMeshShape;
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientshim.c142 ExtraResourceRecord *extras = x->s.Extras; local
144 if (extras->r.resrec.rdata != &extras->r.rdatastorage)
145 mDNSPlatformMemFree(extras->r.resrec.rdata);
146 mDNSPlatformMemFree(extras);
/external/skia/src/animator/
H A DSkAnimateMaker.cpp154 SkExtras* extras = fExtras[index];
155 delete extras;
H A DSkAnimator.cpp53 void SkAnimator::addExtras(SkExtras* extras) { argument
54 *fMaker->fExtras.append() = extras;
/external/libxslt/libxslt/
H A DxsltInternals.h249 #define XSLT_RUNTIME_EXTRA_LST(ctxt, nr) (ctxt)->extras[(nr)].info
257 #define XSLT_RUNTIME_EXTRA_FREE(ctxt, nr) (ctxt)->extras[(nr)].deallocate
265 #define XSLT_RUNTIME_EXTRA(ctxt, nr, typ) (ctxt)->extras[(nr)].val.typ
1589 int extrasNr; /* the number of extras required */
1722 int extrasNr; /* the number of extras used */
1723 int extrasMax; /* the number of extras allocated */
1724 xsltRuntimeExtraPtr extras; /* extra per runtime informations */ member in struct:_xsltTransformContext
H A Dtransform.c497 * Initialize the extras array
501 cur->extras = (xsltRuntimeExtraPtr)
503 if (cur->extras == NULL) {
510 cur->extras[i].info = NULL;
511 cur->extras[i].deallocate = NULL;
512 cur->extras[i].val.ptr = NULL;
515 cur->extras = NULL;
589 if ((ctxt->extrasNr > 0) && (ctxt->extras != NULL)) {
593 if ((ctxt->extras[i].deallocate != NULL) &&
594 (ctxt->extras[
[all...]
H A Dxslt.c800 ctxt->extras = (xsltRuntimeExtraPtr)
802 if (ctxt->extras == NULL) {
809 ctxt->extras[i].info = NULL;
810 ctxt->extras[i].deallocate = NULL;
811 ctxt->extras[i].val.ptr = NULL;
818 tmp = (xsltRuntimeExtraPtr) xmlRealloc(ctxt->extras,
826 ctxt->extras = tmp;
828 ctxt->extras[i].info = NULL;
829 ctxt->extras[i].deallocate = NULL;
830 ctxt->extras[
[all...]
/external/mksh/src/
H A DBuild.sh1685 extras='emacsfn.h sh.h sh_flags.h var_spec.h'
1686 test 0 = $HAVE_SYS_SIGNAME && extras="$extras signames.inc"
1695 INDSRCS= $extras
/external/skia/include/animator/
H A DSkAnimator.h88 @param extras A derived class that implements methods that identify and instantiate the class
90 void addExtras(SkExtras* extras);
/external/icu4c/i18n/
H A Dalphaindex.cpp818 UnicodeSet extras;
822 ucol_getContractionsAndExpansions(uRuleBasedCollator, extras.toUSet(), expansions.toUSet(), true, &status);
823 extras.addAll(expansions).removeAll(*TO_TRY);
824 if (extras.size() != 0) {
826 UnicodeSetIterator extrasIter(extras);
/external/openssh/contrib/suse/
H A Dopenssh.spec45 Obsoletes: ssh-extras
/external/openssh/contrib/redhat/
H A Dopenssh.spec126 Obsoletes: ssh-extras
132 Obsoletes: ssh-extras
/external/openssh/contrib/caldera/
H A Dopenssh.spec83 Obsoletes : ssh-extras
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js1274 var extras = this.options.requestHeaders;
1276 if (Object.isFunction(extras.push))
1277 for (var i = 0, length = extras.length; i < length; i += 2)
1278 headers[extras[i]] = extras[i+1];
1280 $H(extras).each(function(pair) { headers[pair.key] = pair.value });
H A Dconcat-jquery-mootools-prototype.js9653 var extras = this.options.requestHeaders;
9655 if (Object.isFunction(extras.push))
9656 for (var i = 0, length = extras.length; i < length; i += 2)
9657 headers[extras[i]] = extras[i+1];
9659 $H(extras).each(function(pair) { headers[pair.key] = pair.value });
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java50 import com.bulletphysics.extras.gimpact.GImpactCollisionAlgorithm;
/external/icu4c/
H A Dconfigure1417 --enable-extras build ICU extras default=yes
7532 # Enable/disable extras
7533 # Check whether --enable-extras was given.
7536 yes) extras=true ;;
7537 no) extras=false ;;
7538 *) as_fn_error $? "bad value ${enableval} for --enable-extras" "$LINENO" 5 ;;
7541 extras=true
7545 if test "$extras" = true; then
H A Dconfigure.orig1415 --enable-extras build ICU extras default=yes
7505 # Enable/disable extras
7506 # Check whether --enable-extras was given.
7509 yes) extras=true ;;
7510 no) extras=false ;;
7511 *) as_fn_error $? "bad value ${enableval} for --enable-extras" "$LINENO" 5 ;;
7514 extras=true
7518 if test "$extras" = true; then
/external/mdnsresponder/mDNSCore/
H A DmDNS.c9977 ExtraResourceRecord *extras = sr->Extras; local
10000 while (!err && extras)
10002 ExtraResourceRecord *e = extras;
10003 extras = extras->next;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 443 milliseconds

12