/external/u-boot/fs/ubifs/ |
D | lpt.c | 379 struct ubifs_nnode *nnode) in ubifs_pack_nnode() argument 387 pack_bits(&addr, &pos, nnode->num, c->pcnt_bits); in ubifs_pack_nnode() 389 int lnum = nnode->nbranch[i].lnum; in ubifs_pack_nnode() 394 pack_bits(&addr, &pos, nnode->nbranch[i].offs, in ubifs_pack_nnode() 489 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode) in ubifs_add_nnode_dirt() argument 491 struct ubifs_nnode *np = nnode->parent; in ubifs_add_nnode_dirt() 494 ubifs_add_lpt_dirt(c, np->nbranch[nnode->iip].lnum, in ubifs_add_nnode_dirt() 609 struct ubifs_nnode *nnode = NULL; in ubifs_create_dflt_lpt() local 628 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_KERNEL); in ubifs_create_dflt_lpt() 631 if (!pnode || !nnode || !buf || !ltab || !lsave) { in ubifs_create_dflt_lpt() [all …]
|
D | lpt_commit.c | 38 static struct ubifs_cnode *first_dirty_cnode(struct ubifs_nnode *nnode) in first_dirty_cnode() argument 40 ubifs_assert(nnode); in first_dirty_cnode() 47 cnode = nnode->nbranch[i].cnode; in first_dirty_cnode() 52 nnode = (struct ubifs_nnode *)cnode; in first_dirty_cnode() 58 return (struct ubifs_cnode *)nnode; in first_dirty_cnode() 70 struct ubifs_nnode *nnode; in next_dirty_cnode() local 74 nnode = cnode->parent; in next_dirty_cnode() 75 if (!nnode) in next_dirty_cnode() 78 cnode = nnode->nbranch[i].cnode; in next_dirty_cnode() 86 return (struct ubifs_cnode *)nnode; in next_dirty_cnode() [all …]
|
D | ubifs.h | 1187 struct ubifs_nnode *nnode; member 2304 struct ubifs_nnode *nnode); 2311 void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode); 2316 struct ubifs_nnode *nnode);
|
/external/snakeyaml/src/test/java/examples/jodatime/ |
D | JodaTimeExampleTest.java | 71 public Object construct(Node nnode) { in construct() argument 72 if (nnode.getTag().equals("tag:yaml.org,2002:timestamp")) { in construct() 74 Date date = (Date) dateConstructor.construct(nnode); in construct() 77 return super.construct(nnode); in construct() 111 public Object construct(Node nnode) { in construct() argument 112 if (nnode.getTag().equals(Tag.TIMESTAMP)) { in construct() 113 return jodaDateConstruct.construct(nnode); in construct() 115 return super.construct(nnode); in construct()
|
D | JodaTimeFlowStylesTest.java | 142 public Object construct(Node nnode) { in construct() argument 143 if (nnode.getTag().equals(new Tag("tag:yaml.org,2002:timestamp"))) { in construct() 145 Date date = (Date) dateConstructor.construct(nnode); in construct() 148 return super.construct(nnode); in construct()
|
/external/dtc/libfdt/ |
D | fdt_overlay.c | 565 int nnode; in overlay_apply_node() local 568 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node() 569 if (nnode == -FDT_ERR_EXISTS) { in overlay_apply_node() 570 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node() 571 if (nnode == -FDT_ERR_NOTFOUND) in overlay_apply_node() 575 if (nnode < 0) in overlay_apply_node() 576 return nnode; in overlay_apply_node() 578 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
|
/external/tensorflow/tensorflow/examples/tutorials/deepdream/ |
D | deepdream.ipynb | 243 …nnode {\\n name: "conv2d0/w"\\n op: "Const"\\n device: "/cpu:0"\\… 675 …nnode {\\n name: "ExpandDims/dim"\\n op: "Const"\\n attr {\\n key: "…
|
/external/u-boot/scripts/dtc/libfdt/ |
D | fdt_overlay.c | 627 int nnode; in overlay_apply_node() local 630 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node() 631 if (nnode == -FDT_ERR_EXISTS) { in overlay_apply_node() 632 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node() 633 if (nnode == -FDT_ERR_NOTFOUND) in overlay_apply_node() 637 if (nnode < 0) in overlay_apply_node() 638 return nnode; in overlay_apply_node() 640 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | Constructor.java | 372 public Object construct(Node nnode) { in construct() argument 373 ScalarNode node = (ScalarNode) nnode; in construct()
|
/external/epid-sdk/ext/argtable3/ |
D | argtable3.c | 3298 int nnode = trex_newnode(exp,OP_GREEDY); in trex_element() local 3299 exp->_nodes[nnode].left = ret; in trex_element() 3300 exp->_nodes[nnode].right = ((p0)<<16)|p1; in trex_element() 3301 ret = nnode; in trex_element() 3305 int nnode = trex_element(exp); in trex_element() local 3306 exp->_nodes[ret].next = nnode; in trex_element()
|