HomeSort by: relevance | last modified time | path
    Searched defs:icv (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libgomp/
icv-device.c 35 struct gomp_task_icv *icv = gomp_icv (true); local
36 icv->default_device_var = device_num;
44 struct gomp_task_icv *icv = gomp_icv (false); local
45 if (icv->default_device_var == INT_MIN)
48 return icv->default_device_var;
teams.c 42 struct gomp_task_icv *icv = gomp_icv (true); local
43 old_thread_limit_var = icv->thread_limit_var;
44 icv->thread_limit_var
56 struct gomp_task_icv *icv = gomp_icv (true); local
57 icv->thread_limit_var = old_thread_limit_var;
icv.c 38 struct gomp_task_icv *icv = gomp_icv (true); local
39 icv->nthreads_var = (n > 0 ? n : 1);
45 struct gomp_task_icv *icv = gomp_icv (true); local
46 icv->dyn_var = val;
52 struct gomp_task_icv *icv = gomp_icv (false); local
53 return icv->dyn_var;
61 struct gomp_task_icv *icv = gomp_icv (true); local
63 icv->max_active_levels_var = gomp_supported_active_levels;
64 else if (icv->max_active_levels_var > 1)
65 icv->max_active_levels_var = 1
71 struct gomp_task_icv *icv = gomp_icv (false); local
80 struct gomp_task_icv *icv = gomp_icv (true); local
105 struct gomp_task_icv *icv = gomp_icv (false); local
113 struct gomp_task_icv *icv = gomp_icv (false); local
120 struct gomp_task_icv *icv = gomp_icv (false); local
129 struct gomp_task_icv *icv = gomp_icv (true); local
141 struct gomp_task_icv *icv = gomp_icv (false); local
166 struct gomp_task_icv *icv = gomp_icv (false); local
    [all...]
parallel.c 42 struct gomp_task_icv *icv; local
47 icv = gomp_icv (false);
56 && icv->max_active_levels_var <= 1
60 else if (thr->ts.active_level >= icv->max_active_levels_var)
65 threads_requested = icv->nthreads_var;
73 if (icv->dyn_var)
85 if (__builtin_expect (icv->thread_limit_var == UINT_MAX, 1)
98 if (num_threads > icv->thread_limit_var)
99 num_threads = icv->thread_limit_var;
110 if (icv->thread_limit_var - busy + 1 < num_threads
140 struct gomp_task_icv *icv = gomp_icv (false); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
icv-device.c 34 struct gomp_task_icv *icv = gomp_icv (true); local
35 icv->default_device_var = device_num >= 0 ? device_num : 0;
43 struct gomp_task_icv *icv = gomp_icv (false); local
44 return icv->default_device_var;
teams.c 42 struct gomp_task_icv *icv = gomp_icv (true); local
43 old_thread_limit_var = icv->thread_limit_var;
44 icv->thread_limit_var
56 struct gomp_task_icv *icv = gomp_icv (true); local
57 icv->thread_limit_var = old_thread_limit_var;
icv.c 38 struct gomp_task_icv *icv = gomp_icv (true); local
39 icv->nthreads_var = (n > 0 ? n : 1);
45 struct gomp_task_icv *icv = gomp_icv (true); local
46 icv->dyn_var = val;
52 struct gomp_task_icv *icv = gomp_icv (false); local
53 return icv->dyn_var;
61 struct gomp_task_icv *icv = gomp_icv (true); local
63 icv->max_active_levels_var = gomp_supported_active_levels;
64 else if (icv->max_active_levels_var > 1)
65 icv->max_active_levels_var = 1
71 struct gomp_task_icv *icv = gomp_icv (false); local
80 struct gomp_task_icv *icv = gomp_icv (true); local
105 struct gomp_task_icv *icv = gomp_icv (false); local
113 struct gomp_task_icv *icv = gomp_icv (false); local
120 struct gomp_task_icv *icv = gomp_icv (false); local
129 struct gomp_task_icv *icv = gomp_icv (true); local
141 struct gomp_task_icv *icv = gomp_icv (false); local
192 struct gomp_task_icv *icv = gomp_icv (false); local
    [all...]
parallel.c 42 struct gomp_task_icv *icv; local
47 icv = gomp_icv (false);
56 && icv->max_active_levels_var <= 1
60 else if (thr->ts.active_level >= icv->max_active_levels_var)
65 threads_requested = icv->nthreads_var;
73 if (icv->dyn_var)
85 if (__builtin_expect (icv->thread_limit_var == UINT_MAX, 1)
98 if (num_threads > icv->thread_limit_var)
99 num_threads = icv->thread_limit_var;
110 if (icv->thread_limit_var - busy + 1 < num_threads
140 struct gomp_task_icv *icv = gomp_icv (false); local
    [all...]
  /src/external/bsd/wpa/dist/src/eap_common/
eap_ikev2_common.c 74 u8 icv[IKEV2_MAX_HASH_LEN]; local
80 "transform / cannot validate ICV");
92 wpa_printf(MSG_DEBUG, "EAP-IKEV2: No SK_a for ICV validation");
98 wpabuf_len(msg) - icv_len, icv) < 0) {
99 wpa_printf(MSG_INFO, "EAP-IKEV2: Could not calculate ICV");
103 if (os_memcmp_const(icv, end - icv_len, icv_len) != 0) {
104 wpa_printf(MSG_INFO, "EAP-IKEV2: Invalid ICV");
105 wpa_hexdump(MSG_DEBUG, "EAP-IKEV2: Calculated ICV",
106 icv, icv_len);
107 wpa_hexdump(MSG_DEBUG, "EAP-IKEV2: Received ICV",
    [all...]
  /src/external/gpl3/gcc/dist/libgomp/config/gcn/
target.c 40 struct gomp_task_icv *icv = gomp_icv (true); local
41 icv->thread_limit_var
team.c 177 struct gomp_task_icv *icv; local
184 icv = task ? &task->icv : &gomp_global_icv;
201 nthreads_var = icv->nthreads_var;
202 gomp_init_task (thr->task, task, icv);
203 team->implicit_task[0].icv.nthreads_var = nthreads_var;
222 gomp_init_task (nthr->task, task, icv);
223 team->implicit_task[i].icv.nthreads_var = nthreads_var;
  /src/external/gpl3/gcc/dist/libgomp/config/nvptx/
target.c 53 struct gomp_task_icv *icv = gomp_icv (true); local
54 icv->thread_limit_var
team.c 153 struct gomp_task_icv *icv; local
160 icv = task ? &task->icv : &gomp_global_icv;
177 nthreads_var = icv->nthreads_var;
178 gomp_init_task (thr->task, task, icv);
179 team->implicit_task[0].icv.nthreads_var = nthreads_var;
198 gomp_init_task (nthr->task, task, icv);
199 team->implicit_task[i].icv.nthreads_var = nthreads_var;
  /src/external/gpl3/gcc.old/dist/libgomp/config/gcn/
target.c 37 struct gomp_task_icv *icv = gomp_icv (true); local
38 icv->thread_limit_var
team.c 158 struct gomp_task_icv *icv; local
165 icv = task ? &task->icv : &gomp_global_icv;
182 nthreads_var = icv->nthreads_var;
183 gomp_init_task (thr->task, task, icv);
184 team->implicit_task[0].icv.nthreads_var = nthreads_var;
203 gomp_init_task (nthr->task, task, icv);
204 team->implicit_task[i].icv.nthreads_var = nthreads_var;
  /src/external/gpl3/gcc.old/dist/libgomp/config/nvptx/
target.c 50 struct gomp_task_icv *icv = gomp_icv (true); local
51 icv->thread_limit_var
team.c 127 struct gomp_task_icv *icv; local
134 icv = task ? &task->icv : &gomp_global_icv;
151 nthreads_var = icv->nthreads_var;
152 gomp_init_task (thr->task, task, icv);
153 team->implicit_task[0].icv.nthreads_var = nthreads_var;
172 gomp_init_task (nthr->task, task, icv);
173 team->implicit_task[i].icv.nthreads_var = nthreads_var;
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_tdes_wrap.c 37 unsigned char icv[8], iv[TDES_IVLEN], sha1tmp[SHA_DIGEST_LENGTH]; local
46 /* Decrypt first block which will end up as icv */
47 ctx->hw->cipher(ctx, icv, in, 8);
61 BUF_reverse(icv, NULL, 8);
66 ctx->hw->cipher(ctx, icv, icv, 8);
68 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0)
70 OPENSSL_cleanse(icv, 8);
93 /* Work out ICV */
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_tdes_wrap.c 38 unsigned char icv[8], iv[TDES_IVLEN], sha1tmp[SHA_DIGEST_LENGTH]; local
47 /* Decrypt first block which will end up as icv */
48 ctx->hw->cipher(ctx, icv, in, 8);
62 BUF_reverse(icv, NULL, 8);
67 ctx->hw->cipher(ctx, icv, icv, 8);
69 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0)
71 OPENSSL_cleanse(icv, 8);
94 /* Work out ICV */
  /src/sys/net80211/
ieee80211_crypto_wep.c 221 "[%s] WEP ICV mismatch on decrypt\n",
309 uint8_t icv[IEEE80211_WEP_CRCLEN]; local
372 /* Append little-endian CRC32 and encrypt it to produce ICV */
373 icv[0] = crc;
374 icv[1] = crc >> 8;
375 icv[2] = crc >> 16;
376 icv[3] = crc >> 24;
381 icv[k] ^= S[(S[i] + S[j]) & 0xff];
383 return m_append(m0, IEEE80211_WEP_CRCLEN, icv);
394 uint8_t icv[IEEE80211_WEP_CRCLEN] local
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/
ciphercommon_ccm.h 27 } icv; member in struct:S390X_kmac_params_st
  /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
ciphercommon_ccm.h 23 } icv; member in struct:S390X_kmac_params_st
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
e_des3.c 319 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local
326 /* Decrypt first block which will end up as icv */
327 des_ede_cbc_cipher(ctx, icv, in, 8);
341 BUF_reverse(icv, NULL, 8);
346 des_ede_cbc_cipher(ctx, icv, icv, 8);
348 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0)
350 OPENSSL_cleanse(icv, 8);
368 /* Work out ICV */
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
e_des3.c 320 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local
327 /* Decrypt first block which will end up as icv */
328 des_ede_cbc_cipher(ctx, icv, in, 8);
342 BUF_reverse(icv, NULL, 8);
347 des_ede_cbc_cipher(ctx, icv, icv, 8);
349 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0)
351 OPENSSL_cleanse(icv, 8);
369 /* Work out ICV */
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
e_des3.c 319 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local
326 /* Decrypt first block which will end up as icv */
327 des_ede_cbc_cipher(ctx, icv, in, 8);
341 BUF_reverse(icv, NULL, 8);
346 des_ede_cbc_cipher(ctx, icv, icv, 8);
350 if (!CRYPTO_memcmp(sha1tmp, icv, 8))
352 OPENSSL_cleanse(icv, 8);
370 /* Work out ICV */

Completed in 32 milliseconds

1 2