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 85 static int nchild; /* how many children */ variable
138 nchild = 5;
157 for (i = 0; i < nchild; i++) {
168 dotest(nchild, i, fd);
545 for (i = 0; i < nchild; i++)
ftest04.c 75 static int nchild; /* number of child processes */ variable
134 nchild = 5;
152 for (i = 0; i < nchild; i++) {
162 dotest(nchild, i, fd);
496 for (i = 0; i < nchild; i++)
ftest05.c 89 static int nchild; /* how many children */ variable
147 nchild = 5;
166 for (i = 0; i < nchild; i++) {
177 dotest(nchild, i, fd);
540 for (i = 0; i < nchild; i++)
ftest08.c 83 static int nchild; /* number of child processes */ variable
140 nchild = 5;
157 for (i = 0; i < nchild; i++) {
168 dotest(nchild, i, fd);
528 for (i = 0; i < nchild; i++)
ftest03.c 91 static int nchild; /* how many children */ variable
161 nchild = 5;
179 for (i = 0; i < nchild; i++) {
193 dotest(nchild, i, fd);
627 for (i = 0; i < nchild; i++)
ftest07.c 97 static int nchild; /* how many children */ variable
165 nchild = 5;
183 for (i = 0; i < nchild; i++) {
194 dotest(nchild, i, fd);
624 for (i = 0; i < nchild; i++)
  /external/boringssl/src/crypto/x509v3/
pcy_node.c 120 node->nchild = 0;
147 parent->nchild++;
pcy_tree.c 406 if (node->nchild)
414 if ((size_t)node->nchild == sk_ASN1_OBJECT_num(expset))
455 if (node->nchild)
502 node->parent->nchild--;
514 if (node->nchild == 0) {
515 node->parent->nchild--;
520 if (curr->anyPolicy && !curr->anyPolicy->nchild) {
522 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 72 int count, i, nchild, status; local
123 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 3141 milliseconds