/src/sys/external/bsd/gnu-efi/dist/lib/ |
console.c | 63 UINTN Len; 69 Len = 0; 85 if (Len) { 87 Len -= 1; 93 if (Len < StrLen-1) { 94 InStr[Len] = Key.UnicodeChar; 96 InStr[Len+1] = 0; 97 uefi_call_wrapper(ConOut->OutputString, 2, ConOut, &InStr[Len]); 99 Len += 1; 105 InStr[Len] = 0 [all...] |
print.c | 91 UINTN Len; 322 UINTN len; local in function:_SPrint 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 496 UINTN len; local in function:UnicodeSPrint [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerDataFlowTrace.cpp | 69 size_t Len = End - Beg; 70 Vector<uint8_t> V(Len); 71 for (size_t I = 0; I < Len; I++) { 78 if (NumTracesWithFocusFunction <= 3 && Len <= 16)
|
FuzzerIOWindows.cpp | 239 size_t Len = strlen(Patt); 240 if (Offset + Len > Ref.size()) 242 return Ref.compare(Offset, Len, Patt) == 0 ? Len : 0;
|
FuzzerDriver.cpp | 109 size_t Len = strlen(Name); 111 Param[Len + 1] == '=') 112 return &Param[Len + 2];
|
FuzzerTracePC.cpp | 416 size_t Len = std::min(n, Word::GetMaxSize()); 424 for (size_t i = 0; i < Len; i++) { 431 for (; I < Len; I++) 437 TORCW.Insert(Idx ^ Hash, Word(B1, Len), Word(B2, Len)); 457 size_t Len = 0; 458 for (; Len < MaxLen && S[Len]; Len++) {} 459 return Len; [all...] |
/src/sys/external/bsd/acpica/dist/compiler/ |
aslcodegen.c | 366 UINT32 Len; 428 PkgLen.Len = (UINT32) Op->Asl.Value.Integer; 446 PkgLen.Len = Op->Asl.AmlSubtreeLength + Op->Asl.AmlPkgLenBytes; 476 PkgLen.Len >>= 4;
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/ |
FuzzerUnittest.cpp | 89 for (size_t Len = 1; Len < 8; Len++) { 92 C.resize(Len); 99 if (U.size() <= Len)
|
/src/common/dist/zlib/ |
deflate.h | 81 ush len; /* length of bit string */ member in union:ct_data_s::__anonf3f70993020a 88 #define Len dl.len 343 { uch len = (uch)(length); \ 346 s->l_buf[s->sym_next++] = len; \ 348 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ 362 { uch len = (uch)(length); \ 366 s->sym_buf[s->sym_next++] = len; \ 368 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
|
/src/sys/external/bsd/gnu-efi/dist/inc/ |
efi_pxe.h | 760 PXE_UINT8 Len; // sizeof(PXE_HW_UNDI) 855 PXE_UINT8 Len; // sizeof(PXE_SW_UNDI) 1020 // PXE_VOID Mem_IO(PXE_UINT8 read_write, PXE_UINT8 len, PXE_UINT64 port, 1024 // function. It passes the number of bytes as the len parameter and it
|
/src/sys/net/ |
zlib.c | 239 # define zmemzero(dest, len) _fmemset(dest, 0, len) 243 # define zmemzero(dest, len) memset(dest, 0, len) 246 extern void zmemcpy(Bytef* dest, const Bytef* source, uInt len); 247 extern int zmemcmp(const Bytef* s1, const Bytef* s2, uInt len); 248 extern void zmemzero(Bytef* dest, uInt len); 273 uInt len); 343 ush len; /* length of bit string */ member in union:ct_data_s::__anon0201f153020a 350 #define Len dl.le 1027 unsigned len = s->pending; local in function:flush_pending 1292 unsigned len = strm->avail_in; local in function:read_buf 1356 int len; \/* length of current match *\/ local in function:longest_match 1497 register int len; \/* length of current match *\/ local in function:longest_match 2694 int len = tree[n].Len; local in function:gen_codes 5093 uInt len; member in struct:inflate_codes_state [all...] |