Home
last modified time | relevance | path

Searched full:constants (Results 1 – 25 of 2078) sorted by relevance

12345678910>>...84

/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_get_AT_name.354 .Nd retrieve the symbolic names of DWARF constants
187 The list of functions and the DWARF constants that they accept are:
192 constants.
195 constants.
198 constants.
201 constants.
204 constants.
207 constants.
210 constants.
213 constants.
[all …]
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/include/
H A Dlac_sym_hash_defs.h12 * Constants for hash algorithms
30 /* Constants for SHA1 algorithm */
41 /* Constants for SHA224 algorithm */
52 /* Constants for SHA256 algorithm */
63 /* Constants for SHA384 algorithm */
74 /* Constants for SHA512 algorithm */
85 /* Constants for SHA3_224 algorithm */
96 /* Constants for SHA3_256 algorithm */
107 /* Constants for SHA3_384 algorithm */
118 /* Constants for SHA3_512 algorithm */
[all …]
H A Dlac_sym_qat_constants_table.h10 * API to be used for the CySym constants table.
36 * The SymCy constants table is 1K of static data which is passed down
40 * Where there is config data available in the constants table the lookup
41 * table stores the offset into the constants table.
42 * Where there's no suitable config data available in the constants table
56 * This function looks up the cipher constants lookup array for
59 * available in the constants table.
60 * If the value > zero, then there is config data available in the constants
62 * into the constants table, it is returned to the caller in poffset.
69 * @param[out] offset into constants table
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstant.h27 /// immutable at runtime. Functions are constants because their address is
30 /// All constants share the capabilities provided in this class. All constants
31 /// can have a null value. They can have an operand list. Constants can be
36 /// Note that Constants are immutable (once created they never change)
38 /// structurally equivalent constants will always have the same address.
39 /// Constants are created on demand as needed and never deleted: thus clients
101 /// for vectors, if only one of the constants has an `undef` element in some
102 /// lane, the constants still match.
163 /// At this point only other constants may be on the use_list for this
164 /// constant. Any constants on our Use list must also be destroy'd. The
[all …]
H A DNoFolder.h10 // IRBuilder with a set of methods for creating unfolded constants. This is
16 // Note: since it is not actually possible to create unfolded constants, this
17 // class returns instructions rather than constants.
25 #include "llvm/IR/Constants.h"
34 /// NoFolder - Create "constants" (actually, instructions) with no folding.
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h11 /// constant pool to keep track of constants referenced by a function.
107 /// The MachineConstantPool class keeps track of constants referenced by a
108 /// function which must be spilled to memory. This is used for constants which
110 /// include floating point and large integer constants.
112 /// Instructions reference the address of these constant pool constants through
119 std::vector<MachineConstantPoolEntry> Constants; ///< The pool of constants. variable
142 /// isEmpty - Return true if this constant pool contains no constants.
143 bool isEmpty() const { return Constants.empty(); } in isEmpty()
146 return Constants; in getConstants()
/freebsd/sys/dev/isci/scil/
H A Dintel_scsi.h56 * @brief This file defines all of the SCSI related constants, enumerations,
58 * an exhaustive list of all constants, commands, sub-commands, etc.
72 * @brief This enumberation contains the constants to be used for SCSI task
74 * values for these codes so constants used here are the same as
165 * These constants delineate all of the SCSI protocol sense key constants
187 * These constants delineate all of the SCSI protocol additional sense
188 * code constants.
225 * sense code qualifier constants.
259 * These constants define all of the used SCSI status values.
274 * These constants delineate all of the SCSI command/operation codes.
[all …]
H A Dintel_ata.h56 * @brief This file defines all of the ATA related constants, enumerations,
58 * an exhaustive list of all constants, commands, sub-commands, etc.
69 * These constants depict the various ATA command codes defined
131 * These constants define the ATA SMART command sub-codes that can be
144 * These constants define the ATA SET FEATURES command sub-codes that can
169 * These constants define standard values for use when requesting the NCQ
228 * The following constants define the number of bytes contained in various
243 * The following constants define bit masks utilized to determine if a
270 * These constants define the various bit definitions for the
280 * These constants define the various bit definitions for the
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp1 //===- ConstantMerge.cpp - Merge duplicate global constants ---------------===//
10 // constants together into a single constant that is shared. This is useful
11 // because some passes (ie TraceValues) insert a lot of string constants into
14 // Algorithm: ConstantMerge is designed to build up a map of available constants
24 #include "llvm/IR/Constants.h"
42 STATISTIC(NumIdenticalMerged, "Number of identical global constants merged");
94 // Only process constants with initializers in the default address space. in isUnmergeableGlobal()
140 // Map unique constants to globals. in mergeConstants()
150 // constants together may allow us to merge other constants together if the in mergeConstants()
151 // second level constants have initializers which point to the globals that in mergeConstants()
[all …]
/freebsd/contrib/ofed/libibverbs/
H A Dopcode.h37 * This macro cleans up the definitions of constants for BTH opcodes.
38 * It is used to define constants such as IBV_OPCODE_UD_SEND_ONLY,
42 * In short, user code should use the constants defined using the
43 * macro rather than worrying about adding together other constants.
50 /* transport types -- just used to define real constants */
56 /* operations -- just used to define real constants */
79 /* real constants follow -- see comment about above IBV_OPCODE()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp1 //===- ConstantHoisting.cpp - Prepare code for expensive constants --------===//
9 // This pass identifies expensive constants to hoist and coalesces them to
13 // First it scans all instructions for integer constants and calculates its
21 // Similar constants are coalesced to reduce register pressure and
27 // The SelectionDAG recognizes such constants as opaque and doesn't perform
30 // This optimization is only applied to integer constants in instructions and
45 #include "llvm/IR/Constants.h"
78 STATISTIC(NumConstantsHoisted, "Number of constants hoisted");
79 STATISTIC(NumConstantsRebased, "Number of constants rebased");
93 cl::desc("Do not rebase if number of dependent constants of a Base is less "
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DConstantMerge.h1 //===- ConstantMerge.h - Merge duplicate global constants -------*- C++ -*-===//
10 // constants together into a single constant that is shared. This is useful
11 // because some passes (ie TraceValues) insert a lot of string constants into
14 // Algorithm: ConstantMerge is designed to build up a map of available constants
28 /// A pass that merges duplicate global constants into a single constant.
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp30 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValue() local
31 for (unsigned I = 0, E = Constants.size(); I != E; ++I) { in getExistingMachineCPValue()
32 if (Constants[I].isMachineConstantPoolEntry() && in getExistingMachineCPValue()
33 Constants[I].getAlign() >= Alignment) { in getExistingMachineCPValue()
35 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal); in getExistingMachineCPValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h1 //==- ConstantHoisting.h - Prepare code for expensive constants --*- C++ -*-==//
9 // This pass identifies expensive constants to hoist and coalesces them to
13 // First it scans all instructions for integer constants and calculates its
21 // Similar constants are coalesced to reduce register pressure and
27 // The SelectionDAG recognizes such constants as opaque and doesn't perform
30 // This optimization is only applied to integer constants in instructions and
114 /// A base constant and all its rebased constants.
166 /// These are the final constants we decided to hoist.
/freebsd/contrib/ofed/opensm/include/iba/
H A Dib_types.h68 /****h* IBA Base/Constants
70 * Constants
73 * The following constants are used throughout the IBA code base.
78 /****d* IBA Base: Constants/MAD_BLOCK_SIZE
89 /****d* IBA Base: Constants/MAD_RMPP_HDR_SIZE
100 /****d* IBA Base: Constants/MAD_RMPP_DATA_SIZE
111 /****d* IBA Base: Constants/MAD_BLOCK_GRH_SIZE
122 /****d* IBA Base: Constants/IB_LID_PERMISSIVE
133 /****d* IBA Base: Constants/IB_DEFAULT_PKEY
144 /****d* IBA Base: Constants/IB_QP1_WELL_KNOWN_Q_KEY
[all …]
/freebsd/sys/ofed/include/rdma/
H A Dib_pack.h64 * This macro cleans up the definitions of constants for BTH opcodes.
65 * It is used to define constants such as IB_OPCODE_UD_SEND_ONLY,
69 * In short, user code should use the constants defined using the
70 * macro rather than worrying about adding together other constants.
77 /* transport types -- just used to define real constants */
85 /* operations -- just used to define real constants */
111 /* real constants follow -- see comment about above IB_OPCODE()
/freebsd/tests/sys/cddl/zfs/include/
H A Dtestenv.kshlib6 # Environment-dependent constants.
20 # Pull in constants.
21 . ${STF_SUITE}/include/constants.cfg
H A Dtestenv.ksh4 # Environment-dependent constants.
18 # Pull in constants.
19 . ${STF_SUITE}/include/constants.cfg
/freebsd/contrib/unbound/compat/
H A Dchacha_private.h57 const char *constants; in chacha_keysetup() local
65 constants = sigma; in chacha_keysetup()
67 constants = tau; in chacha_keysetup()
73 x->input[0] = U8TO32_LITTLE(constants + 0); in chacha_keysetup()
74 x->input[1] = U8TO32_LITTLE(constants + 4); in chacha_keysetup()
75 x->input[2] = U8TO32_LITTLE(constants + 8); in chacha_keysetup()
76 x->input[3] = U8TO32_LITTLE(constants + 12); in chacha_keysetup()
/freebsd/crypto/openssh/openbsd-compat/
H A Dchacha_private.h59 const char *constants; in chacha_keysetup() local
67 constants = sigma; in chacha_keysetup()
69 constants = tau; in chacha_keysetup()
75 x->input[0] = U8TO32_LITTLE(constants + 0); in chacha_keysetup()
76 x->input[1] = U8TO32_LITTLE(constants + 4); in chacha_keysetup()
77 x->input[2] = U8TO32_LITTLE(constants + 8); in chacha_keysetup()
78 x->input[3] = U8TO32_LITTLE(constants + 12); in chacha_keysetup()
/freebsd/crypto/openssh/
H A Dchacha.c57 const char *constants; in chacha_keysetup() local
65 constants = sigma; in chacha_keysetup()
67 constants = tau; in chacha_keysetup()
73 x->input[0] = U8TO32_LITTLE(constants + 0); in chacha_keysetup()
74 x->input[1] = U8TO32_LITTLE(constants + 4); in chacha_keysetup()
75 x->input[2] = U8TO32_LITTLE(constants + 8); in chacha_keysetup()
76 x->input[3] = U8TO32_LITTLE(constants + 12); in chacha_keysetup()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMergeStringPool.cpp24 #include "llvm/IR/Constants.h"
79 // Finally smaller constants should go first. This is, again, trying to in operator ()()
152 // Run through all of the constants in the module and determine if they are
173 // We can only pool constants. in collectCandidateConstants()
178 // there is no guarantee that other constants will also be in the same in collectCandidateConstants()
179 // section. Trying to pool constants from different sections (or no in collectCandidateConstants()
185 // Do not pool constants with metadata because we should not add metadata in collectCandidateConstants()
241 // If we have too few constants in the module that are merge candidates we in mergeModuleStringPool()
246 // Sort the global constants to make access more efficient. in mergeModuleStringPool()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ShuffleDecode.h98 /// Decode a PSHUFB mask from a raw array of constants such as from
120 /// Decode a VPPERM mask from a raw array of constants such as from
147 /// Decode a VPERMILPD/VPERMILPS variable mask from a raw array of constants.
152 /// Decode a VPERMIL2PD/VPERMIL2PS variable mask from a raw array of constants.
157 /// Decode a VPERM W/D/Q/PS/PD mask from a raw array of constants.
161 /// Decode a VPERMT2 W/D/Q/PS/PD mask from a raw array of constants.
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.h89 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValueImpl() local
90 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValueImpl()
91 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValueImpl()
92 Constants[i].getAlign() >= Alignment) { in getExistingMachineCPValueImpl()
94 static_cast<CSKYConstantPoolValue *>(Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
105 /// CSKY-specific constant pool values for Constants,
/freebsd/sys/crypto/chacha20/
H A Dchacha.c59 const char *constants; in chacha_keysetup() local
67 constants = sigma; in chacha_keysetup()
69 constants = tau; in chacha_keysetup()
75 x->input[0] = U8TO32_LITTLE(constants + 0); in chacha_keysetup()
76 x->input[1] = U8TO32_LITTLE(constants + 4); in chacha_keysetup()
77 x->input[2] = U8TO32_LITTLE(constants + 8); in chacha_keysetup()
78 x->input[3] = U8TO32_LITTLE(constants + 12); in chacha_keysetup()

12345678910>>...84