/external/guava/guava-tests/benchmark/com/google/common/hash/ |
D | MessageDigestCreationBenchmark.java | 42 int retValue = 0; in getInstance() local 44 retValue ^= MessageDigest.getInstance(algorithm).getDigestLength(); in getInstance() 46 return retValue; in getInstance() 50 int retValue = 0; in clone() local 52 retValue ^= ((MessageDigest) md.clone()).getDigestLength(); in clone() 54 return retValue; in clone()
|
/external/libxml2/ |
D | xmlschemastypes.c | 5690 xmlSchemaGetCanonValue(xmlSchemaValPtr val, const xmlChar **retValue) in xmlSchemaGetCanonValue() argument 5692 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValue() 5694 *retValue = NULL; in xmlSchemaGetCanonValue() 5698 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue() 5700 *retValue = in xmlSchemaGetCanonValue() 5705 *retValue = BAD_CAST xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValue() 5707 *retValue = xmlSchemaWhiteSpaceReplace( in xmlSchemaGetCanonValue() 5709 if ((*retValue) == NULL) in xmlSchemaGetCanonValue() 5710 *retValue = BAD_CAST xmlStrdup( in xmlSchemaGetCanonValue() 5726 *retValue = in xmlSchemaGetCanonValue() [all …]
|
D | xmlschemas.c | 1491 xmlChar **retValue) in xmlSchemaGetCanonValueWhtspExt() argument 1498 if ((retValue == NULL) || (val == NULL)) in xmlSchemaGetCanonValueWhtspExt() 1501 *retValue = NULL; in xmlSchemaGetCanonValueWhtspExt() 1527 if (*retValue == NULL) in xmlSchemaGetCanonValueWhtspExt() 1530 *retValue = xmlStrdup(BAD_CAST ""); in xmlSchemaGetCanonValueWhtspExt() 1532 *retValue = xmlStrdup(value); in xmlSchemaGetCanonValueWhtspExt() 1535 *retValue = xmlStrcat((xmlChar *) *retValue, BAD_CAST " "); in xmlSchemaGetCanonValueWhtspExt() 1536 *retValue = xmlStrcat((xmlChar *) *retValue, value); in xmlSchemaGetCanonValueWhtspExt() 1544 if (*retValue != NULL) in xmlSchemaGetCanonValueWhtspExt() 1545 xmlFree((xmlChar *) (*retValue)); in xmlSchemaGetCanonValueWhtspExt()
|
D | testapi.c | 35464 xmlChar ** retValue; /* the returned value */ in test_xmlSchemaGetCanonValue() local 35471 retValue = gen_const_xmlChar_ptr_ptr(n_retValue, 1); in test_xmlSchemaGetCanonValue() 35473 ret_val = xmlSchemaGetCanonValue(val, (const xmlChar **)retValue); in test_xmlSchemaGetCanonValue() 35477 des_const_xmlChar_ptr_ptr(n_retValue, (const xmlChar **)retValue, 1); in test_xmlSchemaGetCanonValue() 35505 xmlChar ** retValue; /* the returned value */ in test_xmlSchemaGetCanonValueWhtsp() local 35515 retValue = gen_const_xmlChar_ptr_ptr(n_retValue, 1); in test_xmlSchemaGetCanonValueWhtsp() 35518 ret_val = xmlSchemaGetCanonValueWhtsp(val, (const xmlChar **)retValue, ws); in test_xmlSchemaGetCanonValueWhtsp() 35522 des_const_xmlChar_ptr_ptr(n_retValue, (const xmlChar **)retValue, 1); in test_xmlSchemaGetCanonValueWhtsp()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | TemplateList.java | 878 ElemTemplate retValue = null; in next() local 889 retValue = curPattern.getTemplate(); in next() 895 retValue = curPattern.getTemplate(); in next() 908 retValue = (ElemTemplate) hashIterator.nextElement(); in next() 913 ct = (ElemTemplate) m_compilerCache.get(new Integer(retValue.getUid())); in next() 916 m_compilerCache.put(new Integer(retValue.getUid()), retValue); in next() 917 return retValue; in next()
|
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/ |
D | Os.java | 247 boolean retValue = false; in isOs() 318 retValue = isFamily && isName && isArch && isVersion; in isOs() 320 return retValue; in isOs()
|
/external/parameter-framework/upstream/bindings/c/ |
D | ParameterFramework.cpp | 348 string retValue; in pfwGetStringParameter() local 349 bool success = handle->parameter.getAsString(retValue, status.msg()); in pfwGetStringParameter() 354 *value = strdup(retValue.c_str()); in pfwGetStringParameter()
|
/external/libxml2/include/libxml/ |
D | xmlschemastypes.h | 113 const xmlChar **retValue); 116 const xmlChar **retValue,
|
/external/python/cpython2/PC/ |
D | _winreg.c | 1277 Py_UNICODE *retValue = NULL; in PyExpandEnvironmentStrings() local 1286 retValueSize = ExpandEnvironmentStringsW(src, retValue, 0); in PyExpandEnvironmentStrings() 1291 retValue = (Py_UNICODE *)PyMem_Malloc(retValueSize * sizeof(Py_UNICODE)); in PyExpandEnvironmentStrings() 1292 if (retValue == NULL) { in PyExpandEnvironmentStrings() 1296 rc = ExpandEnvironmentStringsW(src, retValue, retValueSize); in PyExpandEnvironmentStrings() 1298 PyMem_Free(retValue); in PyExpandEnvironmentStrings() 1302 o = PyUnicode_FromUnicode(retValue, wcslen(retValue)); in PyExpandEnvironmentStrings() 1303 PyMem_Free(retValue); in PyExpandEnvironmentStrings()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateIntervalFormat.java | 1537 BestMatchInfo retValue = fInfo.getBestSkeleton(skeleton); in genSeparateDateTimePtn() local 1538 String bestSkeleton = retValue.bestMatchSkeleton; in genSeparateDateTimePtn() 1539 int differenceInfo = retValue.bestMatchDistanceInfo; in genSeparateDateTimePtn() 1609 SkeletonAndItsBestMatch retValue = null; in genIntervalPattern() local 1664 retValue = new SkeletonAndItsBestMatch(skeleton, bestSkeleton); in genIntervalPattern() 1682 return retValue; in genIntervalPattern()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateIntervalFormat.java | 1524 BestMatchInfo retValue = fInfo.getBestSkeleton(skeleton); in genSeparateDateTimePtn() local 1525 String bestSkeleton = retValue.bestMatchSkeleton; in genSeparateDateTimePtn() 1526 int differenceInfo = retValue.bestMatchDistanceInfo; in genSeparateDateTimePtn() 1596 SkeletonAndItsBestMatch retValue = null; in genIntervalPattern() local 1651 retValue = new SkeletonAndItsBestMatch(skeleton, bestSkeleton); in genIntervalPattern() 1669 return retValue; in genIntervalPattern()
|
/external/tpm2/ |
D | RSAKeySieve.c | 110 UINT32 retValue; in FindNthSetBit() local 118 retValue = (UINT32)(pA - a) * 8; in FindNthSetBit() 128 return retValue; in FindNthSetBit() 130 retValue += 1; in FindNthSetBit()
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 561 if (Expr *retValue = ret->getRetValue()) in findEnumForBlockReturn() local 562 return findEnumForBlockReturn(retValue); in findEnumForBlockReturn() 595 Expr *retValue = ret->getRetValue(); in adjustBlockReturnsToEnum() local 596 if (S.Context.hasSameType(retValue->getType(), returnType)) in adjustBlockReturnsToEnum() 601 assert(retValue->getType()->isIntegralOrUnscopedEnumerationType()); in adjustBlockReturnsToEnum() 603 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); in adjustBlockReturnsToEnum() 605 Expr *E = (cleanups ? cleanups->getSubExpr() : retValue); in adjustBlockReturnsToEnum()
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | CharMatcherTest.java | 622 char[] retValue = new char[chars.size()]; in randomChars() local 625 retValue[i++] = c; in randomChars() 627 Arrays.sort(retValue); in randomChars() 628 return retValue; in randomChars()
|
/external/python/cpython2/Mac/Modules/carbonevt/ |
D | _CarbonEvtmodule.c | 80 PyObject *retValue; in myEventHandler() local 83 retValue = PyObject_CallFunction((PyObject *)outPyObject, "O&O&", in myEventHandler() 86 if (retValue == NULL) { in myEventHandler() 91 if (retValue == Py_None) in myEventHandler() 93 else if (PyInt_Check(retValue)) { in myEventHandler() 94 status = PyInt_AsLong(retValue); in myEventHandler() 97 Py_DECREF(retValue); in myEventHandler()
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 740 char[] retValue = new char[chars.size()]; in randomChars() local 743 retValue[i++] = c; in randomChars() 745 Arrays.sort(retValue); in randomChars() 746 return retValue; in randomChars()
|
/external/libxml2/os400/libxmlrpg/ |
D | xmlschemastypes.rpgle | 183 d retValue * value const xmlChar * * 190 d retValue * value const xmlChar * *
|
/external/aac/libAACenc/src/ |
D | aacenc_tns.cpp | 557 FIXP_DBL retValue; in FDKaacEnc_AutoCorrNormFac() local 573 retValue = fMult(tmp,tmp); in FDKaacEnc_AutoCorrNormFac() 578 retValue = /*FL2FXCONST_DBL(MAX_INV_NRGFAC*FDKpow(2,-28))*/ (FIXP_DBL)MAXVAL_DBL; in FDKaacEnc_AutoCorrNormFac() 582 return retValue; in FDKaacEnc_AutoCorrNormFac()
|