Home | History | Annotate | Download | only in GenDepex

Lines Matching defs:Padding

160     "  -P BOUNDARY  The padding integer value to align the output file size",

234 IN UINT8 Padding OPTIONAL
310 Padding - OPTIONAL integer value to pad the output file to.
788 // Checks for invalid padding values
790 if (Padding < 0) {
792 printf ("The inputted padding value was %d\n", Padding);
793 printf ("The optional padding value can not be less than ZERO\n");
796 } else if (Padding > 0) {
798 while ((OutFileSize % Padding) != 0) {
849 UINT8 Padding;
857 Padding = 0;
908 Padding = (UINT8) atoi (argv[Index + 1]);
912 printf ("GenDepex only allows one PADDING (-P) argument\n");
932 return GenerateDependencyExpression (InFile, OutFile, Padding);