HomeSort by relevance Sort by last modified time
    Searched full:lattice (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/include/llvm/Analysis/
SparsePropagation.h 11 // modeled after SCCP, but with a customizable lattice function.
38 /// to specify what the lattice values are and how they handle merges etc.
39 /// This gives the client the power to compute lattice values from instructions,
40 /// constants, etc. The requirement is that lattice values must all fit into
69 /// ComputeConstant - Given a constant value, compute and return a lattice
81 /// GetConstant - If the specified lattice value is representable as an LLVM
89 /// lattice value corresponding to the specified argument.
94 /// MergeValues - Compute and return the merge of the two specified lattice
95 /// values. Merging should only move one direction down the lattice to
107 /// PrintValue - Render the specified lattice value to the specified stream
    [all...]
  /external/skia/gm/
texteffects.cpp 105 SkMatrix lattice; local
106 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
107 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
108 p.setPathEffect(MakeDotEffect(SK_Scalar1*4, lattice))->unref();
115 SkMatrix lattice; local
116 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
117 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
118 p.setPathEffect(MakeDotEffect(SK_Scalar1*2, lattice))->unref();
132 SkMatrix lattice; local
133 lattice.setScale(SK_Scalar1, SK_Scalar1*6, 0, 0)
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lattice.c 12 * lattice.c
14 * contains the normalized lattice filter routines (MA and AR) for iSAC codec
26 /* filter the signal using normalized lattice filter */
51 /* compute lattice filter coefficients */
62 /* normalized lattice filter */
108 /* filter the signal using normalized lattice filter */
181 /* converts the direct form parameters to lattice form.*/
Android.mk 37 lattice.c \
isac.gypi 44 'lattice.c',
decode.c 158 /* Perceptual post-filtering (using normalized lattice filter). */
224 /* Perceptual post-filtering (using normalized lattice filter). */
288 /* perceptual post-filtering (using normalized lattice filter) */
  /external/skia/samplecode/
SampleAll.cpp 186 SkMatrix lattice; local
187 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
188 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
189 p.setPathEffect(new Dot2DPathEffect(SK_Scalar1*4, lattice))->unref();
196 SkMatrix lattice; local
197 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
198 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
199 p.setPathEffect(new Dot2DPathEffect(SK_Scalar1*2, lattice))->unref();
213 SkMatrix lattice; local
214 lattice.setScale(SK_Scalar1, SK_Scalar1*6, 0, 0)
    [all...]
ClockFaceView.cpp 137 SkMatrix lattice; local
139 lattice.setScale(rad*2, rad*2, 0, 0);
140 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
141 return new Dot2DPathEffect(rad, lattice, pts);
SampleSlides.cpp 570 SkMatrix lattice; local
571 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
572 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
573 p.setPathEffect(MakeDotEffect(SK_Scalar1*4, lattice))->unref();
581 SkMatrix lattice; local
582 lattice.setScale(SK_Scalar1*6, SK_Scalar1*6, 0, 0);
583 lattice.postSkew(SK_Scalar1/3, 0, 0, 0);
584 p.setPathEffect(MakeDotEffect(SK_Scalar1*2, lattice))->unref();
599 SkMatrix lattice; local
600 lattice.setScale(SK_Scalar1, SK_Scalar1*6, 0, 0)
    [all...]
  /external/llvm/test/CodeGen/X86/
2008-02-27-DeadSlotElimBug.ll 4 %struct.Lattice = type { %struct.Position, %struct.Position, %struct.Position, %struct.Position, %struct.Position, %struct.Position, %struct.Position, i32, i32, i32 }
7 define fastcc %struct.CompAtom* @_ZNK7Lattice6createEP8CompAtomii(%struct.Lattice* %this, %struct.CompAtom* %d, i32 %n, i32 %i) {
36 %tmp15.i49 = getelementptr %struct.Lattice, %struct.Lattice* %this, i32 0, i32 0, i32 0 ; <double*> [#uses=1]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lattice_c.c 12 * Contains the core loop function for the lattice filter AR routine
lattice.c 12 * lattice.c
14 * Contains the normalized lattice filter routines (MA and AR) for iSAC codec
90 /* filter the signal using normalized lattice filter */
127 /* compute lattice filter coefficients */
144 /* normalized lattice filter */
215 /* filter the signal using normalized lattice filter */
isacfix.gypi 43 'lattice.c',
codec.h 112 /* normalized lattice filters */
lattice_neon.S 13 @ Contains a function for the core loop in the normalized lattice MA
26 @ Reference code in lattice.c.
  /external/libvorbis/vq/
latticetune.c 14 for lattice codebooks
51 fprintf(stderr,"Need a lattice codebook on the command line.\n");
latticebuild.c 13 function: utility main for building codebooks from lattice descriptions
33 the lattice description file contains two lines:
71 fprintf(stderr,"Need a lattice description file on the command line.\n");
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 37 /// the only type in the lattice), true otherwise.
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 40 /** Lattice values */
48 /** Lattice values for each SSA register */
111 * @param latticeValue new lattice value for @param reg.
126 * Sets a lattice value for a register to value.
128 * @param value Lattice value
130 * @return true if the lattice value changed.
151 * Simulates a PHI node and set the lattice for the result
199 * Simulate a block and note the results in the lattice.
213 * Simulate the phis in a block and note the results in the lattice.
466 * Simulates a statement and set the result lattice value
    [all...]
EscapeAnalysis.java 72 * @param escState the lattice value to initially set this to
85 * Lattice values used to indicate escape state for an object. Analysis can
103 /** Lattice values for each object register group */
118 * Finds the index in the lattice for a particular register.
119 * Returns the size of the lattice if the register wasn't found.
122 * @return index of the register or size of the lattice if it wasn't found.
162 * Creates a link in the lattice between two EscapeSets due to a put
181 * Merges all links in the lattice among two EscapeSets. On return, the
312 // Add the newly created escSet to the lattice and return it
477 // Iterate through lattice, looking for non-escaping replaceable array
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 41 /** Lattice values */
49 /** Lattice values for each SSA register */
112 * @param latticeValue new lattice value for @param reg.
127 * Sets a lattice value for a register to value.
129 * @param value Lattice value
131 * @return true if the lattice value changed.
152 * Simulates a PHI node and set the lattice for the result
200 * Simulate a block and note the results in the lattice.
214 * Simulate the phis in a block and note the results in the lattice.
467 * Simulates a statement and set the result lattice value
    [all...]
EscapeAnalysis.java 73 * @param escState the lattice value to initially set this to
86 * Lattice values used to indicate escape state for an object. Analysis can
104 /** Lattice values for each object register group */
119 * Finds the index in the lattice for a particular register.
120 * Returns the size of the lattice if the register wasn't found.
123 * @return index of the register or size of the lattice if it wasn't found.
163 * Creates a link in the lattice between two EscapeSets due to a put
182 * Merges all links in the lattice among two EscapeSets. On return, the
313 // Add the newly created escSet to the lattice and return it
478 // Iterate through lattice, looking for non-escaping replaceable array
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/generators/
geometric.py 294 Begin with a set of nodes that are identified with the set of lattice
296 and define the lattice distance between two nodes `(i,j)` and `(k,l)`
297 to be the number of "lattice steps" separating them: `d((i,j),(k,l)) = |k-i|+|l-j|`.
300 node within lattice distance `p` (local contacts) .
312 to every other node within lattice distance p.
317 connecting to a node at lattice distance d is 1/d^r.
  /external/skia/src/effects/
SkPerlinNoiseShader.cpp 332 // If stitching, adjust lattice points accordingly.
684 const char* lattice = "lattice"; local
768 noiseCode.appendf("\n\tvec4 %s = ", lattice);
772 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
784 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
    [all...]
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 11 // modeled after SCCP, but with a customizable lattice function.
31 /// PrintValue - Render the specified lattice value to the specified stream.
40 OS << "unknown lattice value";
164 // TODO: Could ask the lattice function if the value can throw.
231 // The lattice function may store more information on a PHINode than could be

Completed in 335 milliseconds

1 2 3