HomeSort by: relevance | last modified time | path
    Searched refs:constants (Results 1 - 25 of 357) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/demos/perl/
test2.pl 32 # The following uses of :constants seem to provoke segvs in perl 5.005_03,
36 use GMP::Mpz qw(:constants);
43 use GMP::Mpq qw(:constants);
50 use GMP::Mpf qw(:constants);
58 # compiled constants unchanged by clrbit etc when re-executed
60 use GMP::Mpz qw(:constants);
sample.pl 45 use GMP::Mpq qw(:constants);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
sha.d 162 import std.internal.digest.sha_SSSE3 : sse3_constants=constants, transformSSSE3;
169 // constants as extra argument for PIC
192 /* magic initialization constants - state (ABCDEFGH) */
251 /* constants */
254 static immutable uint[64] constants = [
267 static immutable ulong[80] constants = [
525 T_SHA2_0_15!Word ( 0, block, W, A, B, C, D, E, F, G, H, constants[ 0]);
526 T_SHA2_0_15!Word ( 1, block, W, H, A, B, C, D, E, F, G, constants[ 1]);
527 T_SHA2_0_15!Word ( 2, block, W, G, H, A, B, C, D, E, F, constants[ 2]);
528 T_SHA2_0_15!Word ( 3, block, W, F, G, H, A, B, C, D, E, constants[ 3])
    [all...]
  /src/external/mit/xorg/lib/brotli/
brotli.mk 8 BROTLI_SRCS+= constants.c context.c dictionary.c platform.c transform.c
  /src/external/lgpl3/gmp/dist/demos/perl/GMP/
Mpq.pm 40 'constants' => [@EXPORT],
66 my $constants = { };
70 if ($_ eq ':constants') {
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
constants.d 6 It contains several useful mathematical constants.
11 Source: $(PHOBOSSRC std/math/constants.d)
19 module std.math.constants;
trigonometry.d 136 import std.math.constants : PI;
201 import std.math.constants : PI;
311 import std.math.constants : PI, PI_4;
453 import std.math.constants : PI, PI_4;
518 import std.math.constants : PI;
576 import std.math.constants : PI;
586 import std.math.constants : PI;
620 import std.math.constants : PI;
630 import std.math.constants : PI;
669 import std.math.constants : PI
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/sh/
divtab.cc 136 short constants[N_ENTRIES]; local
165 constants[i] = constant;
181 calc_defect (1., constants[0], factors[0]));
183 calc_defect (-2., constants[steps], factors[steps]));
186 printf ("/* negative division constants */\n");
188 printf ("\t.word\t%d\n", constants[i]);
199 printf ("/* positive division constants */\n");
201 printf ("\t.word\t%d\n", constants[i]);
  /src/crypto/external/bsd/openssh/dist/
chacha.c 59 const char *constants; local
67 constants = sigma;
69 constants = tau;
75 x->input[0] = U8TO32_LITTLE(constants + 0);
76 x->input[1] = U8TO32_LITTLE(constants + 4);
77 x->input[2] = U8TO32_LITTLE(constants + 8);
78 x->input[3] = U8TO32_LITTLE(constants + 12);
  /src/external/bsd/unbound/dist/compat/
chacha_private.h 57 const char *constants; local
65 constants = sigma;
67 constants = tau;
73 x->input[0] = U8TO32_LITTLE(constants + 0);
74 x->input[1] = U8TO32_LITTLE(constants + 4);
75 x->input[2] = U8TO32_LITTLE(constants + 8);
76 x->input[3] = U8TO32_LITTLE(constants + 12);
  /src/external/bsd/elftosb/dist/bdfiles/
complex.bd 12 constants {
28 constants {
58 constants {
  /src/external/lgpl3/gmp/dist/tests/
Makefile.am 38 check_PROGRAMS = t-bswap t-constants t-count_zeros t-hightomask \
  /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/
vpaes-armv8.pl 80 // "Hot" constants
121 // Key schedule constants
848 ld1 {v20.2d-v21.2d}, [x11] // reload constants
  /src/crypto/external/bsd/openssl/dist/crypto/aes/asm/
vpaes-armv8.pl 78 // "Hot" constants
119 // Key schedule constants
827 ld1 {v20.2d-v21.2d}, [x11] // reload constants
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
StackMapPrinter.h 30 // Constants:
31 W.printNumber("Num Constants", SMP.getNumConstants());
33 for (const auto &C : SMP.constants())
  /src/external/gpl3/gcc/dist/gcc/config/c6x/
predicates.md 95 ;; Return nonzero iff OP is one of the integer constants 2, 4 or 8.
102 ;; Return nonzero iff OP is one of the integer constants 2 or 4.
207 of constants here. */
  /src/external/gpl3/gcc.old/dist/gcc/config/c6x/
predicates.md 95 ;; Return nonzero iff OP is one of the integer constants 2, 4 or 8.
102 ;; Return nonzero iff OP is one of the integer constants 2 or 4.
207 of constants here. */
  /src/sys/dev/microcode/aic7xxx/
aicasm_symbol.c 466 * Put constants at the end.
470 symlist_t constants; local
486 SLIST_INIT(&constants);
508 symlist_add(&constants, cursym,
642 while (SLIST_FIRST(&constants) != NULL) {
645 curnode = SLIST_FIRST(&constants);
646 SLIST_REMOVE_HEAD(&constants, links);
  /src/external/bsd/elftosb/dist/elftosb2/
ConversionController.h 95 void processConstants(ListASTNode * constants);
elftosb_lexer.l 45 constants { return TOK_CONSTANTS; }
ConversionController.cpp 25 //! the values that it processes (options, constants, etc.).
140 // Handle a constants block.
141 ConstantsBlockASTNode * constants = dynamic_cast<ConstantsBlockASTNode *>(node); local
142 if (constants)
144 processConstants(constants->getConstants());
258 void ConversionController::processConstants(ListASTNode * constants)
260 if (!constants)
265 ListASTNode::iterator it = constants->begin();
266 for (; it != constants->end(); ++it)
934 //! Both sources and constants can be substituted. Sources will be replace
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
fp_extend_impl.inc 11 // IEEE-754 floating-point type. The constants and types defined following the
42 // Various constants whose values follow from the type parameters.
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
complex.d 327 import std.math.constants : PI;
831 import std.math.constants : PI_2, PI_4;
854 import std.math.constants : PI;
937 import std.math.constants : PI_4;
1046 import std.math.constants : PI;
1054 import std.math.constants : PI;
1071 import std.math.constants : PI;
1080 import std.math.constants : PI;
1106 import std.math.constants : PI;
1475 import std.math.constants : PI
    [all...]
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/
sha512-riscv64-zvkb-zvknhb.S 37 # Load round constants K512
  /src/external/bsd/wpa/dist/wpa_supplicant/examples/
dpp-qrcode.py 103 qr = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_M,

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>