Home | History | Annotate | Download | only in lib

Lines Matching defs:this_len

98 	unsigned int this_len;
115 this_len = (segment * (100 - percentage)) / 100;
116 if (this_len > len)
117 this_len = len;
119 __fill_random_buf(buf, this_len, r);
121 len -= this_len;
122 buf += this_len;
124 if (this_len > len)
125 this_len = len;
127 memset(buf, 0, this_len);
128 len -= this_len;
129 buf += this_len;