Searched refs:keyPtr (Results 1 - 25 of 91) sorted by relevance

1234

/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DHMACSHA1.c30 hmacsha1 (const void *keyPtr, uint32 keyLen, argument
34 CCHmac(kCCHmacAlgSHA1, keyPtr, keyLen,
H A DHMACSHA1.h42 hmacsha1 (const void *keyPtr, uint32 keyLen,
H A Dpbkdf2.h41 to by keyPtr and the first textLen octets pointed to by textPtr.
43 A good prf would be a HMAC-SHA-1 algorithm where the keyPtr octets serve as
45 typedef void (*PRF)(const void *keyPtr, uint32 keyLen,
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclThread.c81 Tcl_GetThreadData(keyPtr, size)
82 Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk */
92 if (*keyPtr == NULL) {
93 TclpThreadDataKeyInit(keyPtr);
100 result = TclpThreadDataKeyGet(keyPtr);
104 TclpThreadDataKeySet(keyPtr, result);
107 if (*keyPtr == NULL) {
110 *keyPtr = (Tcl_ThreadDataKey)result;
111 TclRememberDataKey(keyPtr);
113 result = *(VOID **)keyPtr;
427 Tcl_ThreadDataKey *keyPtr; local
465 Tcl_ThreadDataKey *keyPtr; local
[all...]
H A DtclHash.c51 VOID *keyPtr));
53 VOID *keyPtr, Tcl_HashEntry *hPtr));
56 VOID *keyPtr));
65 VOID *keyPtr));
67 VOID *keyPtr, Tcl_HashEntry *hPtr));
70 VOID *keyPtr));
79 VOID *keyPtr));
81 VOID *keyPtr, Tcl_HashEntry *hPtr));
84 VOID *keyPtr));
822 AllocArrayEntry(tablePtr, keyPtr)
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixThrd.c546 TclpThreadDataKeyInit(keyPtr)
547 Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk,
553 if (*keyPtr == NULL) {
556 *keyPtr = (Tcl_ThreadDataKey)pkeyPtr;
557 TclRememberDataKey(keyPtr);
581 TclpThreadDataKeyGet(keyPtr)
582 Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk,
585 pthread_key_t *pkeyPtr = *(pthread_key_t **)keyPtr;
613 TclpThreadDataKeySet(keyPtr, data)
614 Tcl_ThreadDataKey *keyPtr; /* Identifie
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclThread.c80 Tcl_ThreadDataKey *keyPtr, /* Identifier for the data chunk */
88 result = TclpThreadDataKeyGet(keyPtr);
93 TclpThreadDataKeySet(keyPtr, result);
96 if (*keyPtr == NULL) {
99 *keyPtr = (Tcl_ThreadDataKey)result;
100 RememberSyncObject((char *) keyPtr, &keyRecord);
102 result = * (void **) keyPtr;
127 Tcl_ThreadDataKey *keyPtr) /* Identifier for the data chunk, really
131 return TclpThreadDataKeyGet(keyPtr);
133 char *result = *(char **) keyPtr;
78 Tcl_GetThreadData( Tcl_ThreadDataKey *keyPtr, int size) argument
124 TclThreadDataKeyGet( Tcl_ThreadDataKey *keyPtr) argument
383 Tcl_ThreadDataKey *keyPtr; local
[all...]
H A DtclThreadStorage.c44 void *keyPtr);
134 void *keyPtr) /* Key to store in the hash table entry. */
139 hPtr->key.oneWordValue = keyPtr;
361 Tcl_ThreadDataKey *keyPtr) /* Identifier for the data chunk, really
366 Tcl_HashEntry *hPtr = Tcl_FindHashEntry(hashTablePtr, (char *) keyPtr);
394 Tcl_ThreadDataKey *keyPtr, /* Identifier for the data chunk, really
403 hPtr = Tcl_CreateHashEntry(hashTablePtr, (char *)keyPtr, &dummy);
131 AllocThreadStorageEntry( Tcl_HashTable *tablePtr, void *keyPtr) argument
355 TclpThreadDataKeyGet( Tcl_ThreadDataKey *keyPtr) argument
387 TclpThreadDataKeySet( Tcl_ThreadDataKey *keyPtr, void *data) argument
H A DtclEvent.c266 Tcl_Obj *keyPtr, *valuePtr;
268 TclNewLiteralStringObj(keyPtr, "-errorinfo");
269 Tcl_IncrRefCount(keyPtr);
270 Tcl_DictObjGet(NULL, options, keyPtr, &valuePtr);
271 Tcl_DecrRefCount(keyPtr);
316 Tcl_Obj *keyPtr, *valuePtr;
330 TclNewLiteralStringObj(keyPtr, "-level");
331 Tcl_IncrRefCount(keyPtr);
332 Tcl_DictObjGet(NULL, objv[2], keyPtr, &valuePtr);
333 Tcl_DecrRefCount(keyPtr);
264 Tcl_Obj *keyPtr, *valuePtr; local
313 Tcl_Obj *keyPtr, *valuePtr; local
[all...]
H A DtclHash.c46 static Tcl_HashEntry * AllocArrayEntry(Tcl_HashTable *tablePtr, VOID *keyPtr);
47 static int CompareArrayKeys(VOID *keyPtr, Tcl_HashEntry *hPtr);
48 static unsigned int HashArrayKey(Tcl_HashTable *tablePtr, VOID *keyPtr);
56 VOID *keyPtr);
57 static int CompareOneWordKeys(VOID *keyPtr, Tcl_HashEntry *hPtr);
58 static unsigned int HashOneWordKey(Tcl_HashTable *tablePtr, VOID *keyPtr);
66 VOID *keyPtr);
67 static int CompareStringKeys(VOID *keyPtr, Tcl_HashEntry *hPtr);
68 static unsigned int HashStringKey(Tcl_HashTable *tablePtr, VOID *keyPtr);
717 VOID *keyPtr) /* Ke
705 AllocArrayEntry( Tcl_HashTable *tablePtr, VOID *keyPtr) argument
750 CompareArrayKeys( VOID *keyPtr, Tcl_HashEntry *hPtr) argument
789 HashArrayKey( Tcl_HashTable *tablePtr, VOID *keyPtr) argument
821 AllocStringEntry( Tcl_HashTable *tablePtr, VOID *keyPtr) argument
857 CompareStringKeys( VOID *keyPtr, Tcl_HashEntry *hPtr) argument
885 HashStringKey( Tcl_HashTable *tablePtr, VOID *keyPtr) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DHmacSha1Legacy.h54 const void *keyPtr,
H A DHmacSha1Legacy.c89 const void *keyPtr,
109 key = (UInt8*)keyPtr;
87 hmacLegacyInit( hmacLegacyContextRef hmac, const void *keyPtr, UInt32 keyLen) argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DHmacSha1Legacy.h54 const void *keyPtr,
H A DHmacSha1Legacy.c89 const void *keyPtr,
109 key = (UInt8*)keyPtr;
87 hmacLegacyInit( hmacLegacyContextRef hmac, const void *keyPtr, UInt32 keyLen) argument
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A Dpbkdf2.h39 to by keyPtr and the first textLen octets pointed to by textPtr.
41 A good prf would be a HMAC-SHA-1 algorithm where the keyPtr octets serve as
43 typedef void (*PRF)(const uint8_t *keyPtr, size_t keyLen,
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/headers/
H A DCatalogPrivate.h93 extern OSErr LocateCatalogNodeByKey ( const ExtendedVCB *volume, u_int32_t hint, CatalogKey *keyPtr,
97 u_int32_t hint, CatalogKey *keyPtr, CatalogRecord *dataPtr, u_int32_t *newHint);
100 CatalogName *unicodeName, u_int32_t hint, CatalogKey *keyPtr, CatalogRecord *dataPtr,
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinThrd.c597 TclpThreadDataKeyInit(keyPtr)
598 Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk,
605 if (*keyPtr == NULL) {
613 *keyPtr = (Tcl_ThreadDataKey)indexPtr;
614 TclRememberDataKey(keyPtr);
638 TclpThreadDataKeyGet(keyPtr)
639 Tcl_ThreadDataKey *keyPtr; /* Identifier for the data chunk,
642 DWORD *indexPtr = *(DWORD **)keyPtr;
674 TclpThreadDataKeySet(keyPtr, data)
675 Tcl_ThreadDataKey *keyPtr; /* Identifie
[all...]
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DBTreeTreeOps.c60 KeyPtr keyPtr,
78 KeyPtr keyPtr,
120 KeyPtr keyPtr,
133 KeyPtr keyPtr,
174 keyPtr - pointer to the key to search for
200 KeyPtr keyPtr; local
297 err = GetRecordByIndex (btreePtr, nodeRec.buffer, index, &keyPtr, &dataPtr, &dataSize);
352 KeyPtr keyPtr,
364 primaryKey.keyPtr = keyPtr;
350 InsertTree( BTreeControlBlockPtr btreePtr, TreePathTable treePathTable, KeyPtr keyPtr, UInt8 * recPtr, UInt16 recSize, BlockDescriptor *targetNode, UInt16 index, UInt16 level, Boolean replacingKey, UInt32 *insertNode ) argument
459 KeyPtr keyPtr; local
807 KeyPtr keyPtr; local
931 RotateLeft(BTreeControlBlockPtr btreePtr, NodeDescPtr leftNode, NodeDescPtr rightNode, UInt16 rightInsertIndex, KeyPtr keyPtr, UInt8 * recPtr, UInt16 recSize, UInt16 *insertIndex, UInt32 *insertNodeNum, Boolean *recordFit, UInt16 *recsRotated ) argument
1253 KeyPtr keyPtr; local
1343 SplitRight(BTreeControlBlockPtr btreePtr, BlockDescriptor *nodePtr, BlockDescriptor *rightNodePtr, UInt32 nodeNum, UInt16 index, KeyPtr keyPtr, UInt8 *recPtr, UInt16 recSize, UInt16 *insertIndexPtr, UInt32 *newNodeNumPtr, UInt16 *recsRotatedPtr ) argument
1483 RotateRight(BTreeControlBlockPtr btreePtr, NodeDescPtr leftNodePtr, NodeDescPtr rightNodePtr, UInt16 leftInsertIndex, KeyPtr keyPtr, UInt8 *recPtr, UInt16 recSize, UInt16 *insertIndexPtr, UInt32 *newNodeNumPtr, Boolean *didRecordFitPtr, UInt16 *recsRotatedPtr ) argument
1781 KeyPtr keyPtr; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeTreeOps.c119 KeyPtr keyPtr,
136 KeyPtr keyPtr,
184 keyPtr - pointer to the key to search for
210 KeyPtr keyPtr; local
298 err = GetRecordByIndex (btreePtr, nodeRec.buffer, index, &keyPtr, &dataPtr, &dataSize);
353 KeyPtr keyPtr,
365 primaryKey.keyPtr = keyPtr;
366 primaryKey.keyLength = GetKeyLength(btreePtr, primaryKey.keyPtr, (level == 1));
456 KeyPtr keyPtr; local
351 InsertTree( BTreeControlBlockPtr btreePtr, TreePathTable treePathTable, KeyPtr keyPtr, u_int8_t * recPtr, u_int16_t recSize, BlockDescriptor *targetNode, u_int16_t index, u_int16_t level, Boolean replacingKey, u_int32_t *insertNode ) argument
822 KeyPtr keyPtr; local
955 RotateLeft(BTreeControlBlockPtr btreePtr, NodeDescPtr leftNode, NodeDescPtr rightNode, u_int16_t rightInsertIndex, KeyPtr keyPtr, u_int8_t * recPtr, u_int16_t recSize, u_int16_t *insertIndex, u_int32_t *insertNodeNum, Boolean *recordFit, u_int16_t *recsRotated ) argument
1117 SplitLeft(BTreeControlBlockPtr btreePtr, BlockDescriptor *leftNode, BlockDescriptor *rightNode, u_int32_t rightNodeNum, u_int16_t index, KeyPtr keyPtr, u_int8_t * recPtr, u_int16_t recSize, u_int16_t *insertIndex, u_int32_t *insertNodeNum, u_int16_t *recsRotated ) argument
1265 KeyPtr keyPtr; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexpect_tcl.h23 #define TCL_TSD_INIT(keyPtr) (ThreadSpecificData *)Tcl_GetThreadData((keyPtr), sizeof(ThreadSpecificData))
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A Dtls_hmac.h52 const void *keyPtr,
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A Dtls_hmac.h52 const void *keyPtr,
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A Dtls_hmac.h52 const void *keyPtr,
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonDictionary.h113 -(BOOL)wrappedKey:(id*)keyPtr value:(id*)valuePtr atPosition:(Py_ssize_t*)positionPtr;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonDictionary.h113 -(BOOL)wrappedKey:(id*)keyPtr value:(id*)valuePtr atPosition:(Py_ssize_t*)positionPtr;

Completed in 265 milliseconds

1234