/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 106 for (auto& shape : *shapes) { in run_gemms() 107 ops += run_gemm(shape.n, shape.m, shape.k, shape.working_set().lhs, in run_gemms() 108 shape.working_set().rhs, shape.working_set().result); in run_gemms() 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() argument 184 std::cout << std::setprecision(6) << std::fixed << shape->n << ", " in time_one() 185 << shape->m << ", " << shape->k << ", " << std::flush; in time_one() [all …]
|
/external/harfbuzz_ng/src/ |
D | Makefile.sources | 35 hb-shape.cc \ 36 hb-shape-plan-private.hh \ 37 hb-shape-plan.cc \ 57 hb-shape.h \ 58 hb-shape-plan.h \ 66 HB_FALLBACK_sources = hb-fallback-shape.cc 80 hb-ot-shape.cc \ 81 hb-ot-shape-complex-arabic.cc \ 82 hb-ot-shape-complex-arabic-fallback.hh \ 83 hb-ot-shape-complex-arabic-private.hh \ [all …]
|
D | gen-arabic-table.py | 162 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:]) 164 if not shape in ['initial', 'medial', 'isolated', 'final']: 177 ligatures[items][shape] = c 180 # Save shape 187 shapes[items[0]][shape] = c 196 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0 197 for shape in ['initial', 'medial', 'final', 'isolated']] 209 for shape in ligatures[pair]: 210 c = ligatures[pair][shape] 211 if shape == 'isolated': [all …]
|
D | hb-ot-shape-complex-myanmar-machine.hh | 2 #line 1 "hb-ot-shape-complex-myanmar-machine.rl" 35 #line 36 "hb-ot-shape-complex-myanmar-machine.hh" 264 #line 36 "hb-ot-shape-complex-myanmar-machine.rl" 268 #line 93 "hb-ot-shape-complex-myanmar-machine.rl" 288 #line 289 "hb-ot-shape-complex-myanmar-machine.hh" in find_syllables() 296 #line 114 "hb-ot-shape-complex-myanmar-machine.rl" in find_syllables() 305 #line 306 "hb-ot-shape-complex-myanmar-machine.hh" in find_syllables() 319 #line 320 "hb-ot-shape-complex-myanmar-machine.hh" in find_syllables() 338 #line 85 "hb-ot-shape-complex-myanmar-machine.rl" in find_syllables() 342 #line 86 "hb-ot-shape-complex-myanmar-machine.rl" in find_syllables() [all …]
|
D | Makefile.am | 238 $(AM_V_GEN) $(builddir)/$^ > hb-ot-shape-complex-arabic-table.hh \ 239 || ($(RM) hb-ot-shape-complex-arabic-table.hh; false) 242 $(AM_V_GEN) $(builddir)/$^ > hb-ot-shape-complex-indic-table.cc \ 243 || ($(RM) hb-ot-shape-complex-indic-table.cc; false) 246 $(AM_V_GEN) $(builddir)/$^ > hb-ot-shape-complex-use-table.cc \ 247 || ($(RM) hb-ot-shape-complex-use-table.cc; false) 256 $(srcdir)/hb-ot-shape-complex-indic-machine.hh \ 257 $(srcdir)/hb-ot-shape-complex-myanmar-machine.hh \ 258 $(srcdir)/hb-ot-shape-complex-use-machine.hh \ 264 hb-ot-shape-complex-indic-machine.rl \ [all …]
|
D | hb-ot-shape-complex-use-machine.hh | 2 #line 1 "hb-ot-shape-complex-use-machine.rl" 37 #line 38 "hb-ot-shape-complex-use-machine.hh" 363 #line 38 "hb-ot-shape-complex-use-machine.rl" 367 #line 145 "hb-ot-shape-complex-use-machine.rl" 387 #line 388 "hb-ot-shape-complex-use-machine.hh" in find_syllables() 395 #line 166 "hb-ot-shape-complex-use-machine.rl" in find_syllables() 404 #line 405 "hb-ot-shape-complex-use-machine.hh" in find_syllables() 420 #line 421 "hb-ot-shape-complex-use-machine.hh" in find_syllables() 443 #line 134 "hb-ot-shape-complex-use-machine.rl" in find_syllables() 447 #line 136 "hb-ot-shape-complex-use-machine.rl" in find_syllables() [all …]
|
/external/opencv3/modules/shape/include/opencv2/shape/ |
D | shape_distance.hpp | 47 #include "opencv2/shape/hist_cost.hpp" 48 #include "opencv2/shape/shape_transformer.hpp" 53 //! @addtogroup shape 56 /** @brief Abstract base class for shape distance algorithms. 61 /** @brief Compute the shape distance between two shapes defined by its contours. 63 @param contour1 Contour defining first shape. 64 @param contour2 Contour defining second shape. 72 /** @brief Implementation of the Shape Context descriptor and matching algorithm 74 proposed by Belongie et al. in "Shape Matching and Object Recognition Using Shape Contexts" (PAMI 81 …** @brief Establish the number of angular bins for the Shape Context Descriptor used in the shape … [all …]
|
/external/llvm/lib/Target/WebAssembly/ |
D | Relooper.h | 35 struct Shape; 51 Shape 52 *Ancestor; // If not nullptr, this shape is the relevant one for purposes 80 // Branches become processed after we finish the shape relevant to them. For 82 // continues and are now processed. When we calculate what shape to generate 89 Shape *Parent; // The shape we are directly inside 110 /// Represents a structured control flow shape 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 [all …]
|
D | Relooper.cpp | 73 std::deque<Shape *> Shapes; 74 Shape *Root; 301 // Add a shape to the list of shapes in this Relooper calculation in Calculate() 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() 393 // A. Branches to the loop entries become a continue to this shape in Calculate() 397 // shape in Calculate() 401 Shape *Inner = Process(InnerBlocks, Entries, nullptr); 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/harfbuzz_ng/ |
D | Android.mk | 62 src/hb-shape.cc \ 63 src/hb-shape-plan.cc \ 70 src/hb-ot-shape.cc \ 71 src/hb-ot-shape-complex-arabic.cc \ 72 src/hb-ot-shape-complex-default.cc \ 73 src/hb-ot-shape-complex-hangul.cc \ 74 src/hb-ot-shape-complex-hebrew.cc \ 75 src/hb-ot-shape-complex-indic.cc \ 76 src/hb-ot-shape-complex-indic-table.cc \ 77 src/hb-ot-shape-complex-myanmar.cc \ [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/ |
D | WeibullDistributionImpl.java | 46 /** The shape parameter. */ 47 private double shape; field in WeibullDistributionImpl 68 * Creates weibull distribution with the given shape and scale and a 70 * @param alpha the shape parameter. 78 * Creates weibull distribution with the given shape, scale and inverse 80 * @param alpha the shape parameter. 103 ret = 1.0 - FastMath.exp(-FastMath.pow(x / scale, shape)); in cumulativeProbability() 109 * Access the shape parameter. 110 * @return the shape parameter. 113 return shape; in getShape() [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
D | Example2_24Test.java | 41 this.yamlConstructors.put(new Tag("tag:clarkevans.com,2002:shape"), in MyConstructor() 55 Shape shape = new Shape(values); in construct() local 56 return shape; in construct() 96 this.representers.put(Shape.class, new RepresentShape()); in MyRepresenter() 105 Shape shape = (Shape) data; in representData() local 106 List<Entity> value = shape.getEntities(); in representData() 107 return representSequence(new Tag("!shape"), value, Boolean.FALSE); 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() local [all …]
|
/external/bison/tests/ |
D | output.at | 248 node [fontname = courier, shape = box, colorscheme = paired6] 271 "0R2" [label="R2", fillcolor=3, shape=diamond, style=filled] 278 "3R0" [label="Acc", fillcolor=1, shape=diamond, style=filled] 284 "5R3" [label="R3", fillcolor=3, shape=diamond, style=filled] 287 "6R1" [label="R1", fillcolor=3, shape=diamond, style=filled] 318 "0R7d" [label="R7", fillcolor=5, shape=diamond, style=filled] 320 "0R8d" [label="R8", fillcolor=5, shape=diamond, style=filled] 322 "0R9d" [label="R9", fillcolor=5, shape=diamond, style=filled] 325 "1R1" [label="R1", fillcolor=3, shape=diamond, style=filled] 328 "2R3" [label="R3", fillcolor=3, shape=diamond, style=filled] [all …]
|
/external/libpng/contrib/tools/ |
D | genpng.c | 17 * genpng width height { shape } 18 * shape ::= color width shape x1 y1 x2 y2 28 * 'shape' is: 34 * Each shape is followed by four numbers, these are two points in the output 36 * line. The shape is filled if it is preceded by 'filled' (not valid for 38 * precede the shape. 42 * shape ::= color width shape x1 y1 x2 y2 48 * shape ::= circle|square|line 58 * precision image: Each shape from the last to the first is checked to see if 60 * color of the shape and the alpha is 1, if not the previous shape is checked. [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/ |
D | ArabicShapingRegTest.java | 467 result = shaper.shape(test.source); in TestStandard() 501 len = shaper.shape(src, 0, src.length, null, 0, 0); in TestPreflight() 529 shaper.shape(src, 0, len); in TestError() 627 * public int shape(char[] source, int sourceStart, int sourceLength, 643 as.shape(source, negNum[i], 0, dest, 0, 0); 644 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + 650 as.shape(source, 0, negNum[i], dest, 0, 0); 651 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + 658 as.shape(source, 3, 3, dest, 0, 0); 659 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/ |
D | TriangleBean.java | 20 private Shape shape; field in TriangleBean 30 public Shape getShape() { in getShape() 31 return shape; in getShape() 34 public void setShape(Shape shape) { in setShape() argument 35 this.shape = shape; in setShape()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/ |
D | ArabicShapingRegTest.java | 471 result = shaper.shape(test.source); in TestStandard() 505 len = shaper.shape(src, 0, src.length, null, 0, 0); in TestPreflight() 533 shaper.shape(src, 0, len); in TestError() 631 * public int shape(char[] source, int sourceStart, int sourceLength, 647 as.shape(source, negNum[i], 0, dest, 0, 0); 648 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + 654 as.shape(source, 0, negNum[i], dest, 0, 0); 655 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + 662 as.shape(source, 3, 3, dest, 0, 0); 663 errln("ArabicShaping.shape(char[],int,int,char[],int,int) was " + [all …]
|
/external/speex/libspeex/ |
D | cb_search_arm4.h | 42 //const signed char *shape; 46 //shape = shape_cb; 93 const signed char *shape=shape_cb+k; 94 resj0 = MAC16_16(resj0,*shape,r[j-k]); 95 shape += subvect_size; 96 resj1 = MAC16_16(resj1,*shape,r[j-k]); 97 shape += subvect_size; 98 resj2 = MAC16_16(resj2,*shape,r[j-k]); 99 shape += subvect_size; 100 resj3 = MAC16_16(resj3,*shape,r[j-k]); [all …]
|
/external/v8/benchmarks/ |
D | raytrace.js | 64 // flog/shape/baseshape.js 65 // flog/shape/sphere.js 66 // flog/shape/plane.js 415 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 417 Flog.RayTracer.Shape.Sphere = Class.create(); 419 Flog.RayTracer.Shape.Sphere.prototype = { 428 info.shape = this; 465 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 467 Flog.RayTracer.Shape.Plane = Class.create(); 469 Flog.RayTracer.Shape.Plane.prototype = { [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | mouse_cursor_monitor.h | 24 // Captures mouse shape and position. 36 // Capture only shape of the mouse cursor, but not position. 39 // Capture both, mouse cursor shape and position. 43 // Callback interface used to pass current mouse cursor position and shape. 46 // Called in response to Capture() when the cursor shape has changed. Must 67 // Creates a capturer that monitors the mouse cursor shape and position across 79 // Captures current cursor shape and position (depending on the |mode| passed 80 // to Init()). Calls Callback::OnMouseCursor() if cursor shape has
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | image_util_numpy_impl.py | 17 return image.shape[2] 20 return image.shape[1] 23 return image.shape[0] 79 if image1.shape != image2.shape: 103 if image1.shape[2] != image2.shape[2]: 105 if image1.shape[:2] != image2.shape[:2]: 108 self_image = np.zeros((width, height, image1.shape[2]), np.uint8) 109 other_image = np.zeros((width, height, image1.shape[2]), np.uint8) 146 img_height, img_width = image.shape[:2]
|
/external/harfbuzz_ng/win32/ |
D | install.mak | 19 …@if exist $(CFG)\$(PLAT)\hb-ot-shape-closure.exe copy /b $(CFG)\$(PLAT)\hb-ot-shape-closure.exe $(… 20 …@if exist $(CFG)\$(PLAT)\hb-ot-shape-closure.exe copy /b $(CFG)\$(PLAT)\hb-ot-shape-closure.pdb $(… 21 @if exist $(CFG)\$(PLAT)\hb-shape.exe copy /b $(CFG)\$(PLAT)\hb-shape.exe $(PREFIX)\bin 22 @if exist $(CFG)\$(PLAT)\hb-shape.exe copy /b $(CFG)\$(PLAT)\hb-shape.pdb $(PREFIX)\bin
|
/external/proguard/docs/ |
D | screenshots.html | 32 <area shape="rect" coords="2,7,46,16" alt="ProGuard" href="screenshot_gui1.gif" target="other"> 33 <area shape="rect" coords="2,17,46,27" alt="Input/Output" href="screenshot_gui2.gif" target="other"> 34 <area shape="rect" coords="2,28,46,37" alt="Shrinking" href="screenshot_gui3.gif" target="other"> 35 <area shape="rect" coords="2,38,46,48" alt="Optimization" href="screenshot_gui4.gif" target="other"> 36 <area shape="rect" coords="2,49,46,58" alt="Obfuscation" href="screenshot_gui5.gif" target="other"> 37 <area shape="rect" coords="2,59,46,69" alt="Information" href="screenshot_gui6.gif" target="other"> 38 <area shape="rect" coords="2,70,46,79" alt="Process" href="screenshot_gui7.gif" target="other"> 39 <area shape="rect" coords="2,80,46,90" alt="ReTrace" href="screenshot_gui8.gif" target="other">
|
/external/skia/src/gpu/ |
D | GrReducedClip.cpp | 55 // check if the shape subtracted either contains the entire bounds (and makes in reduced_stack_walker() 77 // check if the shape intersected contains the entire bounds and therefore can in reduced_stack_walker() 100 // If the union-ed shape contains the entire bounds then after this element in reduced_stack_walker() 101 // the bounds is entirely inside the clip. If the union-ed shape is outside the in reduced_stack_walker() 123 // If the bounds is entirely inside the shape being xor-ed then the effect is in reduced_stack_walker() 125 // able to take advantage of this in the forward pass. If the xor-ed shape in reduced_stack_walker() 145 // When the bounds is entirely within the rev-diff shape then this behaves like xor in reduced_stack_walker() 146 // and reverses every point inside the bounds. If the shape is completely outside in reduced_stack_walker() 170 // at the replace op or detect here than the shape is either completely inside in reduced_stack_walker() 215 // Intersecting an inverse shape is the same as differencing the non-inverse shape. in reduced_stack_walker() [all …]
|