Home | History | Annotate | Download | only in lib

Lines Matching defs:Len

91     UINTN       Len;
322 UINTN len;
326 len = StrLen(Buffer);
332 if (spc->len + len > spc->maxlen) {
333 len = spc->maxlen - spc->len;
340 CopyMem (spc->str + spc->len, Buffer, len * sizeof(CHAR16));
341 spc->len += len;
347 if (spc->len < spc->maxlen) {
348 spc->str[spc->len] = 0;
368 newlen = spc->len + StrLen(Buffer) + 1;
384 spc->len * sizeof(CHAR16),
389 spc->len = 0;
460 spc.len = 0;
464 return spc.len;
496 UINTN len;
499 len = UnicodeVSPrint(Str, StrSize, fmt, args);
502 return len;
880 UINTN i, Len;
892 Len = UnicodeVSPrint(UnicodeStr, StrSize, UnicodeFmt, args);
896 for (i = 0; i < Len; i++)
898 Str[Len] = 0;
901 return Len;
950 ps->Len += 1;
980 UINTN Len, i;
994 Len = Item->Item.Index;
998 Item->FieldWidth = Len;
1002 if (Len > Item->Width) {
1003 Item->Width = Len;
1015 for (i=Len; i < Item->Width; i++) {
1021 while (Item->Item.Index < Len) {
1090 ps->Len = 0;
1316 return ps->Len;