Home
last modified time | relevance | path

Searched refs:pDir (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/qat/qat_api/common/crypto/sym/qat/
H A Dlac_sym_qat_cipher.c544 icp_qat_hw_cipher_dir_t *pDir, in LacSymQat_CipherGetCfgData() argument
557 *pDir = ICP_QAT_HW_CIPHER_ENCRYPT; in LacSymQat_CipherGetCfgData()
580 *pDir = icp_qat_alg_info[cipherIdx].dir[cipherDirection]; in LacSymQat_CipherGetCfgData()
603 *pDir = ICP_QAT_HW_CIPHER_DECRYPT; in LacSymQat_CipherGetCfgData()
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/include/
H A Dlac_sym_qat_cipher.h261 icp_qat_hw_cipher_dir_t *pDir,
/freebsd/contrib/sqlite3/
H A Dshell.c3986 static int closedir(DIR *pDir){ in closedir() argument
3988 if( pDir==0 ){ in closedir()
3991 if( pDir->d_handle!=0 && pDir->d_handle!=(-1) ){ in closedir()
3992 rc = _findclose(pDir->d_handle); in closedir()
3994 sqlite3_free(pDir); in closedir()
4003 DIR *pDir; in opendir() local
4008 pDir = sqlite3_malloc64( sizeof(DIR) ); in opendir()
4009 if( pDir==0 ) return 0; in opendir()
4010 memset(pDir, 0, sizeof(DIR)); in opendir()
4015 closedir(pDir); in opendir()
[all …]