/reactos/sdk/lib/crt/startup/ |
H A D | tlsthrd.c | 46 __mingwthr_key_t *new_key; in ___w64_mingwthr_add_key_dtor() local 50 new_key = (__mingwthr_key_t *) calloc (1, sizeof (__mingwthr_key_t)); in ___w64_mingwthr_add_key_dtor() 51 if (new_key == NULL) in ___w64_mingwthr_add_key_dtor() 54 new_key->key = key; in ___w64_mingwthr_add_key_dtor() 55 new_key->dtor = dtor; in ___w64_mingwthr_add_key_dtor() 59 new_key->next = key_dtor_list; in ___w64_mingwthr_add_key_dtor() 60 key_dtor_list = new_key; in ___w64_mingwthr_add_key_dtor()
|
/reactos/dll/3rdparty/libpng/ |
H A D | pngwutil.c | 1534 png_byte new_key[80]; in png_write_tEXt() local 1538 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_tEXt() 1561 png_write_chunk_data(png_ptr, new_key, key_len + 1); in png_write_tEXt() 1577 png_byte new_key[81]; in png_write_zTXt() local 1591 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_zTXt() 1597 new_key[++key_len] = PNG_COMPRESSION_TYPE_BASE; in png_write_zTXt() 1611 png_write_chunk_data(png_ptr, new_key, key_len); in png_write_zTXt() 1629 png_byte new_key[82]; in png_write_iTXt() local 1634 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_iTXt() 1656 new_key[++key_len] = PNG_COMPRESSION_TYPE_BASE; in png_write_iTXt() [all …]
|
H A D | pngset.c | 1729 png_check_keyword(png_structrp png_ptr, png_const_charp key, png_bytep new_key) in png_check_keyword() argument 1742 *new_key = 0; in png_check_keyword() 1752 *new_key++ = ch; ++key_len; space = 0; in png_check_keyword() 1760 *new_key++ = 32; ++key_len; space = 1; in png_check_keyword() 1773 --key_len; --new_key; in png_check_keyword() 1779 *new_key = 0; in png_check_keyword()
|
H A D | pngpriv.h | 2109 png_const_charp key, png_bytep new_key), PNG_EMPTY);
|
/reactos/modules/rosapps/applications/devutils/btrfstools/ |
H A D | btrfs_structures.py | 477 new_key = copy.copy(self) 478 new_key.key += amount 479 return new_key 482 new_key = copy.copy(self) 483 new_key.key -= amount 484 return new_key
|
/reactos/dll/win32/rsaenh/ |
H A D | rsaenh.c | 794 static HCRYPTKEY new_key(HCRYPTPROV hProv, ALG_ID aiAlgid, DWORD dwFlags, CRYPTKEY **ppCryptKey) in new_key() function 2877 *phKey = new_key(hProv, algID, MAKELONG(0,pRSAPubKey->bitlen), &pCryptKey); in import_public_key() 2952 *phKey = new_key(hProv, pBlobHeader->aiKeyAlg, dwKeyLen<<19, &pCryptKey); in import_symmetric_key() 3004 *phKey = new_key(hProv, CALG_HMAC, 0, &pCryptKey); in import_plaintext_key() 3035 *phKey = new_key(hProv, pBlobHeader->aiKeyAlg, *pKeyLen<<19, &pCryptKey); in import_plaintext_key() 3180 *phKey = new_key(hProv, CALG_RSA_SIGN, dwFlags, &pCryptKey); in RSAENH_CPGenKey() 3192 *phKey = new_key(hProv, CALG_RSA_KEYX, dwFlags, &pCryptKey); in RSAENH_CPGenKey() 3215 *phKey = new_key(hProv, Algid, dwFlags, &pCryptKey); in RSAENH_CPGenKey() 3957 *phKey = new_key(hProv, Algid, dwFlags, &pCryptKey); in RSAENH_CPDeriveKey() 4045 *phKey = new_key(hProv, pMasterKey->siSChannelInfo.saEncAlg.Algid, in RSAENH_CPDeriveKey() [all …]
|
/reactos/modules/rostests/winetests/reg/ |
H A D | add.c | 127 HKEY new_key; in add_key_() local 130 KEY_READ|KEY_WRITE|sam, NULL, &new_key, NULL); in add_key_() 134 *hkey = new_key; in add_key_() 136 RegCloseKey(new_key); in add_key_()
|
/reactos/dll/3rdparty/libpng/docs/ |
H A D | CHANGES | 198 Fixed typecasts of "new_key", etc. (Andreas Dilger) 1910 Add some "png_byte" typecasts in png_check_keyword() and write new_key 2076 Changed "new_key[79] = '\0';" to "(*new_key)[79] = '\0';" in pngwutil.c 2209 to ensure that new_key gets initialized and removed extra warning
|