| /netbsd/src/external/gpl3/gcc/dist/libgomp/ |
| D | icv.c | 38 struct gomp_task_icv *icv = gomp_icv (true); in ialias_redirect() local 39 icv->nthreads_var = (n > 0 ? n : 1); in ialias_redirect() 45 struct gomp_task_icv *icv = gomp_icv (true); in omp_set_dynamic() local 46 icv->dyn_var = val; in omp_set_dynamic() 52 struct gomp_task_icv *icv = gomp_icv (false); in omp_get_dynamic() local 53 return icv->dyn_var; in omp_get_dynamic() 61 struct gomp_task_icv *icv = gomp_icv (true); in omp_set_nested() local 63 icv->max_active_levels_var = gomp_supported_active_levels; in omp_set_nested() 64 else if (icv->max_active_levels_var > 1) in omp_set_nested() 65 icv->max_active_levels_var = 1; in omp_set_nested() [all …]
|
| D | parallel.c | 42 struct gomp_task_icv *icv; in gomp_resolve_num_threads() local 47 icv = gomp_icv (false); in gomp_resolve_num_threads() 56 && icv->max_active_levels_var <= 1 in gomp_resolve_num_threads() 60 else if (thr->ts.active_level >= icv->max_active_levels_var) in gomp_resolve_num_threads() 65 threads_requested = icv->nthreads_var; in gomp_resolve_num_threads() 73 if (icv->dyn_var) in gomp_resolve_num_threads() 85 if (__builtin_expect (icv->thread_limit_var == UINT_MAX, 1) in gomp_resolve_num_threads() 98 if (num_threads > icv->thread_limit_var) in gomp_resolve_num_threads() 99 num_threads = icv->thread_limit_var; in gomp_resolve_num_threads() 110 if (icv->thread_limit_var - busy + 1 < num_threads) in gomp_resolve_num_threads() [all …]
|
| D | loop.c | 180 struct gomp_task_icv *icv = gomp_icv (false); in GOMP_loop_runtime_start() local 181 switch (icv->run_sched_var & ~GFS_MONOTONIC) in GOMP_loop_runtime_start() 185 icv->run_sched_chunk_size, in GOMP_loop_runtime_start() 189 icv->run_sched_chunk_size, in GOMP_loop_runtime_start() 193 icv->run_sched_chunk_size, in GOMP_loop_runtime_start() 223 struct gomp_task_icv *icv = gomp_icv (false); in gomp_adjust_sched() local 224 sched = icv->run_sched_var & ~GFS_MONOTONIC; in gomp_adjust_sched() 230 *chunk_size = icv->run_sched_chunk_size; in gomp_adjust_sched() 390 struct gomp_task_icv *icv = gomp_icv (false); in GOMP_loop_ordered_runtime_start() local 391 switch (icv->run_sched_var & ~GFS_MONOTONIC) in GOMP_loop_ordered_runtime_start() [all …]
|
| D | teams.c | 42 struct gomp_task_icv *icv = gomp_icv (true); in GOMP_teams_reg() local 43 old_thread_limit_var = icv->thread_limit_var; in GOMP_teams_reg() 44 icv->thread_limit_var in GOMP_teams_reg() 56 struct gomp_task_icv *icv = gomp_icv (true); in GOMP_teams_reg() local 57 icv->thread_limit_var = old_thread_limit_var; in GOMP_teams_reg()
|
| D | icv-device.c | 34 struct gomp_task_icv *icv = gomp_icv (true); in omp_set_default_device() local 35 icv->default_device_var = device_num >= 0 ? device_num : 0; in omp_set_default_device() 43 struct gomp_task_icv *icv = gomp_icv (false); in ialias() local 44 return icv->default_device_var; in ialias()
|
| D | loop_ull.c | 177 struct gomp_task_icv *icv = gomp_icv (false); in GOMP_loop_ull_runtime_start() local 178 switch (icv->run_sched_var & ~GFS_MONOTONIC) in GOMP_loop_ull_runtime_start() 182 icv->run_sched_chunk_size, in GOMP_loop_ull_runtime_start() 186 icv->run_sched_chunk_size, in GOMP_loop_ull_runtime_start() 190 icv->run_sched_chunk_size, in GOMP_loop_ull_runtime_start() 221 struct gomp_task_icv *icv = gomp_icv (false); in gomp_adjust_sched() local 222 sched = icv->run_sched_var & ~GFS_MONOTONIC; in gomp_adjust_sched() 228 *chunk_size = icv->run_sched_chunk_size; in gomp_adjust_sched() 391 struct gomp_task_icv *icv = gomp_icv (false); in GOMP_loop_ull_ordered_runtime_start() local 392 switch (icv->run_sched_var & ~GFS_MONOTONIC) in GOMP_loop_ull_ordered_runtime_start() [all …]
|
| D | team.c | 327 struct gomp_task_icv *icv; in gomp_team_start() local 343 icv = task ? &task->icv : &gomp_global_icv; in gomp_team_start() 372 nthreads_var = icv->nthreads_var; in gomp_team_start() 376 bind_var = icv->bind_var; in gomp_team_start() 383 gomp_init_task (thr->task, task, icv); in gomp_team_start() 385 team->implicit_task[0].icv.nthreads_var = nthreads_var; in gomp_team_start() 386 team->implicit_task[0].icv.bind_var = bind_var; in gomp_team_start() 661 gomp_init_task (nthr->task, task, icv); in gomp_team_start() 662 team->implicit_task[i].icv.nthreads_var = nthreads_var; in gomp_team_start() 663 team->implicit_task[i].icv.bind_var = bind_var; in gomp_team_start() [all …]
|
| D | target.c | 131 struct gomp_task_icv *icv = gomp_icv (false); in resolve_device() local 132 device_id = icv->default_device_var; in resolve_device() 2643 struct gomp_task_icv *icv = task ? &task->icv : &gomp_global_icv; in GOMP_target_ext() local 2654 gomp_init_task (thr->task, NULL, icv); in GOMP_target_ext() 2768 struct gomp_task_icv *icv = gomp_icv (false); in gomp_target_data_fallback() local 2775 if (icv->target_data) in gomp_target_data_fallback() 2784 tgt->prev = icv->target_data; in gomp_target_data_fallback() 2785 icv->target_data = tgt; in gomp_target_data_fallback() 2803 struct gomp_task_icv *icv = gomp_icv (true); in GOMP_target_data() local 2804 tgt->prev = icv->target_data; in GOMP_target_data() [all …]
|
| D | Makefile.am | 63 icv.c icv-device.c iter.c iter_ull.c loop.c loop_ull.c ordered.c \
|
| /netbsd/src/sys/net80211/ |
| D | ieee80211_crypto_wep.c | 309 uint8_t icv[IEEE80211_WEP_CRCLEN]; in wep_encrypt() local 373 icv[0] = crc; in wep_encrypt() 374 icv[1] = crc >> 8; in wep_encrypt() 375 icv[2] = crc >> 16; in wep_encrypt() 376 icv[3] = crc >> 24; in wep_encrypt() 381 icv[k] ^= S[(S[i] + S[j]) & 0xff]; in wep_encrypt() 383 return m_append(m0, IEEE80211_WEP_CRCLEN, icv); in wep_encrypt() 394 uint8_t icv[IEEE80211_WEP_CRCLEN]; in wep_decrypt() local 459 icv[0] = crc; in wep_decrypt() 460 icv[1] = crc >> 8; in wep_decrypt() [all …]
|
| D | ieee80211_crypto_tkip.c | 579 uint8_t icv[IEEE80211_WEP_CRCLEN]) in wep_encrypt() 626 icv[0] = crc; in wep_encrypt() 627 icv[1] = crc >> 8; in wep_encrypt() 628 icv[2] = crc >> 16; in wep_encrypt() 629 icv[3] = crc >> 24; in wep_encrypt() 634 icv[k] ^= S[(S[i] + S[j]) & 0xff]; in wep_encrypt() 643 u8 *pos, icv[4]; in wep_decrypt() local 685 icv[0] = crc; in wep_decrypt() 686 icv[1] = crc >> 8; in wep_decrypt() 687 icv[2] = crc >> 16; in wep_decrypt() [all …]
|
| /netbsd/src/external/bsd/tcpdump/dist/tests/ |
| D | ospf3_ah-vv.out | 1 …ngth: 60) fe80::1 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0x13,icv=0x21d3a95c5ffd4d184… 6 …ength: 60) fe80::2 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0xd,icv=0xc628c844e31fdc17a… 11 …ngth: 64) fe80::1 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0x14,icv=0xa0e7f8abf9691a8bf… 17 …ength: 64) fe80::2 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0xe,icv=0x518a0e7168d8b094b… 23 …ngth: 64) fe80::1 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0x15,icv=0x561efba194c33d4d2… 29 …ength: 64) fe80::2 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0xf,icv=0xeeef2d75c764d8a19… 35 …ngth: 64) fe80::1 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0x17,icv=0xad97d931a5730d110… 42 …ngth: 52) fe80::1 > fe80::2: AH(length=4(24-bytes),spi=0x00000100,seq=0x16,icv=0xd0883638d39101562… 45 …ngth: 64) fe80::2 > ff02::5: AH(length=4(24-bytes),spi=0x00000100,seq=0x10,icv=0x2f2d2f2245eed38b3… 51 …ngth: 52) fe80::1 > fe80::2: AH(length=4(24-bytes),spi=0x00000100,seq=0x18,icv=0xf5a9fb53080623fc8… [all …]
|
| D | ospf-signed-integer-ubsan.out | 1 …gth: 532) fe80::1 > fe80::2: AH(length=4(24-bytes),spi=0x00000100,seq=0x1e,icv=0x0a6ab0b271917e05f…
|
| D | heapoverflow-ip_demux_print.out | 6 … AH(length=48(200-bytes),reserved=0x3030[MustBeZero],spi=0x30303030,seq=0x30303030,icv=0x3030 [|ah]
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/modes/ |
| D | wrap128.c | 183 size_t CRYPTO_128_wrap_pad(void *key, const unsigned char *icv, in CRYPTO_128_wrap_pad() argument 206 if (!icv) in CRYPTO_128_wrap_pad() 209 memcpy(aiv, icv, 4); /* Standard doesn't mention this. */ in CRYPTO_128_wrap_pad() 251 size_t CRYPTO_128_unwrap_pad(void *key, const unsigned char *icv, in CRYPTO_128_unwrap_pad() argument 299 if ((!icv && CRYPTO_memcmp(aiv, default_aiv, 4)) in CRYPTO_128_unwrap_pad() 300 || (icv && CRYPTO_memcmp(aiv, icv, 4))) { in CRYPTO_128_unwrap_pad()
|
| D | siv128.c | 131 SIV_BLOCK *icv) in siv128_do_encrypt() argument 135 if (!EVP_CipherInit_ex(ctx, NULL, NULL, NULL, icv->byte, 1)) in siv128_do_encrypt()
|
| /netbsd/src/external/bsd/wpa/dist/src/eap_common/ |
| D | eap_ikev2_common.c | 74 u8 icv[IKEV2_MAX_HASH_LEN]; in eap_ikev2_validate_icv() local 98 wpabuf_len(msg) - icv_len, icv) < 0) { in eap_ikev2_validate_icv() 103 if (os_memcmp_const(icv, end - icv_len, icv_len) != 0) { in eap_ikev2_validate_icv() 106 icv, icv_len); in eap_ikev2_validate_icv()
|
| D | ikev2_common.c | 537 u8 *icv, *iv; in ikev2_build_encrypted() local 594 icv = wpabuf_put(msg, integ_alg->hash_len); in ikev2_build_encrypted() 602 wpabuf_len(msg) - integ_alg->hash_len, icv); in ikev2_build_encrypted()
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| D | e_des3.c | 320 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; in des_ede3_unwrap() local 328 des_ede_cbc_cipher(ctx, icv, in, 8); in des_ede3_unwrap() 342 BUF_reverse(icv, NULL, 8); in des_ede3_unwrap() 347 des_ede_cbc_cipher(ctx, icv, icv, 8); in des_ede3_unwrap() 349 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0) in des_ede3_unwrap() 351 OPENSSL_cleanse(icv, 8); in des_ede3_unwrap()
|
| D | e_aes.c | 924 } icv; member 1750 ctx->aes.ccm.kmac_param.icv.g[0] = 0; in s390x_aes_ccm_aad() 1751 ctx->aes.ccm.kmac_param.icv.g[1] = 0; in s390x_aes_ccm_aad() 1765 ctx->aes.ccm.kmac_param.icv.b[i] ^= aad[i]; in s390x_aes_ccm_aad() 1767 s390x_km(ctx->aes.ccm.kmac_param.icv.b, 16, in s390x_aes_ccm_aad() 1768 ctx->aes.ccm.kmac_param.icv.b, ctx->aes.ccm.fc, in s390x_aes_ccm_aad() 1787 s390x_km(ctx->aes.ccm.nonce.b, 16, ctx->aes.ccm.kmac_param.icv.b, in s390x_aes_ccm() 1827 ctx->aes.ccm.kmac_param.icv.b[i] ^= in[len + i]; in s390x_aes_ccm() 1829 s390x_km(ctx->aes.ccm.kmac_param.icv.b, 16, in s390x_aes_ccm() 1830 ctx->aes.ccm.kmac_param.icv.b, ctx->aes.ccm.fc, in s390x_aes_ccm() [all …]
|
| /netbsd/src/external/gpl3/gcc/lib/libgomp/ |
| D | defs.mk | 5 G_libgomp_la_SOURCES=alloc.c atomic.c barrier.c critical.c env.c error.c icv.c icv-device.c iter.c …
|
| /netbsd/src/external/bsd/bzip2/dist/ |
| D | compress.c | 363 register UInt16 icv; in sendMTFValues() local 367 icv = mtfv[gs+(nn)]; \ in sendMTFValues() 368 cost01 += s->len_pack[icv][0]; \ in sendMTFValues() 369 cost23 += s->len_pack[icv][1]; \ in sendMTFValues() 370 cost45 += s->len_pack[icv][2]; \ in sendMTFValues() 392 UInt16 icv = mtfv[i]; in sendMTFValues() local 393 for (t = 0; t < nGroups; t++) cost[t] += s->len[t][icv]; in sendMTFValues()
|
| /netbsd/src/external/bsd/wpa/dist/src/eap_peer/ |
| D | eap_pax.c | 340 const u8 *icv, *pos; in eap_pax_process() local 417 icv = pos + len - EAP_PAX_ICV_LEN; in eap_pax_process() 418 wpa_hexdump(MSG_MSGDUMP, "EAP-PAX: ICV", icv, EAP_PAX_ICV_LEN); in eap_pax_process() 428 if (os_memcmp_const(icv, icvbuf, EAP_PAX_ICV_LEN) != 0) { in eap_pax_process()
|
| /netbsd/src/external/bsd/wpa/dist/src/eap_server/ |
| D | eap_server_pax.c | 205 u8 icvbuf[EAP_PAX_ICV_LEN], *icv; in eap_pax_check() local 280 icv = wpabuf_mhead_u8(respData) + mlen - EAP_PAX_ICV_LEN; in eap_pax_check() 281 wpa_hexdump(MSG_MSGDUMP, "EAP-PAX: ICV", icv, EAP_PAX_ICV_LEN); in eap_pax_check() 291 if (os_memcmp_const(icvbuf, icv, EAP_PAX_ICV_LEN) != 0) { in eap_pax_check()
|
| /netbsd/src/sys/external/isc/atheros_hal/dist/ |
| D | ah_regdomain.c | 2580 HAL_CHANNEL_INTERNAL icv; in ath_hal_init_channels() local 2621 OS_MEMZERO(&icv, sizeof(icv)); in ath_hal_init_channels() 2622 icv.channel = c; in ath_hal_init_channels() 2623 icv.channelFlags = cm->flags; in ath_hal_init_channels() 2624 icv.maxRegTxPower = fband->powerDfs; in ath_hal_init_channels() 2625 icv.antennaMax = fband->antennaMax; in ath_hal_init_channels() 2626 icv.regDmnFlags = rd->flags; in ath_hal_init_channels() 2627 icv.conformanceTestLimit = ctl; in ath_hal_init_channels() 2629 icv.channelFlags |= CHANNEL_PASSIVE; in ath_hal_init_channels() 2631 icv.channelFlags &= ~CHANNEL_PASSIVE; in ath_hal_init_channels() [all …]
|