Searched defs:walker (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Dmppc.c69 int k, walker_len = 0, walker; local
99 walker = g_mppc_dict.roff;
101 next_offset = walker;
114 walker = data[i++] << 24;
117 if (walker >= 0)
123 if (walker != 0)
127 walker |= (data[i++] & 0xff) << (24 - walker_len);
132 dict[next_offset++] = (((uint32) walker) >> ((uint32) 24));
133 walker <<= 8;
137 walker <<
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dlist.c669 * @walker: a processing function
670 * @user: a user parameter passed to the walker function
673 * apply the walker function to it
676 xmlListWalk(xmlListPtr l, xmlListWalker walker, const void *user) { argument
679 if ((l == NULL) || (walker == NULL))
682 if((walker(lk->data, user)) == 0)
690 * @walker: a processing function
691 * @user: a user parameter passed to the walker function
694 * apply the walker function to it
697 xmlListReverseWalk(xmlListPtr l, xmlListWalker walker, cons argument
[all...]
H A Dxmllint.c191 static int walker = 0; variable
2370 if (walker) {
2898 printf("\t--walker : create a reader and walk though the resulting doc\n");
3181 else if ((!strcmp(argv[i], "-walker")) ||
3182 (!strcmp(argv[i], "--walker"))) {
3183 walker++;
3400 && (walker == 0)

Completed in 53 milliseconds