HomeSort by relevance Sort by last modified time
    Searched refs:nchild (Results 1 - 17 of 17) sorted by null

  /external/ltp/testcases/kernel/mem/page/
page01.c 73 int nchild; local
84 nchild = 50;
88 if (sscanf(argv[2], "%d", &nchild) != 1)
91 printf("page01 [memory size (words)] [nchild]\n");
107 for (i = 1; i <= nchild; i++) {
185 if (count != nchild) {
187 tst_resm(TWARN, "Count = %d, expected = %d.\n", count, nchild);
page02.c 72 int nchild; local
90 nchild = 5;
94 if (sscanf(argv[2], "%d", &nchild) != 1)
97 printf("page02 [memory size (words)] [nchild]\n");
112 for (i = 1; i <= nchild; i++) {
211 if (count != nchild) {
214 count, nchild);
  /external/ltp/testcases/kernel/mem/vmtests/
stack_space.c 60 int nchild; /* # kids */ variable
77 tst_resm(TCONF, "Usage: %s <nchild> <chunk_size> <iterations>", prog);
97 nchild = 20;
102 if (sscanf(argv[i++], "%d", &nchild) != 1)
104 if (nchild > MAXCHILD) {
143 for (i = 0; i < nchild; i++) {
145 dotest(nchild, i); /* do it! */
179 if (count != nchild) {
data_space.c 69 int nchild; /* # kids */ variable
96 tst_resm(TCONF, "Usage: %s <nchild> <size> <chunk_size> <iterations>",
112 nchild = 10;
117 if (sscanf(argv[i++], "%d", &nchild) != 1)
125 if (nchild > MAXCHILD) {
128 nchild);
155 for (i = 0; i < nchild; i++) {
161 dotest(nchild, i);
190 if (count != nchild) {
  /external/ltp/testcases/kernel/fs/ftest/
ftest02.c 33 * ftest02 [-f tmpdirname] nchild iterations [partition]
81 static int nchild; variable
105 nchild = 5;
147 for (k = 0; k < nchild; k++) {
176 if (count != nchild) {
190 for (k = 0; k < nchild; k++)
425 for (i = 0; i < nchild; i++)
ftest06.c 36 * ftest06 [-f tmpdirname] nchild iterations [partition]
87 static int nchild; variable
116 nchild = 5;
159 for (k = 0; k < nchild; k++) {
190 if (count != nchild) {
205 for (k = 0; k < nchild; k++)
442 for (i = 0; i < nchild; i++)
ftest01.c 87 static int nchild; /* how many children */ variable
139 nchild = 5;
158 for (i = 0; i < nchild; i++) {
166 dotest(nchild, i, fd);
543 for (i = 0; i < nchild; i++)
ftest04.c 76 static int nchild; /* number of child processes */ variable
131 nchild = 5;
149 for (i = 0; i < nchild; i++) {
152 dotest(nchild, i, fd);
486 for (i = 0; i < nchild; i++)
ftest05.c 91 static int nchild; /* how many children */ variable
147 nchild = 5;
166 for (i = 0; i < nchild; i++) {
173 dotest(nchild, i, fd);
536 for (i = 0; i < nchild; i++)
ftest08.c 84 static int nchild; /* number of child processes */ variable
136 nchild = 5;
153 for (i = 0; i < nchild; i++) {
164 dotest(nchild, i, fd);
524 for (i = 0; i < nchild; i++)
ftest03.c 92 static int nchild; /* how many children */ variable
159 nchild = 5;
177 for (i = 0; i < nchild; i++) {
186 dotest(nchild, i, fd);
620 for (i = 0; i < nchild; i++)
ftest07.c 98 static int nchild; /* how many children */ variable
163 nchild = 5;
181 for (i = 0; i < nchild; i++) {
188 dotest(nchild, i, fd);
618 for (i = 0; i < nchild; i++)
  /external/boringssl/src/crypto/x509v3/
pcy_node.c 120 node->nchild = 0;
147 parent->nchild++;
pcy_tree.c 409 if (node->nchild)
417 if ((size_t)node->nchild == sk_ASN1_OBJECT_num(expset))
458 if (node->nchild)
505 node->parent->nchild--;
517 if (node->nchild == 0) {
518 node->parent->nchild--;
523 if (curr->anyPolicy && !curr->anyPolicy->nchild) {
525 curr->anyPolicy->parent->nchild--;
pcy_int.h 146 int nchild; member in struct:X509_POLICY_NODE_st
  /external/ltp/testcases/kernel/syscalls/execve/
execve05.c 73 int count, i, nchild, status; local
124 nchild = count * 2;
  /external/ltp/testcases/kernel/fs/inode/
inode02.c 78 int nchild; variable
143 nchild = 5;
157 if (sscanf(argv[i++], "%d", &nchild) != 1)
159 if (nchild > MAXCHILD) {
168 /* Generate and check nchild trees */
172 for (p = 0; p < nchild; p++) {
202 if (count != nchild) {
204 tst_resm(TFAIL, "Saw %d, expected %d\n", count, nchild);

Completed in 190 milliseconds