Searched refs:length2 (Results 1 - 25 of 52) sorted by last modified time

123

/macosx-10.9.5/CF-855.17/
H A DCFBundle_Resources.c896 CFIndex length1 = CFStringGetLength(loc1), length2 = CFStringGetLength(loc2), idx; local
897 if (length1 > 3 && length2 > 3) {
898 for (idx = 0; idx < length1 && idx < length2; idx++) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DOperations.h47 int32_t length2 = s2->length();
48 if (!length2)
50 if (sumOverflows<int32_t>(length1, length2))
61 int32_t length2 = u2.length(); local
64 if (length1 < 0 || length2 < 0 || length3 < 0)
69 if (!length2)
74 if (sumOverflows<int32_t>(length1, length2, length3))
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_xattr.c2138 int length2 = trialKey->attrNameLen; local
2142 if (length1 < length2) {
2145 } else if (length1 > length2) {
2146 length = length2;
H A Dhfs_catalog.c3866 int length2 = trialKey->nodeName.length; local
3868 result = UnicodeBinaryCompare (str1, length1, str2, length2);
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSCore/
H A Ddnssec.c1381 int length1, length2; local
1384 length2 = r2->rdlength;
1386 if (length1 < 7 || length2 < 7)
1395 length2 -= 6;
1396 return (name_compare(r1->rdata + 6, r2->rdata + 6, length1, length2));
1402 int length1, length2; local
1407 length2 = r2->rdlength;
1410 if (length1 < 1 || length2 < 1)
1416 res = name_compare(r1->rdata, r2->rdata, length1, length2);
1423 length2
1458 int length1, length2; local
1508 dom2_compare(mDNSu8 *d1, mDNSu8 *d2, int length1, int length2) argument
1541 int length1, length2; local
1582 int length1, length2; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcucdtst.c3285 int32_t length, length2; local
3296 length2=u_strFoldCase(t, LENGTHOF(t), s, length, 0, &errorCode);
3297 if(length2!=fullLength || 0!=u_memcmp(t, full, fullLength)) {
3306 length2=u_strFoldCase(t, LENGTHOF(t), s, length, U_FOLD_CASE_EXCLUDE_SPECIAL_I, &errorCode);
3307 if(length2!=turkicFullLength || 0!=u_memcmp(t, turkicFull, length2)) {
H A Dcnormtst.c172 int32_t x, neededLen, length2; local
182 length2= unorm_normalize(source, -1, mode, 0, NULL, 0, &status2);
183 if(neededLen!=length2) {
186 modeStrings[mode], (int)x, (int)neededLen, (int)length2);
192 length2=unorm_normalize(source, u_strlen(source), mode, 0, result, LENGTHOF(result), &status);
193 if(U_FAILURE(status) || neededLen!=length2) {
199 length2=unorm_normalize(source, -1, mode, 0, result, LENGTHOF(result), &status);
200 if(U_FAILURE(status) || neededLen!=length2) {
H A Dudatatst.c1364 int32_t length, dataLength, length2, headerLength; local
1463 length2=swapFn(ds, inHeader, length, buffer, &errorCode);
1472 if(length2!=length) {
1474 name, length2, length);
1490 length2=swapFn(ds, buffer, length, buffer, &errorCode);
1499 if(length2!=length) {
1501 name, length2, length);
1517 length2=swapFn(ds, buffer, length, buffer2, &errorCode);
1526 if(length2!=length) {
1528 name, length2, lengt
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Duspoof.h766 * @param length2 The length of the second identifiers, expressed in
782 const UChar *id2, int32_t length2,
800 * @param length2 The length of the second string in bytes, or -1
815 const char *id2, int32_t length2,
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Duspoof.cpp307 const UChar *id2, int32_t length2,
313 if (length1 < -1 || length2 < -1) {
319 UnicodeString id2Str((length2==-1), id2, length2); // Aliasing constructor
327 const char *id2, int32_t length2,
333 if (length1 < -1 || length2 < -1) {
338 UnicodeString id2Str = UnicodeString::fromUTF8(StringPiece(id2, length2>=0? length2 : uprv_strlen(id2)));
305 uspoof_areConfusable(const USpoofChecker *sc, const UChar *id1, int32_t length1, const UChar *id2, int32_t length2, UErrorCode *status) argument
325 uspoof_areConfusableUTF8(const USpoofChecker *sc, const char *id1, int32_t length1, const char *id2, int32_t length2, UErrorCode *status) argument
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Duidna.h733 * @param length2 Length of second source string, or -1 if NUL-terminated.
756 const UChar *s2, int32_t length2,
H A Dustring.h461 * @param length2 Length of second source string, or -1 if NUL-terminated.
472 const UChar *s2, int32_t length2,
529 * @param length2 Length of second source string, or -1 if NUL-terminated.
550 const UChar *s2, int32_t length2,
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/Unicode/
H A DUnicodeWrappers.c257 u_int8_t length, length2; local
262 length2 = *(str2++);
264 if (length == length2)
266 else if (length < length2)
269 delta = length2 - length;
274 length = length2;
368 register ConstUniCharArrayPtr str2, register ItemCount length2)
397 while (length2 && c2 == 0) {
399 --length2;
516 int32_t FastUnicodeCompare( void * str1, u_int32_t length1, void * str2, u_int32_t length2 );
367 FastUnicodeCompare( register ConstUniCharArrayPtr str1, register ItemCount length1, register ConstUniCharArrayPtr str2, register ItemCount length2) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/headers/
H A DHFSUnicodeWrappers.h107 register ConstUniCharArrayPtr str2, register ItemCount length2);
110 register ConstUniCharArrayPtr str2, register ItemCount length2);
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DDbValue.cpp193 uint32 length1 = (uint32)inData1.Length, length2 = (uint32)inData2.Length; local
200 if (length1 > length2)
202 length2 = length1;
206 if (length1 > length2)
208 data2 += (length2 - length1);
209 length2 = length1;
214 if (length1 != length2)
221 if (length1 != length2)
230 uint32 length = min(length1, length2);
233 if (result < 0 || (result == 0 && length1 < length2))
406 uint32 length1 = (uint32)Length, length2 = (uint32)other.Length; local
501 uint32 length1 = mNumValues, length2 = other.mNumValues; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DDbValue.cpp193 uint32 length1 = (uint32)inData1.Length, length2 = (uint32)inData2.Length; local
200 if (length1 > length2)
202 length2 = length1;
206 if (length1 > length2)
208 data2 += (length2 - length1);
209 length2 = length1;
214 if (length1 != length2)
221 if (length1 != length2)
230 uint32 length = min(length1, length2);
233 if (result < 0 || (result == 0 && length1 < length2))
406 uint32 length1 = (uint32)Length, length2 = (uint32)other.Length; local
501 uint32 length1 = mNumValues, length2 = other.mNumValues; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkWindow.c748 int length1, length2;
801 length2 = strlen(name);
802 if ((length1+length2+2) <= FIXED_SIZE) {
805 pathName = (char *) ckalloc((unsigned) (length1+length2+2));
741 int length1, length2; local
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclCmdMZ.c1238 int length1, length2;
1287 string2 = Tcl_GetStringFromObj(objv[i], &length2);
1288 if ((length2 > 1)
1289 && strncmp(string2, "-nocase", (size_t)length2) == 0) {
1291 } else if ((length2 > 1)
1292 && strncmp(string2, "-length", (size_t)length2) == 0) {
1332 string2 = (char*) Tcl_GetByteArrayFromObj(objv[1], &length2);
1343 string2 = (char*) Tcl_GetUnicodeFromObj(objv[1], &length2);
1354 string2 = (char*) Tcl_GetStringFromObj(objv[1], &length2);
1359 length2
1231 int length1, length2; local
[all...]
H A DtclExecute.c2871 int length1, length2;
2874 ustring2 = Tcl_GetUnicodeFromObj(value2Ptr, &length2);
2875 match = TclUniCharMatch(ustring1, length1, ustring2, length2,
2861 int length1, length2; local
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dapicoll.cpp1266 int32_t length2 = col->getSortKey(i_and_phi, 2, sortKey2, capacity); local
1267 if (length2 != length || 0 != uprv_memcmp(sortKey, sortKey2, capacity)) {
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dustring.cpp685 const UChar *s2, int32_t length2,
695 if(length1<0 && length2<0) {
717 /* special handling for strncmp, assume length1==length2>=0 but also check for NUL */
751 if(length2<0) {
752 length2=u_strlen(s2);
755 /* limit1=start1+min(lenght1, length2) */
756 if(length1<length2) {
759 } else if(length1==length2) {
762 } else /* length1>length2 */ {
764 limit1=start1+length2;
684 uprv_strCompare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, UBool strncmpStyle, UBool codePointOrder) argument
922 u_strCompare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, UBool codePointOrder) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/icu/unicode/
H A Dunorm.h514 * @param length2 Length of second source string, or -1 if NUL-terminated.
555 const UChar *s2, int32_t length2,
H A Dustring.h456 * @param length2 Length of second source string, or -1 if NUL-terminated.
467 const UChar *s2, int32_t length2,
524 * @param length2 Length of second source string, or -1 if NUL-terminated.
545 const UChar *s2, int32_t length2,
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Duidna.h704 * @param length2 Length of second source string, or -1 if NUL-terminated.
727 const UChar *s2, int32_t length2,
H A Dunorm.h514 * @param length2 Length of second source string, or -1 if NUL-terminated.
555 const UChar *s2, int32_t length2,

Completed in 424 milliseconds

123