HomeSort by: relevance | last modified time | path
    Searched defs:String (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/
smbios.c 93 Return SMBIOS string given the string number.
97 StringNumber - String number to return. -1 is used to skip all strings and
101 Pointer to string, or pointer to next SMBIOS strcuture if StringNumber == -1
105 CHAR8 *String;
110 String = (CHAR8 *)(Smbios->Raw + Smbios->Hdr->Length);
117 return String;
121 // Skip string
123 for (; *String != 0; String++)
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
dtsubtable.c 181 char *String;
188 String = UtLocalCacheCalloc (Length);
189 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
asldebug.c 178 * Fmt - Printf format string
266 * DESCRIPTION: Emit formatted debug output for String/Pathname ops.
275 char *String;
278 String = Op->Asl.Value.String;
284 * Value.String is the raw "internal" name from the AML code, which
289 String = Op->Asl.ExternalName;
293 if (!String)
296 " ERROR: Could not find a valid String/Path pointer\n");
300 String = UtCreateEscapeSequences (String)
    [all...]
dtcompile.c 603 char *String;
640 String = UtLocalCacheCalloc (Length);
641 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
781 /* Normal case for most field types (Integer, String, etc.) */
884 char *String;
891 String = UtLocalCacheCalloc (Length);
892 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 161 * string functions.
168 * PARAMETERS: SrcString - The source string to convert
172 * DESCRIPTION: Convert a string to lowercase
180 char *String;
191 /* Walk entire string, lowercasing the letters */
193 for (String = SrcString; *String; String++)
195 *String = (char) tolower ((int) *String);
    [all...]
utobject.c 417 * PARAMETERS: StringSize - Size of string to be created. Does not
421 * RETURN: Pointer to a new String object
423 * DESCRIPTION: Create a fully initialized string object
432 char *String;
438 /* Create a new String object */
447 * Allocate the actual string buffer -- (Size + 1) for NULL terminator.
450 String = ACPI_ALLOCATE_ZEROED (StringSize + 1);
451 if (!String)
460 /* Complete string object initialization */
462 StringDesc->String.Pointer = String
    [all...]
utclib.c 367 * PARAMETERS: String - Null terminated string
371 * DESCRIPTION: Returns the length of the input string
378 const char *String)
383 /* Count the string until a null is encountered */
385 while (*String)
388 String++;
399 * PARAMETERS: String - Null terminated string
402 * RETURN: The first occurrence in the string of any of the bytes in th
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h 152 AK_String, ///< A string argument, displayed as-is.
163 Arg(const char *String) : Kind(AK_String), String(String) {}
164 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {}
172 const char *String;
  /src/sys/external/bsd/acpica/dist/common/
dmtbdump2.c 191 char *String;
271 String = ACPI_ADD_PTR (char, IortNode, NodeOffset + Length);
272 Length += strlen (String) + 1;
693 * Determine if the HID is an integer or a string.
696 * integer or a character string. If an integer, the lower
718 * Determine if the CID is an integer or a string. The format
743 /* Dump the UID based upon the UidType field (String or Integer) */
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 234 * Note: The String and Buffer object must be identical through the
249 ACPI_COMMON_BUFFER_INFO(char); /* String in AML stream or allocated string */
629 ACPI_OBJECT_STRING String;
aclocal.h 1012 char *String; /* NULL terminated string */
1013 UINT8 *Buffer; /* buffer or string */
1014 char *Name; /* NULL terminated string */
1082 #define ACPI_DASM_STRING 0x02 /* Buffer is a ASCII string */
1083 #define ACPI_DASM_UNICODE 0x03 /* Buffer is a Unicode string */
1090 #define ACPI_DASM_HID_STRING 0x0A /* String is a _HID or _CID */
1652 const char *String;
actypes.h 420 * some compilers can catch printf format string problems
570 typedef char * ACPI_STRING; /* Null terminated ASCII string */
571 typedef const char * ACPI_CONST_STRING; /* Null terminated ASCII string */
651 /* Use a union to align string s to type t */
1094 UINT32 Length; /* # of bytes in string, excluding trailing null */
1095 char *Pointer; /* points to the string value */
1096 } String;
1385 /* Length of 32-bit EISAID values when converted back to a string */
1389 /* Length of UUID (string) values */
1393 /* Length of 3-byte PCI class code values when converted back to a string */
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efidevp.h 457 CHAR8 String[1];

Completed in 69 milliseconds