Searched refs:tempBuffer (Results 1 - 12 of 12) sorted by path

/macosx-10.10/ICU-531.30/icuSources/common/
H A Duloc.cpp833 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
837 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1555 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1563 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), status);
1627 char tempBuffer[ULOC_FULLNAME_CAPACITY]; local
1642 _ConvertBCP47(tmpLocaleID, localeID, tempBuffer, sizeof(tempBuffer), err);
1978 char tempBuffer[ULOC_FULLNAME_CAPACIT
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dmsfmrgts.cpp101 UnicodeString tempBuffer; local
103 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status);
104 if( tempBuffer != "Message with param:BUG" || failure(status, "messageFormat->format"))
106 logln("Formatted with one extra param : " + tempBuffer);
119 //tempBuffer = messageFormatter->format(NULL, 1, tempBuffer, FieldPosition(FieldPosition::DONT_CARE), status);
120 tempBuffer.remove();
121 tempBuffer = messageFormatter->format(NULL, 0, tempBuffer, po
195 UnicodeString tempBuffer; local
[all...]
/macosx-10.10/IOKitUser-1050.1.21/
H A DIOCFSerialize.c1023 char * tempBuffer; local
1024 if (buffer && (tempBuffer = malloc(len + 1)))
1026 bcopy(buffer, tempBuffer, len);
1027 tempBuffer[len] = 0;
1028 syslog(LOG_ERR, "FIXME: IOCFSerialize has detected a string that can not be converted to UTF-8, \"%s\"", tempBuffer);
1029 free(tempBuffer);
/macosx-10.10/IOKitUser-1050.1.21/kext.subproj/
H A DOSKext.c6457 char tempBuffer[256];
6459 GET_CSTRING_PTR(bundleID, cp, tempBuffer, sizeof(tempBuffer));
/macosx-10.10/Libinfo-459/membership.subproj/
H A Dmembership.c566 char tempBuffer[25]; local
576 strcpy(current, ConvertBytesToDecimal(tempBuffer, sid->sid_kind));
580 strcpy(current, ConvertBytesToDecimal(tempBuffer, temp));
587 strcpy(current, ConvertBytesToDecimal(tempBuffer, sid->sid_authorities[i]));
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dpbkdf2.c29 tempBuffer is a pointer to at least MAX (hLen, saltLen + 4) + hLen bytes. */
37 void *tempBuffer)
41 outBlock = (uint8*)tempBuffer;
77 void *tempBuffer)
83 uint8 *blkBuffer = (uint8*)tempBuffer;
31 F(PRF prf, uint32 hLen, const void *passwordPtr, uint32 passwordLen, const void *saltPtr, uint32 saltLen, uint32 iterationCount, uint32 blockNumber, void *dataPtr, void *tempBuffer) argument
72 pbkdf2(PRF prf, uint32 hLen, const void *passwordPtr, uint32 passwordLen, const void *saltPtr, uint32 saltLen, uint32 iterationCount, void *dkPtr, uint32 dkLen, void *tempBuffer) argument
H A Dpbkdf2.h58 The argument tempBuffer should point to a buffer MAX (hLen, saltLen + 4) + 2 * hLen
72 void *tempBuffer);
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A Dpbkdf2.c28 tempBuffer is a pointer to at least MAX (hLen, saltLen + 4) + hLen bytes. */
36 void *tempBuffer)
40 outBlock = (uint8_t*)tempBuffer;
76 void *tempBuffer)
82 uint8_t *blkBuffer = (uint8_t*)tempBuffer;
30 F(PRF prf, size_t hLen, const void *passwordPtr, size_t passwordLen, const void *saltPtr, size_t saltLen, size_t iterationCount, uint32_t blockNumber, void *dataPtr, void *tempBuffer) argument
71 pbkdf2(PRF prf, size_t hLen, const void *passwordPtr, size_t passwordLen, const void *saltPtr, size_t saltLen, size_t iterationCount, void *dkPtr, size_t dkLen, void *tempBuffer) argument
H A Dpbkdf2.h56 The argument tempBuffer should point to a buffer MAX (hLen, saltLen + 4) + 2 * hLen
70 void *tempBuffer);
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DBTreeScanner.c256 unsigned char *tempBuffer = malloc(myContiguousBytes); local
257 if (tempBuffer == NULL)
260 myPhyOffset, myContiguousBytes, tempBuffer);
261 if (memcmp(tempBuffer, theScanStatePtr->bufferPtr, myContiguousBytes) != 0)
270 raw = tempBuffer[i];
281 free(tempBuffer);
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/
H A DmDNSWin32.c3904 INTERFACE_INFO * tempBuffer; local
3929 tempBuffer = (INTERFACE_INFO *) realloc( buffer, size );
3930 require_action( tempBuffer, exit, err = WSAENOBUFS );
3931 buffer = tempBuffer;
/macosx-10.10/msdosfs-209.1.1/userfs_plugin/
H A Dmsdosfs.c655 char *tempBuffer = NULL; local
676 tempBuffer = malloc(UNALIGNED_BLOCK_SIZE);
677 assert(tempBuffer);
683 actual = pread(fd, tempBuffer, UNALIGNED_BLOCK_SIZE, offset - block_offset);
689 memcpy(buffer, &tempBuffer[offset & UNALIGNED_BLOCK_MASK], tail_length);
727 if (tempBuffer == NULL)
728 tempBuffer = malloc(UNALIGNED_BLOCK_SIZE);
729 assert(tempBuffer);
735 actual = pread(fd, tempBuffer, UNALIGNED_BLOCK_SIZE, offset);
741 memcpy(buffer, tempBuffer, lengt
[all...]

Completed in 302 milliseconds