/external/libxml2/result/ |
D | svg3.rde | 4 1 1 g 0 0 10 1 15 g 0 0 13 1 1 g 0 0 19 1 15 g 0 0 22 1 1 g 0 0 28 1 15 g 0 0 31 1 1 g 0 0 37 1 15 g 0 0 40 1 1 g 0 0 46 1 15 g 0 0 [all …]
|
D | svg3.rdr | 4 1 1 g 0 0 10 1 15 g 0 0 13 1 1 g 0 0 19 1 15 g 0 0 22 1 1 g 0 0 28 1 15 g 0 0 31 1 1 g 0 0 37 1 15 g 0 0 40 1 1 g 0 0 46 1 15 g 0 0 [all …]
|
/external/golang-protobuf/protoc-gen-go/grpc/ |
D | grpc.go | 72 func (g *grpc) Name() string { 85 func (g *grpc) Init(gen *generator.Generator) { 86 g.gen = gen 91 func (g *grpc) objectNamed(name string) generator.Object { 92 g.gen.RecordTypeUse(name) 93 return g.gen.ObjectNamed(name) 97 func (g *grpc) typeName(str string) string { 98 return g.gen.TypeName(g.objectNamed(str)) 102 func (g *grpc) P(args ...interface{}) { g.gen.P(args...) } 105 func (g *grpc) Generate(file *generator.FileDescriptor) { [all …]
|
/external/lua/src/ |
D | lgc.c | 71 #define makewhite(g,x) \ argument 72 (x->marked = cast_byte((x->marked & ~maskcolors) | luaC_white(g))) 94 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ argument 95 if (valiswhite(o)) reallymarkobject(g,gcvalue(o)); } 97 #define markkey(g, n) { if keyiswhite(n) reallymarkobject(g,gckey(n)); } argument 99 #define markobject(g,t) { if (iswhite(t)) reallymarkobject(g, obj2gco(t)); } argument 105 #define markobjectN(g,t) { if (t) markobject(g,t); } argument 107 static void reallymarkobject (global_State *g, GCObject *o); 186 static int iscleared (global_State *g, const GCObject *o) { in iscleared() argument 189 markobject(g, o); /* strings are 'values', so are never weak */ in iscleared() [all …]
|
/external/XNNPACK/test/ |
D | x32-zip.cc | 20 .g(2) in TEST() 29 .g(2) in TEST() 39 .g(2) in TEST() 49 .g(2) in TEST() 58 .g(3) in TEST() 67 .g(3) in TEST() 77 .g(3) in TEST() 87 .g(3) in TEST() 96 .g(4) in TEST() 105 .g(4) in TEST() [all …]
|
D | x8-zip.cc | 23 .g(2) in TEST() 32 .g(2) in TEST() 42 .g(2) in TEST() 52 .g(2) in TEST() 61 .g(3) in TEST() 70 .g(3) in TEST() 80 .g(3) in TEST() 90 .g(3) in TEST() 99 .g(4) in TEST() 108 .g(4) in TEST() [all …]
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
D | TestNFAConstruction.java | 44 Grammar g = new Grammar( in testA() local 53 checkRule(g, "a", expecting); in testA() 57 Grammar g = new Grammar( in testAB() local 67 checkRule(g, "a", expecting); in testAB() 71 Grammar g = new Grammar( in testAorB() local 90 checkRule(g, "a", expecting); in testAorB() 94 Grammar g = new Grammar( in testRangeOrRange() local 112 checkRule(g, "A", expecting); in testRangeOrRange() 116 Grammar g = new Grammar( in testRange() local 126 checkRule(g, "A", expecting); in testRange() [all …]
|
D | TestCharDFAConversion.java | 49 Grammar g = new Grammar( in testSimpleRangeVersusChar() local 52 g.createLookaheadDFAs(); in testSimpleRangeVersusChar() 58 checkDecision(g, 1, expecting, null); in testSimpleRangeVersusChar() 62 Grammar g = new Grammar( in testRangeWithDisjointSet() local 67 g.createLookaheadDFAs(); in testRangeWithDisjointSet() 75 checkDecision(g, 1, expecting, null); in testRangeWithDisjointSet() 79 Grammar g = new Grammar( in testDisjointSetCollidingWithTwoRanges() local 84 g.createLookaheadDFAs(false); in testDisjointSetCollidingWithTwoRanges() 92 checkDecision(g, 1, expecting, null); in testDisjointSetCollidingWithTwoRanges() 96 Grammar g = new Grammar( in testDisjointSetCollidingWithTwoRangesCharsFirst() local [all …]
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_tarjan.c | 17 struct isl_tarjan_graph *isl_tarjan_graph_free(struct isl_tarjan_graph *g) in isl_tarjan_graph_free() argument 19 if (!g) in isl_tarjan_graph_free() 21 free(g->node); in isl_tarjan_graph_free() 22 free(g->stack); in isl_tarjan_graph_free() 23 free(g->order); in isl_tarjan_graph_free() 24 free(g); in isl_tarjan_graph_free() 30 struct isl_tarjan_graph *g; in isl_tarjan_graph_alloc() local 33 g = isl_calloc_type(ctx, struct isl_tarjan_graph); in isl_tarjan_graph_alloc() 34 if (!g) in isl_tarjan_graph_alloc() 36 g->len = len; in isl_tarjan_graph_alloc() [all …]
|
/external/compiler-rt/lib/asan/ |
D | asan_globals.cc | 34 const Global *g; member 44 Global g; member 59 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal() argument 60 FastPoisonShadow(g->beg, g->size_with_redzone, value); in PoisonShadowForGlobal() 63 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones() argument 64 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY); in PoisonRedZones() 65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, in PoisonRedZones() 67 if (g.size != aligned_size) { in PoisonRedZones() 69 g.beg + RoundDownTo(g.size, SHADOW_GRANULARITY), in PoisonRedZones() 70 g.size % SHADOW_GRANULARITY, in PoisonRedZones() [all …]
|
/external/mesa3d/src/intel/compiler/ |
D | test_fs_scoreboard.cpp | 123 fs_reg g[16]; in TEST_F() local 124 for (unsigned i = 0; i < ARRAY_SIZE(g); i++) in TEST_F() 125 g[i] = v->vgrf(glsl_type::int_type); in TEST_F() 129 bld.ADD( x, g[1], g[2]); in TEST_F() 130 bld.MUL( y, g[3], g[4]); in TEST_F() 131 bld.AND(g[5], x, y); in TEST_F() 150 fs_reg g[16]; in TEST_F() local 151 for (unsigned i = 0; i < ARRAY_SIZE(g); i++) in TEST_F() 152 g[i] = v->vgrf(glsl_type::int_type); in TEST_F() 155 bld.ADD( x, g[1], g[2]); in TEST_F() [all …]
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_globals.cpp | 34 const Global *g; member 44 Global g; member 59 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal() argument 60 FastPoisonShadow(g->beg, g->size_with_redzone, value); in PoisonShadowForGlobal() 63 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones() argument 64 uptr aligned_size = RoundUpTo(g.size, SHADOW_GRANULARITY); in PoisonRedZones() 65 FastPoisonShadow(g.beg + aligned_size, g.size_with_redzone - aligned_size, in PoisonRedZones() 67 if (g.size != aligned_size) { in PoisonRedZones() 69 g.beg + RoundDownTo(g.size, SHADOW_GRANULARITY), in PoisonRedZones() 70 g.size % SHADOW_GRANULARITY, in PoisonRedZones() [all …]
|
/external/llvm-project/clang/test/Analysis/ |
D | hangs.c | 14 int g(); 17 return y + g(); in f() 26 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 27 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 28 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 29 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 30 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 31 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 32 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() 33 x += y; y += x + g(); in produce_an_exponentially_exploding_symbol() [all …]
|
/external/mesa3d/src/util/ |
D | register_allocate.c | 488 ra_add_node_adjacency(struct ra_graph *g, unsigned int n1, unsigned int n2) in ra_add_node_adjacency() argument 490 BITSET_SET(g->nodes[n1].adjacency, n2); in ra_add_node_adjacency() 494 int n1_class = g->nodes[n1].class; in ra_add_node_adjacency() 495 int n2_class = g->nodes[n2].class; in ra_add_node_adjacency() 496 g->nodes[n1].q_total += g->regs->classes[n1_class]->q[n2_class]; in ra_add_node_adjacency() 498 util_dynarray_append(&g->nodes[n1].adjacency_list, unsigned int, n2); in ra_add_node_adjacency() 502 ra_node_remove_adjacency(struct ra_graph *g, unsigned int n1, unsigned int n2) in ra_node_remove_adjacency() argument 504 BITSET_CLEAR(g->nodes[n1].adjacency, n2); in ra_node_remove_adjacency() 508 int n1_class = g->nodes[n1].class; in ra_node_remove_adjacency() 509 int n2_class = g->nodes[n2].class; in ra_node_remove_adjacency() [all …]
|
/external/python/cpython3/Lib/test/ |
D | formatfloat_testcases.txt | 205 -- 'g' code formatting. 208 %.0g 0 -> 0 209 %.1g 0 -> 0 210 %.2g 0 -> 0 211 %.3g 0 -> 0 212 %.4g 0 -> 0 213 %.10g 0 -> 0 214 %.50g 0 -> 0 215 %.100g 0 -> 0 217 -- precision 0 doesn't make a lot of sense for the 'g' code (what does [all …]
|
D | pstats.pck | 2 …g�h㈵��>g�����>(u'/home/gbr/devel/python/Lib/sre_parse.pyi�u_parse(i�i�g� 3 …g��6�4DE?(u)/home/gbr/devel/python/Lib/sre_compile.pyicu_simple(irirg?�̔��… 11 …g�ͮ{+R?gǟ�lXSy?0(u4/home/gbr/devel/python/Lib/distutils/fancy_getopt.pyiSu_build_in…
|
/external/skqp/src/gpu/ccpr/ |
D | GrCCCoverageProcessor_GSImpl.cpp | 49 GrGLSLVaryingHandler* varyingHandler, GrGLSLGeometryBuilder* g, in emitGeometryShader() argument 56 g->codeAppendf("float%ix2 pts = transpose(float2x%i(sk_in[0].%s, sk_in[1].%s));", in emitGeometryShader() 60 g->declareGlobal(wind); in emitGeometryShader() 61 Shader::CalcWind(proc, g, "pts", wind.c_str()); in emitGeometryShader() 65 g->codeAppendf("%s *= sk_in[0].sk_Position.w;", wind.c_str()); in emitGeometryShader() 80 g->emitFunction(kVoid_GrSLType, "emitVertex", emitArgs.count(), emitArgs.begin(), [&]() { in emitGeometryShader() 91 g->emitVertex(&fnBody, "vertexpos", rtAdjust); in emitGeometryShader() 101 g->defineConstant("bloat", bloat); in emitGeometryShader() 103 this->onEmitGeometryShader(proc, g, wind, emitVertexFn.c_str()); in emitGeometryShader() 132 void onEmitGeometryShader(const GrCCCoverageProcessor&, GrGLSLGeometryBuilder* g, in onEmitGeometryShader() argument [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | training_ops_test.cc | 44 static Node* Var(Graph* g, int n) { in Var() argument 45 return test::graph::Var(g, DT_FLOAT, TensorShape({n})); in Var() 48 static Node* Var(Graph* g, int m, int n) { in Var() argument 49 return test::graph::Var(g, DT_FLOAT, TensorShape({m, n})); in Var() 52 static Node* Zeros(Graph* g, int n) { in Zeros() argument 55 return test::graph::Constant(g, data); in Zeros() 58 static Node* Zeros(Graph* g, int m, int n) { in Zeros() argument 61 return test::graph::Constant(g, data); in Zeros() 64 static Node* Random(Graph* g, int n) { in Random() argument 67 return test::graph::Constant(g, data); in Random() [all …]
|
/external/tensorflow/tensorflow/core/graph/ |
D | testlib.cc | 35 Node* Send(Graph* g, Node* input, const string& tensor, const string& sender, in Send() argument 38 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "_Send") in Send() 45 .Finalize(g, &ret)); in Send() 49 Node* Recv(Graph* g, const string& tensor, const string& type, in Recv() argument 55 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "_Recv") in Recv() 62 .Finalize(g, &ret)); in Recv() 66 Node* Constant(Graph* g, const Tensor& tensor) { in Constant() argument 68 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Const") in Constant() 71 .Finalize(g, &ret)); in Constant() 75 Node* Constant(Graph* g, const Tensor& tensor, const string& name) { in Constant() argument [all …]
|
/external/libxml2/test/ |
D | svg3 | 2 <g style="fill: #ffffff; stroke:#000000; stroke-width:0.172"> 4 </g> 5 <g style="fill: #ffffff; stroke:#000000; stroke-width:0.172"> 7 </g> 8 <g style="fill: #ffffff; stroke:#000000; stroke-width:0.172"> 10 </g> 11 <g style="fill: #ffffff; stroke:#000000; stroke-width:0.172"> 13 </g> 14 <g style="fill: #ffffff; stroke:#000000; stroke-width:0.172"> 16 </g> [all …]
|
/external/golang-protobuf/protoc-gen-go/generator/ |
D | generator.go | 80 Init(g *Generator) 343 GenerateAlias(g *Generator, filename string, pkg GoPackageName) 359 func (ms *messageSymbol) GenerateAlias(g *Generator, filename string, pkg GoPackageName) { 360 g.P("// ", ms.sym, " from public import ", filename) 361 g.P("type ", ms.sym, " = ", pkg, ".", ms.sym) 363 g.P("type ", name, " = ", pkg, ".", name) 372 func (es enumSymbol) GenerateAlias(g *Generator, filename string, pkg GoPackageName) { 374 g.P("// ", s, " from public import ", filename) 375 g.P("type ", s, " = ", pkg, ".", s) 376 g.P("var ", s, "_name = ", pkg, ".", s, "_name") [all …]
|
/external/tensorflow/tensorflow/core/ops/ |
D | math_grad.cc | 28 Status GradForUnaryCwise(FunctionDef* g, std::vector<FDH::Node> nodes) { in GradForUnaryCwise() argument 34 *g = FDH::Define( in GradForUnaryCwise() 46 Status AbsGrad(const AttrSlice& attrs, FunctionDef* g) { in AbsGrad() argument 48 return GradForUnaryCwise(g, { in AbsGrad() 56 Status NegGrad(const AttrSlice& attrs, FunctionDef* g) { in NegGrad() argument 58 return GradForUnaryCwise(g, { in NegGrad() 65 Status InvGrad(const AttrSlice& attrs, FunctionDef* g) { in InvGrad() argument 67 return GradForUnaryCwise(g, { in InvGrad() 78 Status SquareGrad(const AttrSlice& attrs, FunctionDef* g) { in SquareGrad() argument 80 return GradForUnaryCwise(g, { in SquareGrad() [all …]
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_bvgraph_test.cpp | 32 void PrintGraph(const G &g) { in PrintGraph() argument 33 for (uptr i = 0; i < g.size(); i++) { in PrintGraph() 34 for (uptr j = 0; j < g.size(); j++) { in PrintGraph() 35 fprintf(stderr, "%d", g.hasEdge(i, j)); in PrintGraph() 52 void checkSameAs(G *g) { in checkSameAs() argument 56 EXPECT_TRUE(g->removeEdge(from, to)); in checkSameAs() 58 EXPECT_TRUE(g->empty()); in checkSameAs() 70 BVGraph<BV> g; in BasicTest() local 71 g.clear(); in BasicTest() 81 uptr idx = (uptr)my_rand() % g.size(); in BasicTest() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_bvgraph_test.cc | 33 void PrintGraph(const G &g) { in PrintGraph() argument 34 for (uptr i = 0; i < g.size(); i++) { in PrintGraph() 35 for (uptr j = 0; j < g.size(); j++) { in PrintGraph() 36 fprintf(stderr, "%d", g.hasEdge(i, j)); in PrintGraph() 53 void checkSameAs(G *g) { in checkSameAs() argument 57 EXPECT_TRUE(g->removeEdge(from, to)); in checkSameAs() 59 EXPECT_TRUE(g->empty()); in checkSameAs() 71 BVGraph<BV> g; in BasicTest() local 72 g.clear(); in BasicTest() 82 uptr idx = (uptr)my_rand() % g.size(); in BasicTest() [all …]
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/ |
D | GeneratorFeaturesTest.java | 21 JsonGenerator g = JSON_F.createGenerator(new StringWriter()); in testConfigDefaults() local 22 assertFalse(g.isEnabled(JsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS)); in testConfigDefaults() 24 assertFalse(g.isEnabled(JsonGenerator.Feature.WRITE_BIGDECIMAL_AS_PLAIN)); in testConfigDefaults() 25 assertFalse(g.isEnabled(StreamWriteFeature.WRITE_BIGDECIMAL_AS_PLAIN)); in testConfigDefaults() 27 assertTrue(g.canOmitFields()); in testConfigDefaults() 28 assertFalse(g.canWriteBinaryNatively()); in testConfigDefaults() 29 assertTrue(g.canWriteFormattedNumbers()); in testConfigDefaults() 30 assertFalse(g.canWriteObjectId()); in testConfigDefaults() 31 assertFalse(g.canWriteTypeId()); in testConfigDefaults() 33 g.close(); in testConfigDefaults() [all …]
|