Home
last modified time | relevance | path

Searched refs:lf (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlauxlib.c570 LoadF *lf = (LoadF *)ud; in getF() local
572 if (lf->n > 0) { /* are there pre-read characters to be read? */ in getF()
573 *size = lf->n; /* return them (chars already in buffer) */ in getF()
574 lf->n = 0; /* no more pre-read characters */ in getF()
580 if (feof(lf->f)) return NULL; in getF()
581 *size = fread(lf->buff, 1, sizeof(lf->buff), lf->f); /* read block */ in getF()
583 return lf->buff; in getF()
596 static int skipBOM (LoadF *lf) { in skipBOM() argument
599 lf->n = 0; in skipBOM()
601 c = getc(lf->f); in skipBOM()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcsv.py117 lf = len(self.fieldnames)
119 if lf < lr:
120 d[self.restkey] = row[lf:]
121 elif lf > lr:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcsv.py113 lf = len(self.fieldnames)
115 if lf < lr:
116 d[self.restkey] = row[lf:]
117 elif lf > lr:
D_pyio.py1388 lf = output.count('\n') - crlf
1389 self.seennl |= (lf and self._LF) | (cr and self._CR) \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dtest_pytree.py459 lf = pytree.Leaf(1, "f")
460 leaves = [la, lb, lc, ld, le, lf]
479 self.assertEqual(r["pw"], [la, lb, lc, ld, le, lf])