Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 11 of 11) sorted by relevance

/netbsd/src/common/lib/libc/gen/
Dptree.c215 uintptr_t *nodep = in ptree_find_branch() local
217 if (*nodep == branch_node) in ptree_find_branch()
218 return nodep; in ptree_find_branch()
219 if (PT_LEAF_P(*nodep)) in ptree_find_branch()
221 parent = PT_NODE(*nodep); in ptree_find_branch()
822 uintptr_t *nodep; in ptree_remove_node() local
836 nodep = NULL; in ptree_remove_node()
855 KASSERT(nodep == NULL); in ptree_remove_node()
868 nodep = &PTN_BRANCH_SLOT(parent, parent_slot); in ptree_remove_node()
869 KASSERT(*nodep == PTN_BRANCH(target)); in ptree_remove_node()
[all …]
/netbsd/src/external/gpl2/xcvs/dist/src/
Drcs.c4885 Node *nodep, *bp; in RCS_addbranch() local
4901 nodep = findnode (rcs->versions, branchpoint); in RCS_addbranch()
4902 if (nodep == NULL) in RCS_addbranch()
4909 branchnode = nodep->data; in RCS_addbranch()
5017 Node *nodep; in RCS_checkin() local
5216 nodep = getnode(); in RCS_checkin()
5217 nodep->type = RCSVERS; in RCS_checkin()
5218 nodep->delproc = rcsvers_delproc; in RCS_checkin()
5219 nodep->data = delta; in RCS_checkin()
5220 nodep->key = delta->version; in RCS_checkin()
[all …]
/netbsd/src/external/bsd/pcc/dist/pcc/cc/cxxcom/
Dcgram.y231 NODE *nodep; member
242 %type <nodep> e .e term enum_dcl struct_dcl cast_type declarator
260 %type <nodep> C_TYPE C_QUALIFIER C_ICON C_FCON C_CLASS
339 nsbeg: '{' { dclns($<nodep>0, $<strp>-1); }
348 NODE *p = $<nodep>-1;
590 olddecl(block(TYMERGE, ccopy($<nodep>0), $1,
594 olddecl(block(TYMERGE, ccopy($<nodep>0), $3,
630 … | init_declarator_list ',' attr_var { $<nodep>$ = $<nodep>0; } init_declarator {
722 | struct_declarator_list ',' { $<nodep>$=$<nodep>0; }
730 p = tymerge($<nodep>0, tymfix($1));
[all …]
Dscan.l146 0[xX]{H}+{IS}? { yylval.nodep = cvtdig(16); return(C_ICON); }
147 0{D}+{IS}? { yylval.nodep = cvtdig(8); return(C_ICON); }
148 {D}+{IS}? { yylval.nodep = cvtdig(10); return(C_ICON); }
/netbsd/src/external/cddl/osnet/dist/tools/ctf/cvt/
Dstabs.c66 resolve_tou_node(tdesc_t *node, tdesc_t **nodep, void *private __unused) in resolve_tou_node() argument
79 *nodep = new; in resolve_tou_node()
86 resolve_fwd_node(tdesc_t *node, tdesc_t **nodep, void *private __unused) in resolve_fwd_node() argument
97 *nodep = new; in resolve_fwd_node()
Dtraverse.c111 tdtrav_assert(tdesc_t *node __unused, tdesc_t **nodep __unused, void *private __unused) in tdtrav_assert()
/netbsd/src/external/bsd/pcc/dist/pcc/cc/ccom/
Dscan.l125 0[xX]{H}+{IS}? { yylval.nodep = cvtdig(16); return(C_ICON); }
126 0{D}+{IS}? { yylval.nodep = cvtdig(8); return(C_ICON); }
127 0[bB]{B}+{IS}? { yylval.nodep = cvtdig(2); return(C_ICON); }
128 {D}+{IS}? { yylval.nodep = cvtdig(10); return(C_ICON); }
Dcgram.y255 P1ND *nodep; member
269 %type <nodep> e .e term enum_dcl struct_dcl cast_type declarator
290 %type <nodep> C_ICON
562 olddecl(block(TYMERGE, p1tcopy($<nodep>0), $1,
566 olddecl(block(TYMERGE, p1tcopy($<nodep>0), $3,
607 … | init_declarator_list ',' attr_var { $<nodep>$ = $<nodep>0; } init_declarator {
694 | struct_declarator_list ',' { $<nodep>$=$<nodep>0; }
702 p = tymerge($<nodep>0, tymfix($1));
712 falloc(NULL, ie, $<nodep>0);
720 tymerge($<nodep>0, tymfix($1));
[all …]
/netbsd/src/sys/fs/nilfs/
Dnilfs_subr.c666 uint64_t ino, struct nilfs_inode *inode, struct nilfs_node **nodep) in nilfs_get_node_raw() argument
670 *nodep = NULL; in nilfs_get_node_raw()
698 *nodep = node; in nilfs_get_node_raw()
703 nilfs_dispose_node(struct nilfs_node **nodep) in nilfs_dispose_node() argument
708 if (!*nodep) in nilfs_dispose_node()
711 node = *nodep; in nilfs_dispose_node()
723 *nodep = NULL; in nilfs_dispose_node()
Dnilfs_subr.h60 …sdev, struct nilfs_mount *ump, uint64_t ino, struct nilfs_inode *inode, struct nilfs_node **nodep);
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dvar-tracking.cc2812 location_chain **nodep, *dnode, *snode; in variable_union() local
2821 nodep = &dst->var_part[0].loc_chain; in variable_union()
2822 dnode = *nodep; in variable_union()
2841 *nodep = nnode = new location_chain; in variable_union()
2857 nodep = &dnode->next; in variable_union()
2858 dnode = *nodep; in variable_union()
3315 insert_into_intersection (location_chain **nodep, rtx loc, in insert_into_intersection() argument
3321 for (node = *nodep; node; nodep = &node->next, node = *nodep) in insert_into_intersection()
3335 node->next = *nodep; in insert_into_intersection()
3336 *nodep = node; in insert_into_intersection()
[all …]