HomeSort by: relevance | last modified time | path
    Searched defs:Transform (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
IRTransformLayer.h 26 /// A layer that applies a transform to emitted modules.
27 /// The transform function is responsible for locking the ThreadSafeContext
35 TransformFunction Transform = identityTransform);
37 void setTransform(TransformFunction Transform) {
38 this->Transform = std::move(Transform);
51 TransformFunction Transform;
ObjectTransformLayer.h 35 TransformFunction Transform = TransformFunction());
40 void setTransform(TransformFunction Transform) {
41 this->Transform = std::move(Transform);
46 TransformFunction Transform;
  /src/external/bsd/elftosb/dist/common/
SHA1.cpp 89 void CSHA1::Transform(uint32_t *state, const uint8_t *buffer)
146 Transform(m_state, m_buffer);
148 for( ; i + 63 < len; i += 64) Transform(m_state, &data[i]);
231 Transform(m_state, m_buffer);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 30 // + Transform (pattern transformation)
35 // + Transform (pattern transformation)
39 // + Transform (pattern transformation)
41 // Note that source and exactly one of [Target, Transform] must be provided
160 const std::string Transform;
164 Transform(std::string(T)) {}
185 std::string Name = Regex(Pattern).sub(Transform, C.getName(), &Error);
332 std::string Transform;
364 } else if (KeyValue.equals("transform")) {
365 Transform = std::string(Value->getValue(ValueStorage))
    [all...]
  /src/external/bsd/ipf/dist/
md5.c 63 static void Transform __P((UINT4 *, UINT4 *));
156 /* transform if necessary */
163 Transform (mdContext->buf, in);
192 /* append length in bits and transform */
198 Transform (mdContext->buf, in);
215 static void Transform (buf, in)
  /src/external/bsd/ppp/dist/pppd/
ppp-md5.c 155 static void Transform (UINT4 *buf, UINT4 *in);
244 /* transform if necessary */
251 Transform (mdContext->buf, in);
278 /* append length in bits and transform */
284 Transform (mdContext->buf, in);
301 static void Transform (UINT4 *buf, UINT4 *in)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 544 // We cannot transform PHIs on unsplittable basic blocks.
810 // Don't transform signed compares of GEPs into index compares. Even if the
1221 // The transformation we're trying to do here is to transform this into an
1475 // ranges of those compares to see if we can transform the 2nd compare:
1772 // TODO: Is this a good transform for vectors? Wider types may reduce
1773 // throughput. Should this transform be limited (even for scalars) by using
2166 // Transform (icmp pred iM (shl iM %v, N), C)
2168 // Transform the shl to a trunc if (trunc (C>>N)) has no loss and M-N.
2387 // then don't attempt this transform. The code below doesn't have the
3286 bool Transform = false
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 2673 TP.error("Node transform '" + getOperator()->getName() +
3254 Record *Transform = Frag->getValueAsDef("OperandTransform");
3255 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform?
3257 T->setTransformFn(Transform);
3406 I.error("Cannot specify a transform function for a non-input value!");
3439 I.error("Cannot specify a transform function for a non-input value!");
3448 I.error("Cannot specify a transform function on a set node!");
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 5482 // ARMInstrInfo.td defines the alias [mov <-> mvn] which can transform
6658 // then transform to 2 operand version of the same instruction
6660 bool Transform = Op3Reg == Op4Reg;
6662 // For communtative operations, we might be able to transform if we swap
6667 if (!Transform && Op5.isReg() && Op3Reg == Op5.getReg() &&
6673 Transform = true;
6678 if (Transform) {
6679 // Don't transform 'adds Rd, Rd, Rm' or 'sub{s} Rd, Rd, Rm' because the
6683 Transform = false;
6685 // Don't transform 'add/sub{s} Rd, Rd, #imm' if the immediate fits int
    [all...]

Completed in 55 milliseconds