Home
last modified time | relevance | path

Searched refs:cih (Results 1 – 25 of 522) sorted by relevance

12345678910>>...21

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DCursor.cs491 CursorInfoHeader cih; in InitFromStream()
510 if (cih.biSize != 40) { in InitFromStream()
524 curdata.cursorHeader = cih; in InitFromStream()
528 switch (cih.biBitCount){ in InitFromStream()
548 bytes_per_line = ((((cih.biWidth * cih.biPlanes * cih.biBitCount)+ 31)>>5)<<2); in InitFromStream()
574 CursorInfoHeader cih; in ToBitmap()
586 cih = ci.cursorHeader; in ToBitmap()
587 biHeight = cih.biHeight / 2; in ToBitmap()
610 switch(cih.biBitCount) { in ToBitmap()
636 if (cih.biBitCount < 24) { in ToBitmap()
[all …]
/dports/security/gnome-keyring/gnome-keyring-40.0/pkcs11/gkm/
H A Dgkm-aes-mechanism.c80 gcry_cipher_hd_t cih; in gkm_aes_mechanism_wrap() local
113 cih = gkm_aes_key_get_cipher (key, GCRY_CIPHER_MODE_CBC); in gkm_aes_mechanism_wrap()
114 if (cih == NULL) in gkm_aes_mechanism_wrap()
118 gcry_cipher_close (cih); in gkm_aes_mechanism_wrap()
124 gcry_cipher_close (cih); in gkm_aes_mechanism_wrap()
132 gcry_cipher_close (cih); in gkm_aes_mechanism_wrap()
142 gcry_cipher_close (cih); in gkm_aes_mechanism_wrap()
155 gcry_cipher_hd_t cih; in gkm_aes_mechanism_unwrap() local
182 if (cih == NULL) in gkm_aes_mechanism_unwrap()
186 gcry_cipher_close (cih); in gkm_aes_mechanism_unwrap()
[all …]
H A Dgkm-aes-key.c73 gcry_cipher_hd_t cih; in attribute_set_check_value() local
87 cih = gkm_aes_key_get_cipher (self, GCRY_CIPHER_MODE_ECB); in attribute_set_check_value()
88 if (cih == NULL) in attribute_set_check_value()
95 gcry = gcry_cipher_encrypt (cih, data, self->n_value, NULL, 0); in attribute_set_check_value()
102 gcry_cipher_close (cih); in attribute_set_check_value()
267 gcry_cipher_hd_t cih; in gkm_aes_key_get_cipher() local
276 gcry = gcry_cipher_open (&cih, algorithm, mode, 0); in gkm_aes_key_get_cipher()
284 gcry = gcry_cipher_setkey (cih, self->value, self->n_value); in gkm_aes_key_get_cipher()
287 return cih; in gkm_aes_key_get_cipher()
H A Dgkm-data-der.c860 gcry_cipher_hd_t cih = NULL; in gkm_data_der_read_private_pkcs8_crypted() local
908 gcry_cipher_close (cih); in gkm_data_der_read_private_pkcs8_crypted()
909 cih = NULL; in gkm_data_der_read_private_pkcs8_crypted()
936 if (cih) in gkm_data_der_read_private_pkcs8_crypted()
937 gcry_cipher_close (cih); in gkm_data_der_read_private_pkcs8_crypted()
1365 gcry_cipher_hd_t cih; in prepare_and_encode_pkcs8_cipher() local
1410 g_return_val_if_fail (cih, NULL); in prepare_and_encode_pkcs8_cipher()
1419 return cih; in prepare_and_encode_pkcs8_cipher()
1502 gcry_cipher_hd_t cih; in gkm_data_der_write_private_pkcs8_crypted() local
1519 g_return_val_if_fail (cih, NULL); in gkm_data_der_write_private_pkcs8_crypted()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Collections/
H A DCaseInsensitiveHashCodeProviderTest.cs42 int h1 = cih.GetHashCode ("Test String"); in Default()
44 cih = CaseInsensitiveHashCodeProvider.Default; in Default()
45 int h2 = cih.GetHashCode ("Test String"); in Default()
70 int h1 = cih.GetHashCode ("Test String"); in DefaultInvariant()
72 cih = CaseInsensitiveHashCodeProvider.DefaultInvariant; in DefaultInvariant()
73 int h2 = cih.GetHashCode ("Test String"); in DefaultInvariant()
86 int h1 = cih.GetHashCode ("Test String"); in HashCode()
87 int h2 = cih.GetHashCode ("test string"); in HashCode()
88 int h3 = cih.GetHashCode ("TEST STRING"); in HashCode()
93 h1 = cih.GetHashCode ("one"); in HashCode()
[all …]
/dports/security/gcr/gcr-3.40.0/egg/
H A Degg-symkey.c679 *cih = NULL; in read_cipher_pkcs5_pbe()
715 gcry_cipher_setkey (*cih, key, n_key); in read_cipher_pkcs5_pbe()
876 *cih = NULL; in read_cipher_pkcs5_pbes2()
949 if (ret != TRUE && *cih) { in read_cipher_pkcs5_pbes2()
950 gcry_cipher_close (*cih); in read_cipher_pkcs5_pbes2()
951 *cih = NULL; in read_cipher_pkcs5_pbes2()
979 *cih = NULL; in read_cipher_pkcs12_pbe()
1012 gcry_cipher_setkey (*cih, key, n_key); in read_cipher_pkcs12_pbe()
1017 if (ret != TRUE && *cih) { in read_cipher_pkcs12_pbe()
1018 gcry_cipher_close (*cih); in read_cipher_pkcs12_pbe()
[all …]
H A Dtest-symkey.c364 gcry_cipher_hd_t cih; in test_read_cipher() local
378 asn, &cih); in test_read_cipher()
384 gcry = gcry_cipher_encrypt (cih, block, test->n_text_length, NULL, 0); in test_read_cipher()
390 gcry_cipher_close (cih); in test_read_cipher()
483 gcry_cipher_hd_t cih; in test_read_cipher_invalid() local
495 asn, &cih); in test_read_cipher_invalid()
504 gcry_cipher_hd_t cih; in test_read_cipher_unsupported_pbe() local
522 "blah", 4, asn, &cih); in test_read_cipher_unsupported_pbe()
/dports/security/gnome-keyring/gnome-keyring-40.0/egg/
H A Degg-symkey.c680 *cih = NULL; in read_cipher_pkcs5_pbe()
716 gcry_cipher_setkey (*cih, key, n_key); in read_cipher_pkcs5_pbe()
877 *cih = NULL; in read_cipher_pkcs5_pbes2()
950 if (ret != TRUE && *cih) { in read_cipher_pkcs5_pbes2()
951 gcry_cipher_close (*cih); in read_cipher_pkcs5_pbes2()
952 *cih = NULL; in read_cipher_pkcs5_pbes2()
980 *cih = NULL; in read_cipher_pkcs12_pbe()
1013 gcry_cipher_setkey (*cih, key, n_key); in read_cipher_pkcs12_pbe()
1018 if (ret != TRUE && *cih) { in read_cipher_pkcs12_pbe()
1019 gcry_cipher_close (*cih); in read_cipher_pkcs12_pbe()
[all …]
H A Dtest-symkey.c364 gcry_cipher_hd_t cih; in test_read_cipher() local
378 asn, &cih); in test_read_cipher()
384 gcry = gcry_cipher_encrypt (cih, block, test->n_text_length, NULL, 0); in test_read_cipher()
390 gcry_cipher_close (cih); in test_read_cipher()
483 gcry_cipher_hd_t cih; in test_read_cipher_invalid() local
495 asn, &cih); in test_read_cipher_invalid()
504 gcry_cipher_hd_t cih; in test_read_cipher_unsupported_pbe() local
522 "blah", 4, asn, &cih); in test_read_cipher_unsupported_pbe()
/dports/security/libgnome-keyring/libgnome-keyring-3.12.0/library/
H A Dgkr-session.c456 gcry_cipher_hd_t cih; in session_encode_aes_secret() local
477 gcry_cipher_close (cih); in session_encode_aes_secret()
484 gcry = gcry_cipher_setiv (cih, iv, 16); in session_encode_aes_secret()
488 gcry = gcry_cipher_setkey (cih, session->key, session->n_key); in session_encode_aes_secret()
493 gcry = gcry_cipher_encrypt (cih, (guchar*)padded + pos, 16, NULL, 0); in session_encode_aes_secret()
497 gcry_cipher_close (cih); in session_encode_aes_secret()
607 gcry_cipher_hd_t cih; in session_decode_aes_secret() local
639 gcry = gcry_cipher_setiv (cih, parameter, n_parameter); in session_decode_aes_secret()
642 gcry = gcry_cipher_setkey (cih, session->key, session->n_key); in session_decode_aes_secret()
652 gcry = gcry_cipher_decrypt (cih, (guchar*)padded + pos, 16, NULL, 0); in session_decode_aes_secret()
[all …]
/dports/security/libsecret/libsecret-0.20.4/libsecret/
H A Dsecret-session.c389 gcry_cipher_hd_t cih; in service_decode_aes_secret() local
405 gcry = gcry_cipher_open (&cih, GCRY_CIPHER_AES, GCRY_CIPHER_MODE_CBC, 0); in service_decode_aes_secret()
415 gcry = gcry_cipher_setiv (cih, param, n_param); in service_decode_aes_secret()
422 gcry = gcry_cipher_setkey (cih, session->key, session->n_key); in service_decode_aes_secret()
432 gcry = gcry_cipher_decrypt (cih, (guchar*)padded + pos, 16, NULL, 0); in service_decode_aes_secret()
436 gcry_cipher_close (cih); in service_decode_aes_secret()
544 gcry_cipher_hd_t cih; in service_encode_aes_secret() local
571 gcry = gcry_cipher_setiv (cih, iv, 16); in service_encode_aes_secret()
575 gcry = gcry_cipher_setkey (cih, session->key, session->n_key); in service_encode_aes_secret()
580 gcry = gcry_cipher_encrypt (cih, (guchar*)padded + pos, 16, NULL, 0); in service_encode_aes_secret()
[all …]
/dports/security/gcr/gcr-3.40.0/gcr/
H A Dgcr-secret-exchange.c721 gcry_cipher_hd_t cih; in gcr_secret_exchange_default_encrypt_transport_data() local
733 gcry = gcry_cipher_open (&cih, EXCHANGE_1_CIPHER_ALGO, EXCHANGE_1_CIPHER_MODE, 0); in gcr_secret_exchange_default_encrypt_transport_data()
746 gcry = gcry_cipher_setkey (cih, data->key, EXCHANGE_1_KEY_LENGTH); in gcr_secret_exchange_default_encrypt_transport_data()
750 gcry = gcry_cipher_setiv (cih, *iv, EXCHANGE_1_IV_LENGTH); in gcr_secret_exchange_default_encrypt_transport_data()
761 gcry = gcry_cipher_encrypt (cih, result + pos, 16, padded + pos, 16); in gcr_secret_exchange_default_encrypt_transport_data()
765 gcry_cipher_close (cih); in gcr_secret_exchange_default_encrypt_transport_data()
790 gcry_cipher_hd_t cih; in gcr_secret_exchange_default_decrypt_transport_data() local
808 gcry = gcry_cipher_open (&cih, EXCHANGE_1_CIPHER_ALGO, EXCHANGE_1_CIPHER_MODE, 0); in gcr_secret_exchange_default_decrypt_transport_data()
815 gcry = gcry_cipher_setkey (cih, data->key, EXCHANGE_1_KEY_LENGTH); in gcr_secret_exchange_default_decrypt_transport_data()
819 gcry = gcry_cipher_setiv (cih, iv, n_iv); in gcr_secret_exchange_default_decrypt_transport_data()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/netfilter/ipvs/
H A Dip_vs_core.c961 if (cih == NULL) in ip_vs_out_icmp()
964 pp = ip_vs_proto_get(cih->protocol); in ip_vs_out_icmp()
1680 if (cih == NULL) in ip_vs_in_icmp()
1686 if (cih->protocol == IPPROTO_IPIP) { in ip_vs_in_icmp()
1698 offset += cih->ihl * 4; in ip_vs_in_icmp()
1700 if (cih == NULL) in ip_vs_in_icmp()
1713 offset2 = offset + cih->ihl * 4; in ip_vs_in_icmp()
1729 if (cih && cih->version == 4 && cih->ihl >= 5 && in ip_vs_in_icmp()
1791 __be16 frag_off = cih->frag_off; in ip_vs_in_icmp()
1838 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol || in ip_vs_in_icmp()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/net/netfilter/ipvs/
H A Dip_vs_core.c961 if (cih == NULL) in ip_vs_out_icmp()
964 pp = ip_vs_proto_get(cih->protocol); in ip_vs_out_icmp()
1680 if (cih == NULL) in ip_vs_in_icmp()
1686 if (cih->protocol == IPPROTO_IPIP) { in ip_vs_in_icmp()
1698 offset += cih->ihl * 4; in ip_vs_in_icmp()
1700 if (cih == NULL) in ip_vs_in_icmp()
1713 offset2 = offset + cih->ihl * 4; in ip_vs_in_icmp()
1729 if (cih && cih->version == 4 && cih->ihl >= 5 && in ip_vs_in_icmp()
1791 __be16 frag_off = cih->frag_off; in ip_vs_in_icmp()
1838 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol || in ip_vs_in_icmp()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/netfilter/ipvs/
H A Dip_vs_core.c961 if (cih == NULL) in ip_vs_out_icmp()
964 pp = ip_vs_proto_get(cih->protocol); in ip_vs_out_icmp()
1680 if (cih == NULL) in ip_vs_in_icmp()
1686 if (cih->protocol == IPPROTO_IPIP) { in ip_vs_in_icmp()
1698 offset += cih->ihl * 4; in ip_vs_in_icmp()
1700 if (cih == NULL) in ip_vs_in_icmp()
1713 offset2 = offset + cih->ihl * 4; in ip_vs_in_icmp()
1729 if (cih && cih->version == 4 && cih->ihl >= 5 && in ip_vs_in_icmp()
1791 __be16 frag_off = cih->frag_off; in ip_vs_in_icmp()
1838 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol || in ip_vs_in_icmp()
[all …]
/dports/security/gnome-keyring/gnome-keyring-40.0/pkcs11/secret-store/
H A Dgkm-secret-binary.c334 gcry_cipher_hd_t cih; in encrypt_buffer() local
349 gerr = gcry_cipher_open (&cih, GCRY_CIPHER_AES128, GCRY_CIPHER_MODE_CBC, 0); in encrypt_buffer()
359 gerr = gcry_cipher_setkey (cih, key, 16); in encrypt_buffer()
364 gerr = gcry_cipher_setiv (cih, iv, 16); in encrypt_buffer()
370 gerr = gcry_cipher_encrypt (cih, buffer->buf + pos, 16, NULL, 0); in encrypt_buffer()
374 gcry_cipher_close (cih); in encrypt_buffer()
384 gcry_cipher_hd_t cih; in decrypt_buffer() local
416 gerr = gcry_cipher_setkey (cih, key, 16); in decrypt_buffer()
421 gerr = gcry_cipher_setiv (cih, iv, 16); in decrypt_buffer()
427 gerr = gcry_cipher_decrypt (cih, buffer->buf + pos, 16, NULL, 0); in decrypt_buffer()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/
H A DCih.php47 $this->servicePath = 'cih/v3/';
49 $this->serviceName = 'cih';
/dports/devel/hs-git-annex/git-annex-8.20210903/Annex/
H A DConcurrent.hs40 cih <- mkConcurrentCheckIgnoreHandle c
45 , Annex.checkignorehandle = Just cih
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/
H A DCih.php47 $this->servicePath = 'cih/v3/';
49 $this->serviceName = 'cih';
/dports/databases/pgpool-II-43/pgpool-II-4.3.0/src/query_cache/
H A Dpool_memqcache.c2650 POOL_CACHE_ITEM_HEADER *cih; in pool_get_item_shmem_cache() local
2686 cih = pool_cache_item_header(cacheid); in pool_get_item_shmem_cache()
2701 POOL_CACHE_ITEM_HEADER *cih; in pool_find_item_on_shmem_cache() local
2713 if (cih->expire > 0) in pool_find_item_on_shmem_cache()
2716 if (now > (cih->timestamp + cih->expire)) in pool_find_item_on_shmem_cache()
2721 now, cih->timestamp + cih->expire))); in pool_find_item_on_shmem_cache()
2743 POOL_CACHE_ITEM_HEADER *cih; in pool_delete_item_shmem_cache() local
2802 cih = pool_cache_item_header(cacheid); in pool_delete_item_shmem_cache()
3016 POOL_CACHE_ITEM_HEADER *cih; in dump_shmem_cache() local
3027 cih = item_header((char *) bh, i); in dump_shmem_cache()
[all …]
/dports/databases/pgpool-II-41/pgpool-II-4.1.10/src/query_cache/
H A Dpool_memqcache.c2646 POOL_CACHE_ITEM_HEADER *cih; in pool_get_item_shmem_cache() local
2682 cih = pool_cache_item_header(cacheid); in pool_get_item_shmem_cache()
2697 POOL_CACHE_ITEM_HEADER *cih; in pool_find_item_on_shmem_cache() local
2709 if (cih->expire > 0) in pool_find_item_on_shmem_cache()
2712 if (now > (cih->timestamp + cih->expire)) in pool_find_item_on_shmem_cache()
2717 now, cih->timestamp + cih->expire))); in pool_find_item_on_shmem_cache()
2739 POOL_CACHE_ITEM_HEADER *cih; in pool_delete_item_shmem_cache() local
2798 cih = pool_cache_item_header(cacheid); in pool_delete_item_shmem_cache()
3012 POOL_CACHE_ITEM_HEADER *cih; in dump_shmem_cache() local
3023 cih = item_header((char *) bh, i); in dump_shmem_cache()
[all …]
/dports/databases/pgpool-II-42/pgpool-II-4.2.3/src/query_cache/
H A Dpool_memqcache.c2650 POOL_CACHE_ITEM_HEADER *cih; in pool_get_item_shmem_cache() local
2686 cih = pool_cache_item_header(cacheid); in pool_get_item_shmem_cache()
2701 POOL_CACHE_ITEM_HEADER *cih; in pool_find_item_on_shmem_cache() local
2713 if (cih->expire > 0) in pool_find_item_on_shmem_cache()
2716 if (now > (cih->timestamp + cih->expire)) in pool_find_item_on_shmem_cache()
2721 now, cih->timestamp + cih->expire))); in pool_find_item_on_shmem_cache()
2743 POOL_CACHE_ITEM_HEADER *cih; in pool_delete_item_shmem_cache() local
2802 cih = pool_cache_item_header(cacheid); in pool_delete_item_shmem_cache()
3016 POOL_CACHE_ITEM_HEADER *cih; in dump_shmem_cache() local
3027 cih = item_header((char *) bh, i); in dump_shmem_cache()
[all …]
/dports/print/lilypond-devel/lilypond-2.23.5/input/regression/
H A Dmidi-microtone.ly7 { c4 cih cis cisih d }
/dports/print/lilypond/lilypond-2.22.1/input/regression/
H A Dmidi-microtone.ly7 { c4 cih cis cisih d }
H A Daccidental-quarter.ly17 cih

12345678910>>...21