HomeSort by relevance Sort by last modified time
    Searched defs:phi (Results 1 - 25 of 40) sorted by null

1 2

  /external/llvm/unittests/Transforms/Utils/
Local.cpp 29 PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C), 2); local
35 phi->addIncoming(phi, bb0);
36 phi->addIncoming(phi, bb1);
38 // The PHI will be removed
39 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi));
46 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
48 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi));
51 phi = builder.CreatePHI(Type::getInt32Ty(C), 0)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 30 BigInteger p, q, n, d, e, pSub1, qSub1, phi; local
120 phi = p;
122 q = phi;
127 phi = pSub1.multiply(qSub1);
132 d = e.modInverse(phi);
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 175 // Cleanup PHI nodes.
178 // Prune unneeded PHI entries.
181 MachineBasicBlock::iterator phi = BB->begin(); local
182 while (phi != BB->end() && phi->isPHI()) {
183 for (unsigned i = phi->getNumOperands() - 1; i >= 2; i-=2)
184 if (!preds.count(phi->getOperand(i).getMBB())) {
185 phi->RemoveOperand(i);
186 phi->RemoveOperand(i-1);
190 if (phi->getNumOperands() == 3)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
atlantis.h 47 float x, y, z, phi, theta, psi, v; member in struct:_fishRec
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 23 double phi; member in struct:bnode
36 #define Phi(x) ((x)->phi)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 67 * phi. We create a new name because one is used for the phi node, and the
77 * phi. *)
84 let phi = build_phi incoming "iftmp" builder in var
98 phi
116 (* Start the PHI node with an entry for start. *)
119 (* Within the loop, the variable is defined equal to the PHI node. If it
159 (* Add a new entry to the PHI node for the backedge. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 85 * phi. We create a new name because one is used for the phi node, and the
95 * phi. *)
102 let phi = build_phi incoming "iftmp" builder in var
116 phi
134 (* Start the PHI node with an entry for start. *)
137 (* Within the loop, the variable is defined equal to the PHI node. If it
177 (* Add a new entry to the PHI node for the backedge. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 115 * phi. We create a new name because one is used for the phi node, and the
125 * phi. *)
132 let phi = build_phi incoming "iftmp" builder in var
146 phi
190 (* Within the loop, the variable is defined equal to the PHI node. If it
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 114 float phi = 2 * atan(1 / r); local
119 float py = (phi / PI_F) * input_height;
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 160 // If s is a phi-function with V as it's ith argument.
161 PhiInsn phi = (PhiInsn) insn; local
164 phi.predBlocksForReg(regV, ssaMeth)) {
247 * Ensures that all the phi result registers for all the phis in the
251 * a the result of a dead-end phi might be assigned the same register
252 * as the result of another phi, and the phi removal move scheduler may
  /dalvik/vm/compiler/
SSATransformation.cpp 150 * TODO - evaluate whether phi will ever need to be inserted into exit
381 * The calculated result is used for phi-node pruning - where we only need to
382 * insert a phi node if the variable is live-in to the block.
420 /* Insert phi nodes to for each variable to the dominance frontiers */
447 /* Calculate the phi blocks for each Dalvik register */
477 * Insert a phi node for dalvikReg in the phiBlocks if the Dalvik
486 /* Variable will be clobbered before being used - no need for phi */
488 MIR *phi = (MIR *) dvmCompilerNew(sizeof(MIR), true); local
489 phi->dalvikInsn.opcode = (Opcode)kMirOpPhi;
490 phi->dalvikInsn.vA = dalvikReg
    [all...]
Dataflow.cpp 833 strcpy(buffer, "PHI");
936 snprintf(buffer, 256, "PHI %s = (%s",
1450 MIR *phi; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
LivenessAnalyzer.java 160 // If s is a phi-function with V as it's ith argument.
161 PhiInsn phi = (PhiInsn) insn; local
164 phi.predBlocksForReg(regV, ssaMeth)) {
247 * Ensures that all the phi result registers for all the phis in the
251 * a the result of a dead-end phi might be assigned the same register
252 * as the result of another phi, and the phi removal move scheduler may
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Torus.java 149 float phi = FastMath.TWO_PI * radialFraction; local
150 float cosPhi = FastMath.cos(phi);
151 float sinPhi = FastMath.sin(phi);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BaseCluster.java 82 double phi = Math.toRadians(latitude); local
84 vector[0] = Math.cos(lambda) * Math.cos(phi);
85 vector[1] = Math.sin(lambda) * Math.cos(phi);
86 vector[2] = Math.sin(phi);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 49 PHINode *InnerEHValuesPHI; ///< PHI for EH values from landingpad insts.
56 // If there are PHI nodes in the unwind destination block, we need to keep
63 PHINode *PHI = cast<PHINode>(I);
64 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB));
87 /// addIncomingPHIValuesFor - Add incoming-PHI values to the unwind
97 PHINode *phi = cast<PHINode>(I); local
98 phi->addIncoming(UnwindDestPHIValues[i], src);
129 // Create a PHI for the exception values.
160 /// it rewrites them to be invokes that jump to InvokeDest and fills in the PHI
209 // Update any PHI nodes in the exceptional block to indicate that there i
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 1364 const PHINode* phi = cast<PHINode>(I); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 936 PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), local
984 PHINode* phi = target->getPathPHI(); local
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 1275 let phi = build_phi [(p1, b1)] "PhiNode" at_jb in var
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 692 double phi = angle_data[x]*C; local
695 x_data[x] = cos(phi)*magval;
697 y_data[x] = sin(phi)*magval;
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 447 /* Return a use_operand_p pointer for argument I of PHI node GS. */
455 /* Return the tree operand for argument I of PHI node GS. */
464 /* Return a pointer to the tree operand for argument I of PHI node GS. */
472 /* Return the edge associated with argument I of phi node GS. */
480 /* Return the source location of gimple argument I of phi node GS. */
488 /* Return the source location of the argument on edge E of phi node GS. */
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
504 /* Return TRUE if argument I of phi node GS has a location record. */
513 /* Return the PHI nodes for basic block BB, or NULL if there are no
514 PHI nodes. *
545 gimple phi; local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow-inline.h 447 /* Return a use_operand_p pointer for argument I of PHI node GS. */
455 /* Return the tree operand for argument I of PHI node GS. */
464 /* Return a pointer to the tree operand for argument I of PHI node GS. */
472 /* Return the edge associated with argument I of phi node GS. */
480 /* Return the source location of gimple argument I of phi node GS. */
488 /* Return the source location of the argument on edge E of phi node GS. */
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
504 /* Return TRUE if argument I of phi node GS has a location record. */
513 /* Return the PHI nodes for basic block BB, or NULL if there are no
514 PHI nodes. *
545 gimple phi; local
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 447 /* Return a use_operand_p pointer for argument I of PHI node GS. */
455 /* Return the tree operand for argument I of PHI node GS. */
464 /* Return a pointer to the tree operand for argument I of PHI node GS. */
472 /* Return the edge associated with argument I of phi node GS. */
480 /* Return the source location of gimple argument I of phi node GS. */
488 /* Return the source location of the argument on edge E of phi node GS. */
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
504 /* Return TRUE if argument I of phi node GS has a location record. */
513 /* Return the PHI nodes for basic block BB, or NULL if there are no
514 PHI nodes. *
545 gimple phi; local
    [all...]

Completed in 1235 milliseconds

1 2