Searched refs:Source (Results 1 - 25 of 33) sorted by relevance

12

/illumos-gate/usr/src/cmd/make/include/mksh/
H A Dread.h31 extern Source get_next_block_fn(register Source source);
H A Dmacro.h30 extern void expand_macro(register Source source, register String destination, wchar_t *current_string, Boolean cmd);
/illumos-gate/usr/src/uts/intel/io/acpica/resources/
H A Drsmisc.c83 void *Source; local
121 * Source is the external AML byte stream buffer,
124 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
151 ((ACPI_GET8 (Source) >> Info->Value) & 0x01));
159 ((ACPI_GET8 (Source) >> Info->Value) & 0x03));
167 ((ACPI_GET8 (Source) >> Info->Value) & 0x07));
172 ItemCount = ACPI_GET8 (Source);
191 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
200 ItemCount = ACPI_GET8 (Source);
217 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
473 void *Source = NULL; local
[all...]
H A Drsutils.c137 * Source - Pointer to the source descriptor
152 void *Source,
177 memcpy (Destination, Source, ItemCount);
190 &ACPI_CAST_PTR (UINT16, Source)[i]);
197 &ACPI_CAST_PTR (UINT32, Source)[i]);
204 &ACPI_CAST_PTR (UINT64, Source)[i]);
312 * Source - Pointer to the source string
324 char *Source)
332 for (i = 0; Source[i]; i++)
334 Destination[i] = Source[
150 AcpiRsMoveData( void *Destination, void *Source, UINT16 ItemCount, UINT8 MoveType) argument
322 AcpiRsStrcpy( char *Destination, char *Source) argument
[all...]
H A Drscreate.c300 * Source[4] member because it is added below.
317 * elements: [Address, Pin, Source, SourceIndex]
360 "(PRT[%u].Source) Need name, found Reference Class 0x%X",
370 (UINT32) ((UINT8 *) UserPrt->Source -
372 PathBuffer.Pointer = UserPrt->Source;
379 UserPrt->Length += (UINT32) strlen (UserPrt->Source) + 1;
384 strcpy (UserPrt->Source, ObjDesc->String.Pointer);
395 * If this is a number, then the Source Name is NULL, since
406 "(PRT[%u].Source) Need Ref/String/Integer, found %s",
H A Drsdumpinfo.c356 {ACPI_RSD_STRING, ACPI_PRT_OFFSET (Source[0]), "Source", NULL},
357 {ACPI_RSD_UINT32, ACPI_PRT_OFFSET (SourceIndex), "Source Index", NULL}
/illumos-gate/usr/src/cmd/acpi/common/
H A Dutnonansi.c192 char *Source)
195 if (strlen (Source) >= DestSize)
200 strcpy (Dest, Source);
208 char *Source)
211 if ((strlen (Dest) + strlen (Source)) >= DestSize)
216 strcat (Dest, Source);
224 char *Source,
230 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
237 strncat (Dest, Source, MaxTransferLength);
189 AcpiUtSafeStrcpy( char *Dest, ACPI_SIZE DestSize, char *Source) argument
205 AcpiUtSafeStrcat( char *Dest, ACPI_SIZE DestSize, char *Source) argument
221 AcpiUtSafeStrncat( char *Dest, ACPI_SIZE DestSize, char *Source, ACPI_SIZE MaxTransferLength) argument
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutnonansi.c192 char *Source)
195 if (strlen (Source) >= DestSize)
200 strcpy (Dest, Source);
208 char *Source)
211 if ((strlen (Dest) + strlen (Source)) >= DestSize)
216 strcat (Dest, Source);
224 char *Source,
230 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
237 strncat (Dest, Source, MaxTransferLength);
189 AcpiUtSafeStrcpy( char *Dest, ACPI_SIZE DestSize, char *Source) argument
205 AcpiUtSafeStrcat( char *Dest, ACPI_SIZE DestSize, char *Source) argument
221 AcpiUtSafeStrncat( char *Dest, ACPI_SIZE DestSize, char *Source, ACPI_SIZE MaxTransferLength) argument
/illumos-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsrepair2.c587 char *Source; local
627 Source = ReturnObject->String.Pointer;
628 if (*Source == '*')
630 Source++;
645 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++)
647 *Dest = (char) toupper ((int) *Source);
1045 ACPI_OPERAND_OBJECT **Source; local
1058 Source = ObjDesc->Package.Elements;
1059 Dest = Source;
[all...]
H A Dnsrepair.c511 ACPI_OPERAND_OBJECT **Source; local
548 Source = ObjDesc->Package.Elements;
549 Dest = Source;
555 if (!*Source)
561 *Dest = *Source;
565 Source++;
H A Dnsxfname.c62 ACPI_PNP_DEVICE_ID *Source,
253 * Source - Pointer to the source PNP_DEVICE_ID
265 ACPI_PNP_DEVICE_ID *Source,
271 Dest->Length = Source->Length;
275 memcpy (StringArea, Source->String, Source->Length);
276 return (StringArea + Source->Length);
263 AcpiNsCopyDeviceId( ACPI_PNP_DEVICE_ID *Dest, ACPI_PNP_DEVICE_ID *Source, char *StringArea) argument
/illumos-gate/usr/src/uts/intel/io/acpica/disassembler/
H A Ddmresrcl.c104 void *Source,
127 * PARAMETERS: Source - Pointer to the contiguous data fields
139 void *Source,
154 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
160 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
176 * PARAMETERS: Source - Pointer to the contiguous data fields
188 void *Source,
205 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i],
211 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i],
217 AcpiDmDumpInteger64 (ACPI_CAST_PTR (UINT64, Source)[
138 AcpiDmMemoryFields( void *Source, UINT8 Type, UINT32 Level) argument
187 AcpiDmAddressFields( void *Source, UINT8 Type, UINT32 Level) argument
[all...]
/illumos-gate/usr/src/cmd/make/lib/mksh/
H A Dread.cc61 Source
62 get_next_block_fn(register Source source)
/illumos-gate/usr/src/cmd/make/bin/
H A Dread.cc60 static void parse_makefile(register Name true_makefile_name, register Source source);
61 static Source push_macro_value(register Source bp, register wchar_t *buffer, int size, register Source source);
103 register Source source = ALLOC(Source);
444 * Source that is pushed on a stack. At end of string
458 parse_makefile(register Name true_makefile_name, register Source source)
492 Source extrap;
625 * Expand the value and push the Source o
[all...]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacstruct.h178 ACPI_OPERAND_OBJECT *Source; member in struct:acpi_aml_operands::__anon341
186 ACPI_OPERAND_OBJECT *Source; member in struct:acpi_aml_operands::__anon342
H A Dacutils.h883 char *Source);
889 char *Source);
895 char *Source,
H A Dacresrc.h314 void *Source,
H A Dacmacros.h284 #define ACPI_INSERT_BITS(Target, Mask, Source) \
285 Target = ((Target & (~(Mask))) | (Source & Mask))
H A Dacrestyp.h711 char Source[4]; /* pad to 64 bits so sizeof() works in all cases */ member in struct:acpi_pci_routing_table
/illumos-gate/usr/src/boot/sys/boot/i386/btx/btxldr/
H A Dbtxldr.S102 movl BA_BOOTINFO+4(%esp),%esi # Source: bootinfo
123 leal 0x4(%esp),%esi # Source
/illumos-gate/usr/src/uts/intel/io/acpica/tables/
H A Dtbfadt.c163 UINT16 Source; member in struct:acpi_fadt_pm_info
770 FadtPmInfoTable[i].Source);
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dabi_index.pl104 } elsif (/^Source of link:\s*/i) {
/illumos-gate/usr/src/grub/grub-0.97/
H A Ddepcomp44 source Source file read by `PROGRAMS ARGS'.
/illumos-gate/usr/src/uts/i86pc/io/psm/
H A Dpsm_common.c132 /* NULL Source name means index is GSIV */
133 if (*prtp->Source == 0) {
140 status = acpi_eval_lnk(dip, prtp->Source, pci_irqp,
/illumos-gate/usr/src/boot/sys/boot/i386/pmbr/
H A Dpmbr.s74 movw $main-EXEC+LOAD,%si # Source

Completed in 181 milliseconds

12