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

1 2

  /src/sys/external/isc/libsodium/dist/test/default/
scalarmult7.c 17 static unsigned char scalar[32]; variable
26 scalar[0] = 1U;
27 ret = crypto_scalarmult_curve25519(out1, scalar, p1);
29 ret = crypto_scalarmult_curve25519(out2, scalar, p2);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
scopes.c 28 static int scalar = 23; local
33 /* Make sure to use 'scalar'. */
34 return scalar - 23; /* BREAK */
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
scopes.c 28 static int scalar = 23; local
33 /* Make sure to use 'scalar'. */
34 return scalar - 23; /* BREAK */
  /src/crypto/external/bsd/openssl.old/dist/test/
ecstresstest.c 38 * using the X-coordinate of the previous point as the next scalar for
44 BIGNUM *scalar = NULL; local
47 if (!TEST_ptr(scalar = BN_new())
48 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
53 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
55 scalar,
59 return scalar;
62 BN_free(scalar);
  /src/crypto/external/apache2/openssl/dist/test/
ecstresstest.c 37 * using the X-coordinate of the previous point as the next scalar for
44 BIGNUM *scalar = NULL; local
47 if (!TEST_ptr(scalar = BN_new())
48 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
53 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
55 scalar,
59 return scalar;
62 BN_free(scalar);
  /src/crypto/external/bsd/openssl/dist/test/
ecstresstest.c 38 * using the X-coordinate of the previous point as the next scalar for
45 BIGNUM *scalar = NULL; local
48 if (!TEST_ptr(scalar = BN_new())
49 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
56 scalar,
60 return scalar;
63 BN_free(scalar);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
LowLevelTypeImpl.h 42 /// Get a low-level scalar or aggregate "bag of bits".
43 static LLT scalar(unsigned SizeInBits) { function in class:llvm::LLT
44 assert(SizeInBits > 0 && "invalid scalar size");
79 return scalarOrVector(NumElements, LLT::scalar(ScalarSize));
101 assert(IsVector && "cannot get number of elements on scalar/aggregate");
138 : LLT::scalar(NewEltSize);
141 /// Return a vector or scalar with the same element type and the new number of
148 /// elements if this is a vector, or the bitwidth for scalar/pointers. Does
158 return scalar(getSizeInBits() / Factor);
189 assert(isVector() && "cannot get element type of scalar/aggregate")
    [all...]
  /src/external/bsd/wpa/dist/src/eap_common/
eap_pwd_common.c 472 struct crypto_bignum *scalar; local
479 /* RFC 5931, 2.8.5.2: 1 < scalar < r */
480 scalar = crypto_bignum_init_set(buf, order_len);
481 if (!scalar || crypto_bignum_is_zero(scalar) ||
482 crypto_bignum_is_one(scalar) ||
483 crypto_bignum_cmp(scalar, order) >= 0) {
484 wpa_printf(MSG_INFO, "EAP-pwd: received scalar is invalid");
485 crypto_bignum_deinit(scalar, 0);
486 scalar = NULL
    [all...]
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_pwd.c 361 u8 *scalar, *element; local
581 wpa_printf(MSG_INFO, "EAP-PWD (peer): scalar allocation fail");
611 /* element, x then y, followed by scalar */
622 "EAP-PWD (peer): setting peer scalar fail");
660 /* We send the element as (x,y) followed by the scalar */
662 scalar = wpabuf_put(data->outbuf, order_len);
669 if (crypto_bignum_to_bin(data->my_scalar, scalar, order_len,
762 /* server scalar */
778 /* my scalar */
824 /* my scalar */
    [all...]
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_pwd.c 239 u8 *scalar, *element; local
259 wpa_printf(MSG_INFO, "EAP-PWD (server): scalar allocation "
293 /* We send the element as (x,y) followed by the scalar */
295 scalar = wpabuf_put(data->outbuf, order_len);
296 if (crypto_bignum_to_bin(data->my_scalar, scalar, order_len,
369 /* server scalar */
385 /* peer scalar */
689 /* element, x then y, followed by scalar */
813 /* peer scalar */
829 /* server scalar */
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/io/
async.h 471 } scalar; member in union:transfer_args
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
async.h 320 } scalar; member in union:transfer_args
  /src/external/gpl3/gdb/dist/gdb/
opencl-lang.c 275 the resulting type is a (primitive) scalar type. */
487 /* Perform a relational operation on two scalar operands. */
545 error (_("Vector operations are not supported on scalar types"));
584 behavior of scalar to vector casting. As far as possibly we're going
592 /* Casting scalar to vector is a special case for OpenCL, scalar
595 this is a scalar to vector cast; code lifted from
599 int scalar; local
609 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_BOOL
614 if (code1 == TYPE_CODE_ARRAY && to_type->is_vector () && scalar)
    [all...]
valops.c 401 int scalar; local
518 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
533 if (is_floating_type (type) && scalar)
565 && (scalar || code2 == TYPE_CODE_PTR
629 else if (code1 == TYPE_CODE_ARRAY && type->is_vector () && scalar
631 error (_("can only cast scalar to vector of same size"));
  /src/external/gpl3/gdb.old/dist/gdb/
opencl-lang.c 275 the resulting type is a (primitive) scalar type. */
487 /* Perform a relational operation on two scalar operands. */
545 error (_("Vector operations are not supported on scalar types"));
584 behaviour of scalar to vector casting. As far as possibly we're going
592 /* Casting scalar to vector is a special case for OpenCL, scalar
595 this is a scalar to vector cast; code lifted from
599 int scalar; local
609 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_BOOL
614 if (code1 == TYPE_CODE_ARRAY && to_type->is_vector () && scalar)
    [all...]
valops.c 402 int scalar; local
519 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
534 if (is_floating_type (type) && scalar)
566 && (scalar || code2 == TYPE_CODE_PTR
630 else if (code1 == TYPE_CODE_ARRAY && type->is_vector () && scalar
632 error (_("can only cast scalar to vector of same size"));
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
riscv-vector-builtins.h 237 tree scalar; variable
247 const char *scalar; member in struct:riscv_vector::rvv_builtin_suffixes
630 : builtin_types[get_function_type_index (type_idx)].scalar;
677 /* Add mask operand for scalar move instruction. */
  /src/external/gpl3/gcc/dist/gcc/fortran/
class.cc 367 scalar. This function is necessary because such expressions
408 /* Tells whether the expression E is a reference to a (scalar) class container.
409 Scalar because array class containers usually have an array reference after
1142 gfc_expr *scalar, *size_expr, *fini_coarray_expr; local
1152 /* Set scalar argument for storage_size. A leading underscore in
1161 scalar = gfc_lval_expr_from_sym (byte_stride);
1179 scalar,
trans.h 221 /* A scalar value. This will be evaluated before entering the
277 /* If the scalar is passed as actual argument to an (elemental) procedure,
281 /* Tells that the scalar is a reference to a variable that might
286 scalar; member in union:gfc_ss_info::__anon13692
326 indicates to gfc_conv_* that this is a scalar expression.
362 scalar expression, so this pointer is used to terminate SS chains. */
568 /* Generate code for a scalar assignment. */
decl.cc 782 corresponding to array elements or a scalar (as == NULL). */
792 bool scalar; local
806 scalar = !as || !as->rank;
808 if (!scalar && !spec_size (as, &as_size))
831 if (scalar)
833 gfc_error ("Repeat spec invalid in scalar initializer at %C");
858 if (!scalar)
876 /* For scalar initializers quit after one element. */
881 gfc_error ("End of scalar initializer expected at %C");
897 if (!scalar)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ml_kem/
ml_kem.c 74 * The scalar rejection-sampling buffer size needs to be a multiple of 12, but
94 } scalar; typedef in typeref:struct:ossl_ml_kem_scalar_st
100 scalar tbuf[(rank)]; \
102 scalar mbuf[(rank) * (rank)] /* optional private key data */ \
109 DECLARE_ML_KEM_KEYDATA(prvkey_##bits, ML_KEM_##bits##_RANK, ; scalar sbuf[ML_KEM_##bits##_RANK]; uint8_t zbuf[2 * ML_KEM_RANDOM_BYTES];)
116 typedef __owur int (*CBD_FUNC)(scalar *out, uint8_t in[ML_KEM_RANDOM_BYTES + 1],
118 static void scalar_encode(uint8_t *out, const scalar *s, int bits);
134 * Encapsulation produces a vector "u" and a scalar "v", whose coordinates
701 const scalar *t = key->t, *end = t + vinfo->rank;
756 static __owur int sample_scalar(scalar *out, EVP_MD_CTX *mdctx
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-protos.h 231 normal cost of a scalar store. */
234 /* Cost of a vector-to-scalar operation. */
237 /* Cost of a scalar-to-vector operation. */
276 /* The cost of a vector-to-scalar CLASTA or CLASTB instruction,
277 with the scalar being stored in FP registers. This cost is
297 information that is relevant to scalar, Advanced SIMD and SVE
324 For scalar code, we effectively assume that code operates entirely
433 const aarch64_base_vec_issue_info *const scalar; member in struct:aarch64_vec_issue_info
441 /* Cost of any integer scalar operation, excluding load and store. */
444 /* Cost of any fp scalar operation, excluding load and store. *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64-protos.h 230 normal cost of a scalar store. */
233 /* Cost of a vector-to-scalar operation. */
236 /* Cost of a scalar-to-vector operation. */
275 /* The cost of a vector-to-scalar CLASTA or CLASTB instruction,
276 with the scalar being stored in FP registers. This cost is
296 information that is relevant to scalar, Advanced SIMD and SVE
323 For scalar code, we effectively assume that code operates entirely
432 const aarch64_base_vec_issue_info *const scalar; member in struct:aarch64_vec_issue_info
440 /* Cost of any integer scalar operation, excluding load and store. */
443 /* Cost of any fp scalar operation, excluding load and store. *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans.h 213 /* A scalar value. This will be evaluated before entering the
268 /* If the scalar is passed as actual argument to an (elemental) procedure,
272 /* Tells that the scalar is a reference to a variable that might
277 scalar; member in union:gfc_ss_info::__anon16124
317 indicates to gfc_conv_* that this is a scalar expression.
353 scalar expression, so this pointer is used to terminate SS chains. */
556 /* Generate code for a scalar assignment. */
  /src/crypto/external/bsd/netpgp/dist/bindings/perl/
netpgpperl_wrap.c 1314 #ifdef scalar
1315 #undef scalar macro

Completed in 53 milliseconds

1 2