/external/freetype/src/cache/ |
D | ftcglyph.c | 31 FTC_GNode_Init( FTC_GNode gnode, in FTC_GNode_Init() argument 35 gnode->family = family; in FTC_GNode_Init() 36 gnode->gindex = gindex; in FTC_GNode_Init() 42 FTC_GNode_UnselectFamily( FTC_GNode gnode, in FTC_GNode_UnselectFamily() argument 45 FTC_Family family = gnode->family; in FTC_GNode_UnselectFamily() 48 gnode->family = NULL; in FTC_GNode_UnselectFamily() 55 FTC_GNode_Done( FTC_GNode gnode, in FTC_GNode_Done() argument 59 gnode->gindex = 0; in FTC_GNode_Done() 61 FTC_GNode_UnselectFamily( gnode, cache ); in FTC_GNode_Done() 71 FTC_GNode gnode = (FTC_GNode)ftcgnode; in ftc_gnode_compare() local [all …]
|
D | ftcsbits.c | 110 FTC_GNode gnode = FTC_GNODE( snode ); in ftc_snode_load() local 111 FTC_Family family = gnode->family; in ftc_snode_load() 118 if ( (FT_UInt)(gindex - gnode->gindex) >= snode->count ) in ftc_snode_load() 124 sbit = snode->sbits + ( gindex - gnode->gindex ); in ftc_snode_load() 334 FTC_GNode gnode = FTC_GNODE( snode ); in ftc_snode_compare() local 341 result = FT_BOOL( gnode->family == gquery->family && in ftc_snode_compare() 342 (FT_UInt)( gindex - gnode->gindex ) < snode->count ); in ftc_snode_compare() 346 FTC_SBit sbit = snode->sbits + ( gindex - gnode->gindex ); in ftc_snode_compare()
|
D | ftcimage.c | 70 FTC_GNode gnode = FTC_GNODE( inode ); in FTC_INode_New() local 77 FTC_GNode_Init( gnode, gindex, family ); in FTC_INode_New()
|
D | ftcglyph.h | 189 FTC_GNode_Compare( FTC_GNode gnode, 199 FTC_GNode_UnselectFamily( FTC_GNode gnode,
|
D | ftcbasic.c | 209 FTC_GNode gnode = (FTC_GNode)ftcgnode; in ftc_basic_gnode_compare_faceid() local 211 FTC_BasicFamily family = (FTC_BasicFamily)gnode->family; in ftc_basic_gnode_compare_faceid() 223 FTC_GNode_UnselectFamily( gnode, cache ); in ftc_basic_gnode_compare_faceid()
|
D | ftcimage.h | 49 FTC_GNodeRec gnode; member
|
D | ftccback.h | 65 ftc_gnode_compare( FTC_Node gnode,
|
D | ftcsbits.h | 34 FTC_GNodeRec gnode; member
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/ |
D | GraphvizGrapher.java | 249 GraphvizNode gnode = new GraphvizNode(nodeId); in newInterfaceNode() local 250 gnode.setStyle(NodeStyle.DASHED); in newInterfaceNode() 252 gnode.setTitle(nameFactory.getClassName(key)); in newInterfaceNode() 253 gnode.addSubtitle(0, nameFactory.getAnnotationName(key)); in newInterfaceNode() 254 addNode(gnode); in newInterfaceNode() 260 GraphvizNode gnode = new GraphvizNode(nodeId); in newImplementationNode() local 261 gnode.setStyle(NodeStyle.SOLID); in newImplementationNode() 263 gnode.setHeaderBackgroundColor("#000000"); in newImplementationNode() 264 gnode.setHeaderTextColor("#ffffff"); in newImplementationNode() 265 gnode.setTitle(nameFactory.getClassName(nodeId.getKey())); in newImplementationNode() [all …]
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_timeline.cc | 174 void Timeline::AllocateTimeNodes(GraphNode* gnode) { in AllocateTimeNodes() argument 175 if (gnode->Trackable(step_)) { in AllocateTimeNodes() 176 TrackNode(gnode); in AllocateTimeNodes() 177 const TFGraphNode* node = gnode->node; in AllocateTimeNodes() 195 new TimeNode(p, gnode, start_micros, exec_micros)); in AllocateTimeNodes() 200 for (GraphNode* n : gnode->show_children) { in AllocateTimeNodes() 206 for (GraphNode* gnode : gnodes) { in GenerateGraphTimeline() 207 AllocateTimeNodes(gnode); in GenerateGraphTimeline()
|
D | tfprof_show_multi.cc | 169 const GraphNodeProto& gnode = proto.graph_nodes(i); in FormatInputShapes() local 172 for (const auto& inp : gnode.input_shapes()) { in FormatInputShapes() 194 std::get<0>(t->second) + 1, std::get<1>(t->second) + gnode.run_count(), in FormatInputShapes() 195 std::get<2>(t->second) + gnode.exec_micros()); in FormatInputShapes()
|
D | tfprof_op.cc | 308 for (const auto& gnode : node->proto().graph_nodes()) { in FormatNode() local 309 total_runs += gnode.run_count(); in FormatNode()
|
D | tfprof_timeline.h | 172 void AllocateTimeNodes(GraphNode* gnode);
|
/external/lua/src/ |
D | ltable.c | 58 #define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t)))) 69 #define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) 173 i = cast_int(n - gnode(t, 0)); /* key index in hash table */ in findindex() 196 if (!ttisnil(gval(gnode(t, i)))) { /* a non-nil value? */ in luaH_next() 197 setobj2s(L, key, gkey(gnode(t, i))); in luaH_next() 198 setobj2s(L, key+1, gval(gnode(t, i))); in luaH_next() 324 Node *n = gnode(t, i); in setnodevector() 330 t->lastfree = gnode(t, size); /* all positions are free */ in setnodevector()
|
D | lgc.c | 107 #define gnodelast(h) gnode(h, cast(size_t, sizenode(h))) 366 for (n = gnode(h, 0); n < limit; n++) { /* traverse hash part */ in traverseweakvalue() 408 for (n = gnode(h, 0); n < limit; n++) { in traverseephemeron() 438 for (n = gnode(h, 0); n < limit; n++) { /* traverse hash part */ in traversestrongtable() 643 for (n = gnode(h, 0); n < limit; n++) { in clearkeys() 668 for (n = gnode(h, 0); n < limit; n++) { in clearvalues()
|
D | ltable.h | 13 #define gnode(t,i) (&(t)->node[i]) macro
|
/external/tensorflow/tensorflow/core/framework/ |
D | function.cc | 174 NodeDef* gnode = AddNode(name); in BuildInputArgIndex() local 176 gnode->set_op(FunctionLibraryDefinition::kDeviceArgOp); in BuildInputArgIndex() 178 gnode->set_op(FunctionLibraryDefinition::kArgOp); in BuildInputArgIndex() 180 AddAttr("T", dtypes[i], gnode); in BuildInputArgIndex() 181 AddAttr("index", arg_index, gnode); in BuildInputArgIndex() 221 NodeDef* gnode = AddNode(fnode.name()); in InstantiateNode() local 222 gnode->set_op(fnode.op()); in InstantiateNode() 223 gnode->set_device(fnode.device()); in InstantiateNode() 305 (*gnode->mutable_attr())[p.first] = p.second; in InstantiateNode() 339 NodeDef* gnode = AddNode(name); in AddReturnNode() local [all …]
|
/external/tensorflow/tensorflow/python/profiler/ |
D | model_analyzer_test.py | 374 for gnode in tfprof_node.graph_nodes: 375 input_shapes += len(gnode.input_shapes)
|