Home
last modified time | relevance | path

Searched full:transform (Results 1 – 25 of 1673) sorted by relevance

12345678910>>...67

/freebsd/contrib/ncurses/progs/
H A DMakefile.in83 transform = @program_transform_name@
138 transform.h
198 TRANSFORM = sed 's/$x$$//'|sed '$(transform)'|sed 's/$$/$x/'
201 actual_captoinfo = `echo captoinfo$x| $(TRANSFORM)`
202 actual_clear = `echo clear$x| $(TRANSFORM)`
203 actual_infocmp = `echo infocmp$x| $(TRANSFORM)`
204 actual_infotocap = `echo infotocap$x| $(TRANSFORM)`
205 actual_init = `echo init$x| $(TRANSFORM)`
206 actual_reset = `echo reset$x| $(TRANSFORM)`
207 actual_tabs = `echo tabs$x| $(TRANSFORM)`
[all …]
H A Dmodules37 tic progs $(srcdir) $(HEADER_DEPS) transform.h $(srcdir)/dump_entry.h $(srcdir)/tparm_type.h
45 tput progs $(srcdir) $(HEADER_DEPS) transform.h $(srcdir)/tparm_type.h reset_cmd.h tty_settings.h
46 tset progs $(srcdir) $(HEADER_DEPS) transform.h ../include/termcap.h reset_cmd.h tty_settings.h
47 transform progs $(srcdir) $(HEADER_DEPS) transform.h
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp30 // + Transform (pattern transformation)
35 // + Transform (pattern transformation)
39 // + Transform (pattern transformation)
41 // Note that source and exactly one of [Target, Transform] must be provided
157 const std::string Transform; member in __anon8c4031380211::PatternRewriteDescriptor
161 Transform(std::string(T)) {} in PatternRewriteDescriptor()
182 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error); in performOnModule()
329 std::string Transform; in parseRewriteFunctionDescriptor() local
361 } else if (KeyValue == "transform") { in parseRewriteFunctionDescriptor()
362 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectTransformLayer.cpp1 //===---------- ObjectTransformLayer.cpp - Object Transform Layer ---------===//
21 TransformFunction Transform) in ObjectTransformLayer() argument
22 : BaseT(ES), BaseLayer(BaseLayer), Transform(std::move(Transform)) {} in ObjectTransformLayer()
29 // If there is a transform set then apply it. in emit()
30 if (Transform) { in emit()
31 if (auto TransformedObj = Transform(std::move(O))) in emit()
H A DIRTransformLayer.cpp1 //===-------------- IRTransformLayer.cpp - IR Transform Layer -------------===//
16 TransformFunction Transform) in IRTransformLayer() argument
18 Transform(std::move(Transform)) {} in IRTransformLayer()
24 if (auto TransformedTSM = Transform(std::move(TSM), *R)) in emit()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIRTransformLayer.h24 /// A layer that applies a transform to emitted modules.
25 /// The transform function is responsible for locking the ThreadSafeContext
33 TransformFunction Transform = identityTransform);
35 void setTransform(TransformFunction Transform) { in setTransform() argument
36 this->Transform = std::move(Transform); in setTransform()
49 TransformFunction Transform; variable
H A DObjectTransformLayer.h34 TransformFunction Transform = TransformFunction());
39 void setTransform(TransformFunction Transform) { in setTransform() argument
40 this->Transform = std::move(Transform); in setTransform()
45 TransformFunction Transform; variable
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dnumeric.cppm
H A Dranges.cppm
H A Dranges.inc186 // [range.transform], transform view
190 using std::ranges::views::transform;
292 // [range.zip.transform], zip transform view
/freebsd/sys/dev/qat/qat_api/qat_utils/include/
H A Dqat_utils.h600 * @brief Calculate MD5 transform operation
605 * out - output pointer for state data after single md5 transform
621 * @brief Calculate MD5 transform operation
626 * out - output pointer for state data after single md5 transform
643 * @brief Calculate SHA1 transform operation
648 * out - output pointer for state data after single sha1 transform
664 * @brief Calculate SHA1 transform operation
669 * out - output pointer for state data after single sha1 transform
686 * @brief Calculate SHA224 transform operation
691 * out - output pointer for state data after single sha224 transform
[all …]
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/
H A Dsha256_impl.c60 .transform = tf_sha256_transform_x64,
73 .transform = tf_sha256_ssse3,
87 .transform = tf_sha256_avx,
101 .transform = tf_sha256_avx2,
116 .transform = tf_sha256_shani,
125 .transform = zfs_sha256_block_armv7,
143 .transform = tf_sha256_neon,
150 .transform = tf_sha256_armv8ce,
164 .transform = tf_sha256_ppc,
171 .transform = tf_sha256_power8,
H A Dsha512_impl.c59 .transform = tf_sha512_transform_x64,
72 .transform = tf_sha512_avx,
86 .transform = tf_sha512_avx2,
95 .transform = zfs_sha512_block_armv7,
108 .transform = tf_sha512_armv8ce,
122 .transform = tf_sha512_neon,
131 .transform = tf_sha512_ppc,
143 .transform = tf_sha512_power8,
H A Dsha2_generic.c237 ops->transform(ctx->state, m, 1); in sha256_update()
247 ops->transform(ctx->state, data, blocks); in sha256_update()
269 ops->transform(ctx->state, m, 1); in sha512_update()
279 ops->transform(ctx->state, data, blocks); in sha512_update()
302 ops->transform(ctx->state, m, 1); in sha256_final()
309 ops->transform(ctx->state, m, 1); in sha256_final()
346 ops->transform(ctx->state, m, 1); in sha512_final()
353 ops->transform(ctx->state, m, 1); in sha512_final()
501 .transform = sha256_generic,
507 .transform = sha512_generic,
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCombinerHelper.h313 /// Transform a multiply by a power-of-2 value to a left shift.
317 // Transform a G_SHL with an extended source into a narrower shift if
333 /// Transform <ty,...> G_UNMERGE(G_MERGE ty X, Y, Z) -> ty X, Y, Z.
341 /// Transform G_UNMERGE Constant -> Constant1, Constant2, ...
347 /// Transform G_UNMERGE G_IMPLICIT_DEF -> G_IMPLICIT_DEF, G_IMPLICIT_DEF, ...
352 /// Transform X, Y<dead> = G_UNMERGE Z -> X = G_TRUNC Z.
356 /// Transform X, Y = G_UNMERGE(G_ZEXT(Z)) -> X = G_ZEXT(Z); Y = G_CONSTANT 0
360 /// Transform fp_instr(cst) to constant result of the fp operation.
363 /// Transform IntToPtr(PtrToInt(x)) to x if cast is in the same address space.
367 /// Transform PtrToInt(IntToPtr(x)) to x.
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h281 // parameter pack, and transform back the parameter that were passed in in Dispatch()
302 template <typename T> T Transform(T object) { in Transform() function
307 python::PythonObject Transform(bool arg) { in Transform() function
312 python::PythonObject Transform(Status arg) { in Transform() function
316 python::PythonObject Transform(const StructuredDataImpl &arg) { in Transform() function
320 python::PythonObject Transform(lldb::ExecutionContextRefSP arg) { in Transform() function
324 python::PythonObject Transform(lldb::ProcessSP arg) { in Transform() function
328 python::PythonObject Transform(lldb::ThreadPlanSP arg) { in Transform() function
332 python::PythonObject Transform(lldb::ProcessAttachInfoSP arg) { in Transform() function
336 python::PythonObject Transform(lldb::ProcessLaunchInfoSP arg) { in Transform() function
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPythonInterface.h
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h169 TransformFuncTy Transform) { in parallel_transform_reduce() argument
187 TG.spawn([=, &Transform, &Reduce, &Results] { in parallel_transform_reduce()
191 R = Reduce(R, Transform(*It)); in parallel_transform_reduce()
239 TransformFuncTy Transform) { in parallelTransformReduce() argument
243 Transform); in parallelTransformReduce()
247 Init = Reduce(std::move(Init), Transform(*I)); in parallelTransformReduce()
267 TransformFuncTy Transform) { in parallelTransformReduce() argument
269 Transform); in parallelTransformReduce()
/freebsd/contrib/wpa/src/eap_common/
H A Dikev2_common.h46 u8 proposal_length[2]; /* including all transform and attributes */
62 /* Transform Attributes */
123 /* IKEv2 Transform Types */
132 /* IKEv2 Transform Type 1 (Encryption Algorithm) */
148 /* IKEv2 Transform Type 2 (Pseudo-random Function) */
156 /* IKEv2 Transform Type 3 (Integrity Algorithm) */
165 /* IKEv2 Transform Type 4 (Diffie-Hellman Group) */
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeductionGuide.cpp58 /// Tree transform to "extract" a transformed type from a class template's
83 TypeSourceInfo *transform(TypeSourceInfo *TSI) { return TransformType(TSI); } in transform() function in __anon493c7e3e0111::ExtractTypeForDeductionGuide
142 // Transform the underlying type of the typedef and clone the Decl only if in TransformTypedefType()
243 // Transform a given template type parameter `TTP`.
287 /// Transform to convert portions of a constructor declaration into the
326 /// Transform a constructor declaration into a deduction guide.
420 // Transform the type of the function, adjusting the return type and in transformConstructor()
482 /// Transform a constructor template parameter into a deduction guide template
518 // First, transform all the references to template parameters that are in transformFunctionProtoType()
528 // Then, transform all the references to template parameters that are in transformFunctionProtoType()
[all …]
H A DTreeTransform.h57 /// A semantic tree transformation that allows one to transform one
76 /// can be replaced by a subclass. The "transform" step transforms an AST node
80 /// routines recursively transform the operands to composite AST nodes (e.g.,
151 /// this tree transform.
232 /// Transform a template parameter depth level.
337 /// Transform the given type-with-location into a new
343 /// Transform a type that is permitted to produce a
361 /// Transform the given statement.
364 /// appropriate TransformXXXStmt function to transform a specific kind of
365 /// statement or the TransformExpr() function to transform an expression.
[all …]
/freebsd/contrib/googletest/docs/_sass/
H A Dmain.scss33 text-transform: uppercase;
69 transform: rotate(45deg);
70 transition: transform 0.5s;
193 transform: rotate(-135deg);
/freebsd/usr.bin/ncurses/
H A DMakefile9 SRCS.tic= tic.c transform.c dump_entry.c tparm_type.c
10 SRCS.tput= tput.c tparm_type.c transform.c dump_entry.c clear_cmd.c reset_cmd.c \
15 SRCS.tset= tset.c tty_settings.c transform.c reset_cmd.c
/freebsd/sys/contrib/openzfs/module/icp/include/sha2/
H A Dsha2_impl.h36 /* transform function definition */
45 sha256_f transform; member
51 sha512_f transform; member
/freebsd/crypto/openssl/include/internal/
H A Ddso.h25 * method. Eg. win32 will transform "blah" into "blah.dll", and dlfcn will
26 * transform it into "libblah.so". This callback could even utilise the
62 * callbacks) that transform filenames. They are passed a DSO structure
64 * a filename to transform. They should either return NULL (if there is an

12345678910>>...67