HomeSort by: relevance | last modified time | path
    Searched refs:Str (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/
dpath.c 477 IN OUT POOL_PRINT *Str,
484 CatPrint(Str, L"Pci(0x%x,0x%x)", Pci->Device, Pci->Function);
489 IN OUT POOL_PRINT *Str,
496 CatPrint(Str, L"Pccard(0x%x)", Pccard-> FunctionNumber );
501 IN OUT POOL_PRINT *Str,
508 CatPrint(Str, L"MemMap(%d,0x%x,0x%x)",
517 IN OUT POOL_PRINT *Str,
524 CatPrint(Str, L"Ctrl(%d)",
531 IN OUT POOL_PRINT *Str,
547 CatPrint(Str, L"Ven%s(%g", Type, &Vendor->Guid)
    [all...]
console.c 26 IN CHAR16 *Str
30 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, Str);
str.c 1 /* $NetBSD: str.c,v 1.1.1.3 2021/09/30 18:50:09 jmcneill Exp $ */
9 str.c
68 IN CHAR16 *Str EFI_UNUSED
88 IN CHAR16 *Str
93 UnicodeInterface->StrLwr(UnicodeInterface, Str);
94 else uefi_call_wrapper(UnicodeInterface->StrLwr, 2, UnicodeInterface, Str);
99 IN CHAR16 *Str
104 UnicodeInterface->StrUpr(UnicodeInterface, Str);
105 else uefi_call_wrapper(UnicodeInterface->StrUpr, 2, UnicodeInterface, Str);
271 CONST CHAR16 *str
    [all...]
print.c 100 INTN (EFIAPI *Output)(VOID *context, CHAR16 *str);
340 CopyMem (spc->str + spc->len, Buffer, len * sizeof(CHAR16));
348 spc->str[spc->len] = 0;
350 spc->str[spc->maxlen] = 0;
382 spc->str = ReallocatePool (
383 spc->str,
388 if (!spc->str) {
408 IN INTN (EFIAPI *Output)(VOID *context, CHAR16 *str)
427 OUT CHAR16 *Str,
440 Str - Output buffer to print the formatted string int
1328 CHAR8 str[30], *p1; local in function:ValueToHex
1361 CHAR8 str[40], *p1; local in function:ValueToString
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.cpp 82 bool ParseOneDictionaryEntry(const std::string &Str, Unit *U) {
84 if (Str.empty()) return false;
85 size_t L = 0, R = Str.size() - 1; // We are parsing the range [L,R].
87 while (L < R && isspace(Str[L])) L++;
88 while (R > L && isspace(Str[R])) R--;
91 if (Str[R] != '"') return false;
94 while (L < R && Str[L] != '"') L++;
96 assert(Str[L] == '\"');
100 uint8_t V = (uint8_t)Str[Pos];
104 if (Pos + 1 <= R && (Str[Pos + 1] == '\\' || Str[Pos + 1] == '"'))
    [all...]
FuzzerMerge.h 65 bool Parse(const std::string &Str, bool ParseCoverage);
FuzzerIOPosix.cpp 141 void RawPrint(const char *Str) {
142 write(2, Str, strlen(Str));
FuzzerIO.h 52 void RawPrint(const char *Str);
FuzzerDriver.cpp 117 static long MyStol(const char *Str) {
120 if (*Str == '-') {
121 Str++;
124 for (size_t i = 0; Str[i]; i++) {
125 char Ch = Str[i];
148 const char *Str = FlagValue(Param, Name);
149 if (Str) {
151 int Val = MyStol(Str);
157 unsigned int Val = std::stoul(Str);
163 *FlagDescriptions[F].StrFlag = Str;
    [all...]
FuzzerDictionary.h 112 bool ParseOneDictionaryEntry(const std::string &Str, Unit *U);
FuzzerIOWindows.cpp 336 void RawPrint(const char *Str) {
338 Printf("%s", Str);
FuzzerMerge.cpp 26 bool Merger::Parse(const std::string &Str, bool ParseCoverage) {
27 std::istringstream SS(Str);
  /src/sys/external/bsd/gnu-efi/dist/inc/
lib.h 69 IN CHAR16 *Str
efilib.h 328 IN CHAR16 *Str
333 IN CHAR16 *Str
416 CONST CHAR16 *str
421 CONST CHAR16 *str
509 IN CHAR16 *Str
542 OUT CHAR16 *Str,
550 OUT CHAR16 *Str,
569 CHAR16 *str; member in struct:__anonbe1f1cbc0108
576 IN OUT POOL_PRINT *Str,
613 OUT CHAR8 *Str,
    [all...]
efiprot.h 712 IN OUT CHAR16 *Str
719 IN OUT CHAR16 *Str
  /src/lib/libedit/
terminal.c 98 #define Str(a) el->el_terminal.t_str[a]
249 EL_FLAGS |= (strcmp(Str(T_me), Str(T_ue)) == 0) ?
254 EL_FLAGS |= (strcmp(Str(T_me), Str(T_se)) == 0) ?
341 char **tmp, **str = &tlist[t - tstr]; local in function:terminal_alloc
345 *str = NULL;
350 tlen = *str == NULL ? 0 : strlen(*str);
356 if (*str)
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
cvcompiler.c 920 * RETURN: Str - toAdd appended to InlineComment
931 char* Str;
947 Str = UtLocalCacheCalloc (Size + 1);
949 strcpy (Str, InlineComment);
950 strcat (Str, ToAdd);
951 Str[Size +1] = 0;
952 return (Str);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h 214 Diag &operator<<(const char *Str) { return AddArg(Str); }

Completed in 51 milliseconds