el1               603 third_party/talloc/testsuite.c 	} *el1;
el1               609 third_party/talloc/testsuite.c 	el1 = talloc(root, struct el1);
el1               610 third_party/talloc/testsuite.c 	el1->list = talloc(el1, struct el2 *);
el1               611 third_party/talloc/testsuite.c 	el1->list[0] = talloc(el1->list, struct el2);
el1               612 third_party/talloc/testsuite.c 	el1->list[0]->name = talloc_strdup(el1->list[0], "testing");
el1               614 third_party/talloc/testsuite.c 	el1->list2 = talloc(el1, struct el2 *);
el1               615 third_party/talloc/testsuite.c 	el1->list2[0] = talloc(el1->list2, struct el2);
el1               616 third_party/talloc/testsuite.c 	el1->list2[0]->name = talloc_strdup(el1->list2[0], "testing2");
el1               618 third_party/talloc/testsuite.c 	el1->list3 = talloc(el1, struct el2 *);
el1               619 third_party/talloc/testsuite.c 	el1->list3[0] = talloc(el1->list3, struct el2);
el1               620 third_party/talloc/testsuite.c 	el1->list3[0]->name = talloc_strdup(el1->list3[0], "testing2");
el1               622 third_party/talloc/testsuite.c 	el2 = talloc(el1->list, struct el2);
el1               623 third_party/talloc/testsuite.c 	el2 = talloc(el1->list2, struct el2);
el1               624 third_party/talloc/testsuite.c 	el2 = talloc(el1->list3, struct el2);
el1               626 third_party/talloc/testsuite.c 	el1->list = talloc_realloc(el1, el1->list, struct el2 *, 100);
el1               627 third_party/talloc/testsuite.c 	el1->list2 = talloc_realloc(el1, el1->list2, struct el2 *, 200);
el1               628 third_party/talloc/testsuite.c 	el1->list3 = talloc_realloc(el1, el1->list3, struct el2 *, 300);
el1               648 third_party/talloc/testsuite.c 	struct el1 *el1;
el1               654 third_party/talloc/testsuite.c 	el1 = talloc(root, struct el1);
el1               656 third_party/talloc/testsuite.c 	el1->count = 1;
el1               658 third_party/talloc/testsuite.c 	torture_assert("type", talloc_get_type(el1, struct el1) == el1,
el1               660 third_party/talloc/testsuite.c 	torture_assert("type", talloc_get_type(el1, struct el2) == NULL,
el1               662 third_party/talloc/testsuite.c 	talloc_set_type(el1, struct el2);
el1               663 third_party/talloc/testsuite.c 	torture_assert("type", talloc_get_type(el1, struct el2) == (struct el2 *)el1,