/external/gemmlowp/test/ |
D | benchmark_meta_gemm.cc | 64 struct Shape { struct 73 Shape(std::int32_t n, std::int32_t m, std::int32_t k) in Shape() argument 104 double run_gemms(std::vector<Shape>* shapes) { in run_gemms() argument 159 void time_all(std::vector<Shape>* shapes, std::int32_t repetitions, in time_all() 179 void time_one(Shape* shape, double max_time) { in time_one() 204 std::vector<Shape> googlenet_gemms; in main() 205 googlenet_gemms.push_back(Shape(12544, 64, 147)); in main() 206 googlenet_gemms.push_back(Shape(3136, 64, 64)); in main() 207 googlenet_gemms.push_back(Shape(3136, 192, 576)); in main() 208 googlenet_gemms.push_back(Shape(784, 64, 192)); in main() [all …]
|
/external/llvm/lib/Target/WebAssembly/ |
D | Relooper.h | 35 struct Shape; 51 Shape 89 Shape *Parent; // The shape we are directly inside 112 struct Shape { struct 115 Shape *Next; // The shape that will appear in the code right after this one argument 116 Shape *Natural; // The shape that control flow gets to naturally (if there is argument 128 Shape(ShapeKind KindInit) : Id(-1), Next(nullptr), Kind(KindInit) {} in Shape() function 134 struct SimpleShape : public Shape { 137 SimpleShape() : Shape(SK_Simple), Inner(nullptr) {} in SimpleShape() 139 static bool classof(const Shape *S) { return S->getKind() == SK_Simple; } in classof() [all …]
|
D | Relooper.cpp | 73 std::deque<Shape *> Shapes; 74 Shape *Root; 302 void Notice(Shape *New) { in Calculate() 317 void Solipsize(Block *Target, Branch::FlowType Type, Shape *Ancestor, in Calculate() 342 Shape *MakeSimple(BlockSet &Blocks, Block *Inner, BlockSet &NextEntries) { in Calculate() 359 Shape *MakeLoop(BlockSet &Blocks, BlockSet &Entries, in Calculate() 401 Shape *Inner = Process(InnerBlocks, Entries, nullptr); in Calculate() 532 Shape *MakeMultiple(BlockSet &Blocks, BlockSet &Entries, in Calculate() 533 BlockBlockSetMap &IndependentGroups, Shape *Prev, in Calculate() 586 Shape *Process(BlockSet &Blocks, BlockSet &InitialEntries, Shape *Prev) { in Calculate() [all …]
|
/external/llvm/docs/ |
D | HowToSetUpLLVMStyleRTTI.rst | 33 class Shape { 35 Shape() {} 39 class Square : public Shape { 46 class Circle : public Shape { 56 #. In the header where you declare ``Shape``, you will want to ``#include 72 class Shape { 84 Shape() {} 99 ``Shape``. The reason for this is that since ``Shape`` is abstract 116 class Shape { 128 - Shape() {} [all …]
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
D | Shape.java | 24 public abstract class Shape { class 31 public final org.jbox2d.collision.shapes.Shape shape; 33 public Shape (org.jbox2d.collision.shapes.Shape shape) { in Shape() method in Shape
|
D | Fixture.java | 23 import com.badlogic.gdx.physics.box2d.Shape.Type; 28 protected Shape shape; 57 public Shape getShape () { in getShape() 59 org.jbox2d.collision.shapes.Shape shape2 = fixture.getShape(); in getShape()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/ |
D | FixtureDef.java | 26 import org.jbox2d.collision.shapes.Shape; 39 public Shape shape = null; 85 public Shape getShape() { in getShape() 93 public void setShape(Shape shape) { in setShape()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | Example2_24Test.java | 55 Shape shape = new Shape(values); in construct() 96 this.representers.put(Shape.class, new RepresentShape()); in MyRepresenter() 105 Shape shape = (Shape) data; in representData() 163 private class Shape { class in Example2_24Test 170 public Shape(List<Entity> entities) { in Shape() method in Example2_24Test.Shape 240 Shape shape = (Shape) yaml.load(Util.getLocalResource("specification/example2_24.yaml")); in testExample_2_24()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/ |
D | TriangleBean.java | 20 private Shape shape; 30 public Shape getShape() { in getShape() 34 public void setShape(Shape shape) { in setShape()
|
D | Shape.java | 18 public interface Shape { interface
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/ |
D | Shape.java | 37 public abstract class Shape { class 42 public Shape(ShapeType type) { in Shape() method in Shape 131 public abstract Shape clone(); in clone()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/ |
D | Fixture.java | 20 import com.badlogic.gdx.physics.box2d.Shape.Type; 35 protected Shape shape; 87 public Shape getShape () { in getShape() 91 int type = Shape.jniGetType(shapeAddr); in getShape()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
D | ShapeImmutableTest.java | 135 Shape loaded = (Shape) yaml.load(source); in testShape() 142 Shape loaded = beanLoader.loadAs(source, Shape.class); in testShapeNoTags()
|
/external/clang/test/PCH/ |
D | enum.h | 9 enum Shape { enum 16 enum Shape aRoundShape = Circle;
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
D | Glyph.java | 21 import java.awt.Shape; 36 private Shape shape; 115 public Shape getShape () { in getShape() 119 public void setShape (Shape shape) { in setShape()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/ |
D | Contact.java | 32 import org.jbox2d.collision.shapes.Shape; 144 final Shape shapeA = m_fixtureA.getShape(); in getWorldManifold() 145 final Shape shapeB = m_fixtureB.getShape(); in getWorldManifold() 284 Shape shapeA = m_fixtureA.getShape(); in update() 285 Shape shapeB = m_fixtureB.getShape(); in update()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/ |
D | ParticleGroupDef.java | 3 import org.jbox2d.collision.shapes.Shape; 46 public Shape shape;
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-impl.m | 7 @interface Shape : NSObject interface 12 @interface Circle : Shape
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/ |
D | OutlineWobbleEffect.java | 18 import java.awt.Shape; 68 public Shape createStrokedShape (Shape shape) { in createStrokedShape()
|
D | OutlineZigzagEffect.java | 18 import java.awt.Shape; 68 public Shape createStrokedShape (Shape shape) { in createStrokedShape()
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/cldr/ |
D | CheckSystemFonts.java | 12 import java.awt.Shape; 515 …Map<Rectangle2D,Map<Shape,UnicodeSet>> boundsToData = new TreeMap<Rectangle2D,Map<Shape,UnicodeSet… in getCoverage() 535 Shape shape = glyphVector.getOutline(); in getCoverage() 544 Map<Shape, UnicodeSet> map = boundsToData.get(bounds); in getCoverage() 546 … boundsToData.put(bounds, map = new TreeMap<Shape,UnicodeSet>(ShapeComparator)); in getCoverage() 561 Map<Shape, UnicodeSet> map = boundsToData.get(bounds); in getCoverage() 600 static boolean isInvisible(Shape shape) { in isInvisible() 604 static Comparator<Shape> ShapeComparator = new Comparator<Shape>() { 608 public int compare(Shape s1, Shape s2) {
|
/external/v8/benchmarks/ |
D | raytrace.js | 415 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 417 Flog.RayTracer.Shape.Sphere = Class.create(); 419 Flog.RayTracer.Shape.Sphere.prototype = { 465 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 467 Flog.RayTracer.Shape.Plane = Class.create(); 469 Flog.RayTracer.Shape.Plane.prototype = { 825 var sphere = new Flog.RayTracer.Shape.Sphere( 837 var sphere1 = new Flog.RayTracer.Shape.Sphere( 849 var plane = new Flog.RayTracer.Shape.Plane(
|
/external/proguard/src/proguard/gui/splash/ |
D | OverrideGraphics2D.java | 244 public void clip(Shape s) in clip() 264 public void draw(Shape s) in draw() 404 public void fill(Shape s) in fill() 449 public Shape getClip() in getClip() 514 public boolean hit(Rectangle rect, Shape s, boolean onStroke) in hit() 549 public void setClip(Shape clip) in setClip()
|
/external/icu/icu4c/source/common/ |
D | ushape.cpp | 1204 unsigned int Shape; in shapeUnicode() local 1297 Shape = shapeTable[nextLink & (LINKR + LINKL)] in shapeUnicode() 1302 Shape &= 1; in shapeUnicode() 1307 Shape = 1; in shapeUnicode() 1309 Shape = 0; in shapeUnicode() 1312 Shape = 1; in shapeUnicode() 1314 Shape = 0; in shapeUnicode() 1326 dest[i] = 0xFE70 + IrrelevantPos[(dest[i] - 0x064B)] + Shape; in shapeUnicode() 1329 dest[i] = (UChar)(0xFB50 + (currLink >> 8) + Shape); in shapeUnicode() 1331 dest[i] = (UChar)(0xFE70 + (currLink >> 8) + Shape); in shapeUnicode()
|
/external/libgdx/tests/gdx-tests-android/assets/data/ |
D | test.p | 36 - Spawn Shape - 165 - Spawn Shape - 303 - Spawn Shape - 465 - Spawn Shape -
|