/external/freetype/src/cache/ |
ftcglyph.c | 31 FTC_GNode_Init( FTC_GNode gnode, 35 gnode->family = family; 36 gnode->gindex = gindex; 42 FTC_GNode_UnselectFamily( FTC_GNode gnode, 45 FTC_Family family = gnode->family; 48 gnode->family = NULL; 55 FTC_GNode_Done( FTC_GNode gnode, 59 gnode->gindex = 0; 61 FTC_GNode_UnselectFamily( gnode, cache ); 71 FTC_GNode gnode = (FTC_GNode)ftcgnode local [all...] |
ftcimage.c | 70 FTC_GNode gnode = FTC_GNODE( inode ); local 77 FTC_GNode_Init( gnode, gindex, family );
|
ftcsbits.c | 110 FTC_GNode gnode = FTC_GNODE( snode ); local 111 FTC_Family family = gnode->family; 118 if ( (FT_UInt)(gindex - gnode->gindex) >= snode->count ) 124 sbit = snode->sbits + ( gindex - gnode->gindex ); 334 FTC_GNode gnode = FTC_GNODE( snode ); local 341 result = FT_BOOL( gnode->family == gquery->family && 342 (FT_UInt)( gindex - gnode->gindex ) < snode->count ); 346 FTC_SBit sbit = snode->sbits + ( gindex - gnode->gindex );
|
ftccback.h | 65 ftc_gnode_compare( FTC_Node gnode,
|
ftcsbits.h | 34 FTC_GNodeRec gnode; member in struct:FTC_SNodeRec_
|
ftcimage.h | 49 FTC_GNodeRec gnode; member in struct:FTC_INodeRec_
|
ftcglyph.h | 189 FTC_GNode_Compare( FTC_GNode gnode, 199 FTC_GNode_UnselectFamily( FTC_GNode gnode,
|
ftcbasic.c | 209 FTC_GNode gnode = (FTC_GNode)ftcgnode; local 211 FTC_BasicFamily family = (FTC_BasicFamily)gnode->family; 223 FTC_GNode_UnselectFamily( gnode, cache );
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/ |
GraphvizGrapher.java | 242 GraphvizNode gnode = new GraphvizNode(nodeId); local 243 gnode.setStyle(NodeStyle.DASHED); 245 gnode.setTitle(nameFactory.getClassName(key)); 246 gnode.addSubtitle(0, nameFactory.getAnnotationName(key)); 247 addNode(gnode); 252 GraphvizNode gnode = new GraphvizNode(nodeId); local 253 gnode.setStyle(NodeStyle.SOLID); 255 gnode.setHeaderBackgroundColor("#000000"); 256 gnode.setHeaderTextColor("#ffffff"); 257 gnode.setTitle(nameFactory.getClassName(nodeId.getKey())) 268 GraphvizNode gnode = new GraphvizNode(nodeId); local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
ltable.h | 13 #define gnode(t,i) (&(t)->node[i]) macro
|
ltable.c | 51 #define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t)))) 61 #define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) 157 i = cast_int(n - gnode(t, 0)); /* key index in hash table */ 179 if (!ttisnil(gval(gnode(t, i)))) { /* a non-nil value? */ 180 setobj2s(L, key, gkey(gnode(t, i))); 181 setobj2s(L, key+1, gval(gnode(t, i))); 293 Node *n = gnode(t, i); 300 t->lastfree = gnode(t, size); /* all positions are free */
|
lgc.c | 94 #define gnodelast(h) gnode(h, cast(size_t, sizenode(h))) 360 for (n = gnode(h, 0); n < limit; n++) { 392 for (n = gnode(h, 0); n < limit; n++) { 421 for (n = gnode(h, 0); n < limit; n++) { /* traverse hash part */ 629 for (n = gnode(h, 0); n < limit; n++) { 653 for (n = gnode(h, 0); n < limit; n++) { [all...] |
/external/syslinux/com32/lua/src/ |
ltable.h | 13 #define gnode(t,i) (&(t)->node[i]) macro
|
ltable.c | 51 #define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t)))) 61 #define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) 86 return gnode(t, 0); 158 i = cast_int(n - gnode(t, 0)); /* key index in hash table */ 180 if (!ttisnil(gval(gnode(t, i)))) { /* a non-nil value? */ 181 setobj2s(L, key, gkey(gnode(t, i))); 182 setobj2s(L, key+1, gval(gnode(t, i))); 294 Node *n = gnode(t, i); 301 t->lastfree = gnode(t, size); /* all positions are free */
|
lgc.c | 94 #define gnodelast(h) gnode(h, cast(size_t, sizenode(h))) 360 for (n = gnode(h, 0); n < limit; n++) { 392 for (n = gnode(h, 0); n < limit; n++) { 421 for (n = gnode(h, 0); n < limit; n++) { /* traverse hash part */ 629 for (n = gnode(h, 0); n < limit; n++) { 653 for (n = gnode(h, 0); n < limit; n++) { [all...] |
/external/tensorflow/tensorflow/core/profiler/internal/ |
tfprof_timeline.cc | 174 void Timeline::AllocateTimeNodes(GraphNode* gnode) { 175 if (gnode->Trackable(step_)) { 176 TrackNode(gnode); 177 const TFGraphNode* node = gnode->node; 195 new TimeNode(p, gnode, start_micros, exec_micros)); 200 for (GraphNode* n : gnode->show_children) { 206 for (GraphNode* gnode : gnodes) { 207 AllocateTimeNodes(gnode);
|
tfprof_show_multi.cc | 169 const GraphNodeProto& gnode = proto.graph_nodes(i); local 172 for (const auto& inp : gnode.input_shapes()) { 194 std::get<0>(t->second) + 1, std::get<1>(t->second) + gnode.run_count(), 195 std::get<2>(t->second) + gnode.exec_micros());
|
tfprof_op.cc | 308 for (const auto& gnode : node->proto().graph_nodes()) { 309 total_runs += gnode.run_count();
|
tfprof_timeline.h | 172 void AllocateTimeNodes(GraphNode* gnode);
|
/external/doclava/src/com/google/doclava/ |
PageMetadata.java | 570 * @param gNode The node to attach to a root node or add as a new root node. 574 public static List<Node> appendMetaNodeByLang(Node gNode, List<Node> rootList) { 576 String nodeLang = gNode.getLang(); 580 appendMetaNodeByType(gNode,n.getChildren()); 581 //n.getChildren().add(gNode); 588 //mlangList.add(gNode); 591 appendMetaNodeByType(gNode, mlangList); 601 * @param gNode The node to attach to a root node or add as a new root node. 605 public static List<Node> appendMetaNodeByType(Node gNode, List<Node> rootList) { 607 String nodeTags = gNode.getType() [all...] |
SampleCode.java | 466 private static List<Node> appendNodeGroups(Node gNode, List<Node> groupnodes) { 469 if (gNode.getGroup().equals(groupnodes.get(i).getLabel())) { 471 mgrouplist.add(gNode); 474 groupnodes.get(i).getChildren().add(gNode);
|
/external/tensorflow/tensorflow/core/framework/ |
function.cc | 170 NodeDef* gnode = AddNode(name); local 171 gnode->set_op("_Arg"); 172 AddAttr("T", dtypes[i], gnode); 173 AddAttr("index", arg_index, gnode); 213 NodeDef* gnode = AddNode(fnode.name()); local 214 gnode->set_op(fnode.op()); 215 gnode->set_device(fnode.device()); 296 (*gnode->mutable_attr())[p.first] = p.second; 330 NodeDef* gnode = AddNode(name); local 331 gnode->set_op("_Retval") 409 NodeDef* gnode = &result_.nodes.back(); local [all...] |
/external/fio/ |
goptions.c | 93 static GNode *gopt_dep_tree; 136 GNode *child, *node; [all...] |
/external/tensorflow/tensorflow/python/profiler/ |
model_analyzer_test.py | 363 for gnode in tfprof_node.graph_nodes: 364 input_shapes += len(gnode.input_shapes)
|
/frameworks/opt/setupwizard/tools/docs/ |
doclava.jar | |