• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/powerpc/boot/

Lines Matching defs:atom

475 	struct ft_atom atom;
481 while ((next = ft_next(cxt, p, &atom)) != NULL)
491 struct ft_atom atom;
494 while ((next = ft_next(cxt, p, &atom)) != NULL) {
495 if (atom.tag == OF_DT_PROP) {
672 struct ft_atom atom;
684 while ((p = ft_next(cxt, p, &atom)) != NULL) {
685 switch (atom.tag) {
690 cxt->genealogy[depth] = atom.data;
692 if (depth && !(strncmp(atom.name, cp, cl) == 0
693 && (atom.name[cl] == '/'
694 || atom.name[cl] == '\0'
695 || atom.name[cl] == '@')))
705 return atom.data;
734 struct ft_atom atom;
744 while ((p = ft_next(cxt, p, &atom)) != NULL) {
745 switch (atom.tag) {
747 cxt->genealogy[d] = atom.data;
748 if (node == atom.data) {
776 struct ft_atom atom;
779 while ((node = ft_next(cxt, node, &atom)) != NULL) {
780 switch (atom.tag) {
786 if (depth != 1 || strcmp(atom.name, propname))
790 *len = atom.size;
792 return atom.data;
827 struct ft_atom atom;
833 while ((next = ft_next(cxt, p, &atom)) != NULL) {
837 switch (atom.tag) {
891 struct ft_atom atom;
900 next = ft_next(cxt, node, &atom);
901 if (atom.tag != OF_DT_BEGIN_NODE)
906 while ((next = ft_next(cxt, p, &atom)) != NULL) {
907 switch (atom.tag) {
914 if (strcmp(atom.name, propname))
917 nextra = _ALIGN(buflen, 4) - _ALIGN(atom.size, 4);
918 cxt->p = atom.data;
933 struct ft_atom atom;
943 while ((next = ft_next(cxt, p, &atom)) != NULL) {
944 switch (atom.tag) {
949 if (strcmp(atom.name, propname))
952 size = 12 + -_ALIGN(atom.size, 4);
965 struct ft_atom atom;
977 while ((next = ft_next(cxt, p, &atom)) != NULL) {
978 switch (atom.tag) {
981 if (depth == 1 && strcmp(atom.name, name) == 0)