Lines Matching refs:fill
803 function sc_makeList(nbEls, fill) {
806 res = new sc_Pair(fill, res);
1299 var fill;
1301 fill = " ";
1303 fill = c;
1306 // every round doubles the size of fill.
1309 res = res.concat(fill);
1310 fill = fill.concat(fill);
1317 var fill;
1319 fill = c.val;
1321 fill = " ";
1322 return sc_makeJSStringOfLength(k, fill);
1376 function sc_makeVector(size, fill) {
1378 if (fill !== undefined)
1379 sc_vectorFillBang(a, fill);
1432 /*** META ((export vector-fill! array-fill!)) */
1433 function sc_vectorFillBang(a, fill) {
1435 a[i] = fill;
3398 /* there's no string-fill in the immutable version