/external/icu/icu4c/source/i18n/ |
D | udat.cpp | 903 const UChar *value, int32_t valueLength, UErrorCode &errorCode) in setSymbol() argument 911 array[index].setTo(value, valueLength); in setSymbol() 918 const UChar *value, int32_t valueLength, UErrorCode &errorCode) in setEra() argument 920 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode); in setEra() 925 const UChar *value, int32_t valueLength, UErrorCode &errorCode) in setEraName() argument 927 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode); in setEraName() 932 const UChar *value, int32_t valueLength, UErrorCode &errorCode) in setMonth() argument 934 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode); in setMonth() 939 const UChar *value, int32_t valueLength, UErrorCode &errorCode) in setShortMonth() argument 941 … setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode); in setShortMonth() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
D | PlainDSAEncoding.java | 15 int valueLength = BigIntegers.getUnsignedByteLength(n); in encode() local 16 byte[] result = new byte[valueLength * 2]; in encode() 17 encodeValue(n, r, result, 0, valueLength); in encode() 18 encodeValue(n, s, result, valueLength, valueLength); in encode() 24 int valueLength = BigIntegers.getUnsignedByteLength(n); in decode() local 25 if (encoding.length != valueLength * 2) in decode() 31 decodeValue(n, encoding, 0, valueLength), in decode() 32 decodeValue(n, encoding, valueLength, valueLength), in decode()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/signers/ |
D | PlainDSAEncoding.java | 19 int valueLength = BigIntegers.getUnsignedByteLength(n); in encode() local 20 byte[] result = new byte[valueLength * 2]; in encode() 21 encodeValue(n, r, result, 0, valueLength); in encode() 22 encodeValue(n, s, result, valueLength, valueLength); in encode() 28 int valueLength = BigIntegers.getUnsignedByteLength(n); in decode() local 29 if (encoding.length != valueLength * 2) in decode() 35 decodeValue(n, encoding, 0, valueLength), in decode() 36 decodeValue(n, encoding, valueLength, valueLength), in decode()
|
/external/icu/icu4c/source/common/ |
D | uset_props.cpp | 110 const UChar *value, int32_t valueLength, in uset_applyPropertyAlias() argument 114 UnicodeString v(value, valueLength); in uset_applyPropertyAlias()
|
/external/python/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 149 valueLength = len(value) 150 if valueLength % 8: 151 alignedValue = value << (8 - valueLength % 8) 158 return int2oct(len(substrate) * 8 - valueLength) + substrate, False, True 172 while stop < valueLength: 174 stop = min(start + maxChunkSize * 8, valueLength)
|
/external/icu/icu4c/source/tools/gendict/ |
D | gendict.cpp | 359 int32_t valueLength = fileLine.length() - valueStart; in main() local 360 if (valueLength > 15) { in main() 366 fileLine.extract(valueStart, valueLength, s, 16, US_INV); in main() 369 … if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > 0xffffffff) { in main()
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | NativeMethods.Generated.cs | 500 …a_array_add_delegate(MetadataArraySafeHandle array, string key, byte[] value, UIntPtr valueLength); in grpcsharp_metadata_array_add_delegate() argument 503 …rp_metadata_array_get_value_delegate(IntPtr metadataArray, UIntPtr index, out UIntPtr valueLength); in grpcsharp_metadata_array_get_value_delegate() argument 731 …p_metadata_array_add(MetadataArraySafeHandle array, string key, byte[] value, UIntPtr valueLength); in grpcsharp_metadata_array_add() argument 740 …r grpcsharp_metadata_array_get_value(IntPtr metadataArray, UIntPtr index, out UIntPtr valueLength); in grpcsharp_metadata_array_get_value() argument 1024 …p_metadata_array_add(MetadataArraySafeHandle array, string key, byte[] value, UIntPtr valueLength); in grpcsharp_metadata_array_add() argument 1033 …r grpcsharp_metadata_array_get_value(IntPtr metadataArray, UIntPtr index, out UIntPtr valueLength); in grpcsharp_metadata_array_get_value() argument
|
/external/grpc-grpc/templates/src/csharp/Grpc.Core/Internal/ |
D | NativeMethods.Generated.cs.template | 68 …_metadata_array_add(MetadataArraySafeHandle array, string key, byte[] value, UIntPtr valueLength)', 71 … grpcsharp_metadata_array_get_value(IntPtr metadataArray, UIntPtr index, out UIntPtr valueLength)',
|
/external/icu/icu4c/source/test/cintltst/ |
D | cnmdptst.c | 910 int32_t valueLength = 0; in TestGetKeywordValuesForLocale() local 937 … if ((value = uenum_next(pref, &valueLength, &status)) != NULL && U_SUCCESS(status)) { in TestGetKeywordValuesForLocale() 968 if ((value = uenum_next(all, &valueLength, &status)) != NULL && U_SUCCESS(status)) { in TestGetKeywordValuesForLocale()
|
D | ccaltst.c | 1585 int32_t valueLength; in TestGetKeywordValuesForLocale() local 1599 valueLength = 0; in TestGetKeywordValuesForLocale() 1604 … if ((value = uenum_next(pref, &valueLength, &status)) != NULL && U_SUCCESS(status)) { in TestGetKeywordValuesForLocale() 1631 … if ((value = uenum_next(all, &valueLength, &status)) != NULL && U_SUCCESS(status)) { in TestGetKeywordValuesForLocale()
|
D | cnumtst.c | 948 int32_t valueLength = 10; in TestNumberFormat() local 961 unum_setSymbol(fmt, (UNumberFormatSymbol)badsymbolLarge, value, valueLength, &status); in TestNumberFormat() 965 unum_setSymbol(fmt, (UNumberFormatSymbol)badsymbolSmall, value, valueLength, &status); in TestNumberFormat()
|
/external/icu/icu4c/source/common/unicode/ |
D | uset.h | 494 const UChar *value, int32_t valueLength,
|
/external/icu/libandroidicu/include/unicode/ |
D | uset.h | 494 const UChar *value, int32_t valueLength,
|
D | udat.h | 1534 int32_t valueLength,
|
/external/icu/icu4c/source/i18n/unicode/ |
D | udat.h | 1534 int32_t valueLength,
|
/external/skqp/tools/bookmaker/ |
D | includeWriter.cpp | 524 int valueLength = item.fValue.length(); in enumMemberOut() local 525 int assignLength = valueLength ? valueLength + 3 : 0; // 3: space = space in enumMemberOut() 547 if (!valueLength) { in enumMemberOut() 549 } else if (valueLength + fIndent + 8 + shortComment.length() > // 8: addtional indent in enumMemberOut() 554 - SkTMax(0, fEnumItemValueTab + 2 + valueLength + 2 - fEnumItemCommentTab); in enumMemberOut() 555 enumItemCommentTab = SkTMax(enumItemValueTab + valueLength + 2, fEnumItemCommentTab); in enumMemberOut()
|
/external/skia/tools/bookmaker/ |
D | includeWriter.cpp | 524 int valueLength = item.fValue.length(); in enumMemberOut() local 525 int assignLength = valueLength ? valueLength + 3 : 0; // 3: space = space in enumMemberOut() 547 if (!valueLength) { in enumMemberOut() 549 } else if (valueLength + fIndent + 8 + shortComment.length() > // 8: addtional indent in enumMemberOut() 554 - SkTMax(0, fEnumItemValueTab + 2 + valueLength + 2 - fEnumItemCommentTab); in enumMemberOut() 555 enumItemCommentTab = SkTMax(enumItemValueTab + valueLength + 2, fEnumItemCommentTab); in enumMemberOut()
|
/external/protobuf/objectivec/ |
D | GPBCodedOutputStream.m | 1058 NSUInteger valueLength = [value length]; 1059 return GPBComputeRawVarint32SizeForInteger(valueLength) + valueLength;
|
/external/libcups/cups/ |
D | auth.c | 965 auth_right.valueLength = 0; in cups_local_auth()
|
/external/icu/icu4c/source/test/intltest/ |
D | caltest.cpp | 626 int32_t valueLength; in TestGenericAPI() local 627 while ((charValue = values->next(&valueLength, status)) != NULL) { in TestGenericAPI() 628 if (valueLength == 6 && strcmp(charValue, "hebrew") == 0) { in TestGenericAPI() 640 while ((ucharValue = values->unext(&valueLength, status)) != NULL) { in TestGenericAPI() 641 UnicodeString value(FALSE, ucharValue, valueLength); in TestGenericAPI()
|
/external/icu/libandroidicu/static_shim/ |
D | shim.cpp | 1450 …DateFormatSymbolType type, int32_t symbolIndex, UChar * value, int32_t valueLength, UErrorCode * s… in udat_setSymbols_android() argument 1451 udat_setSymbols(format, type, symbolIndex, value, valueLength, status); in udat_setSymbols_android() 2583 …, const UChar * prop, int32_t propLength, const UChar * value, int32_t valueLength, UErrorCode * e… in uset_applyPropertyAlias_android() argument 2584 uset_applyPropertyAlias(set, prop, propLength, value, valueLength, ec); in uset_applyPropertyAlias_android()
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 2661 const deInt32 valueLength = sizeof(deInt32)) in SpecConstantTwoIntCase() 2671 , scActualValueLength (valueLength) in SpecConstantTwoIntCase() 6986 const deInt32 valueLength = sizeof(deInt32)) in SpecConstantTwoIntGraphicsCase() 6995 , scActualValueLength (valueLength) in SpecConstantTwoIntGraphicsCase()
|