Home
last modified time | relevance | path

Searched refs:Source (Results 1 – 25 of 575) sorted by relevance

12345678910>>...23

/f-stack/freebsd/contrib/dev/acpica/components/resources/
H A Drsmisc.c191 void *Source; in AcpiRsConvertAmlToResource() local
280 ItemCount = ACPI_GET8 (Source); in AcpiRsConvertAmlToResource()
308 ItemCount = ACPI_GET8 (Source); in AcpiRsConvertAmlToResource()
333 ACPI_GET16 (Source); in AcpiRsConvertAmlToResource()
388 Source = ACPI_ADD_PTR (void, Aml, ACPI_GET16 (Source)); in AcpiRsConvertAmlToResource()
402 Source = ACPI_ADD_PTR (void, Aml, ACPI_GET16 (Source)); in AcpiRsConvertAmlToResource()
430 Source = ACPI_ADD_PTR ( in AcpiRsConvertAmlToResource()
749 Source = * (UINT16 **) Source; in AcpiRsConvertResourceToAml()
759 Source = * (UINT8 **) Source; in AcpiRsConvertResourceToAml()
767 Source = * (UINT8 **) Source; in AcpiRsConvertResourceToAml()
[all …]
H A Drsutils.c260 void *Source, in AcpiRsMoveData() argument
285 memcpy (Destination, Source, ItemCount); in AcpiRsMoveData()
298 &ACPI_CAST_PTR (UINT16, Source)[i]); in AcpiRsMoveData()
305 &ACPI_CAST_PTR (UINT32, Source)[i]); in AcpiRsMoveData()
312 &ACPI_CAST_PTR (UINT64, Source)[i]); in AcpiRsMoveData()
432 char *Source) in AcpiRsStrcpy() argument
440 for (i = 0; Source[i]; i++) in AcpiRsStrcpy()
442 Destination[i] = Source[i]; in AcpiRsStrcpy()
H A Drscreate.c478 (UINT32) ((UINT8 *) UserPrt->Source - in AcpiRsCreatePciRoutingTable()
480 PathBuffer.Pointer = UserPrt->Source; in AcpiRsCreatePciRoutingTable()
491 UserPrt->Length += (UINT32) strlen (UserPrt->Source) + 1; in AcpiRsCreatePciRoutingTable()
496 strcpy (UserPrt->Source, ObjDesc->String.Pointer); in AcpiRsCreatePciRoutingTable()
/f-stack/freebsd/contrib/dev/acpica/components/utilities/
H A Dutnonansi.c299 char *Source) in AcpiUtSafeStrcpy() argument
302 if (strlen (Source) >= DestSize) in AcpiUtSafeStrcpy()
307 strcpy (Dest, Source); in AcpiUtSafeStrcpy()
315 char *Source) in AcpiUtSafeStrcat() argument
318 if ((strlen (Dest) + strlen (Source)) >= DestSize) in AcpiUtSafeStrcat()
323 strcat (Dest, Source); in AcpiUtSafeStrcat()
331 char *Source, in AcpiUtSafeStrncat() argument
337 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source)); in AcpiUtSafeStrncat()
344 strncat (Dest, Source, MaxTransferLength); in AcpiUtSafeStrncat()
351 char *Source, in AcpiUtSafeStrncpy() argument
[all …]
/f-stack/freebsd/contrib/dev/acpica/components/namespace/
H A Dnsrepair2.c694 char *Source; in AcpiNsRepair_HID() local
725 Source = ReturnObject->String.Pointer; in AcpiNsRepair_HID()
726 if (*Source == '*') in AcpiNsRepair_HID()
728 Source++; in AcpiNsRepair_HID()
743 for (Dest = ReturnObject->String.Pointer; *Source; Dest++, Source++) in AcpiNsRepair_HID()
1142 ACPI_OPERAND_OBJECT **Source; in AcpiNsRemoveElement() local
1155 Source = ObjDesc->Package.Elements; in AcpiNsRemoveElement()
1156 Dest = Source; in AcpiNsRemoveElement()
1165 AcpiUtRemoveReference (*Source); in AcpiNsRemoveElement()
1169 *Dest = *Source; in AcpiNsRemoveElement()
[all …]
H A Dnsrepair.c607 ACPI_OPERAND_OBJECT **Source; in AcpiNsRemoveNullElements() local
644 Source = ObjDesc->Package.Elements; in AcpiNsRemoveNullElements()
645 Dest = Source; in AcpiNsRemoveNullElements()
651 if (!*Source) in AcpiNsRemoveNullElements()
657 *Dest = *Source; in AcpiNsRemoveNullElements()
661 Source++; in AcpiNsRemoveNullElements()
H A Dnsxfname.c170 ACPI_PNP_DEVICE_ID *Source,
351 ACPI_PNP_DEVICE_ID *Source, in ACPI_EXPORT_SYMBOL()
357 Dest->Length = Source->Length; in ACPI_EXPORT_SYMBOL()
361 memcpy (StringArea, Source->String, Source->Length); in ACPI_EXPORT_SYMBOL()
362 return (StringArea + Source->Length); in ACPI_EXPORT_SYMBOL()
/f-stack/freebsd/contrib/dev/acpica/compiler/
H A Daslparseop.c565 ACPI_PARSE_OBJECT *Source) in TrCreateAssignmentOp() argument
575 Source->Asl.LineNumber, Source->Asl.EndLine, in TrCreateAssignmentOp()
576 UtGetOpName (Source->Asl.ParseOpcode), in TrCreateAssignmentOp()
581 switch (Source->Asl.ParseOpcode) in TrCreateAssignmentOp()
612 SourceOp1 = Source->Asl.Child; in TrCreateAssignmentOp()
617 if (Source->Asl.ParseOpcode == PARSEOP_NOT) in TrCreateAssignmentOp()
624 if (Source->Asl.ParseOpcode == PARSEOP_DIVIDE) in TrCreateAssignmentOp()
643 Target->Asl.Parent = Source; in TrCreateAssignmentOp()
644 return (Source); in TrCreateAssignmentOp()
650 TrLinkOpChildren (Operator, 2, Source, Target); in TrCreateAssignmentOp()
/f-stack/freebsd/contrib/dev/acpica/components/disassembler/
H A Ddmresrcl.c212 void *Source,
247 void *Source, in AcpiDmMemoryFields() argument
262 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i], in AcpiDmMemoryFields()
268 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i], in AcpiDmMemoryFields()
296 void *Source, in AcpiDmAddressFields() argument
313 AcpiDmDumpInteger16 (ACPI_CAST_PTR (UINT16, Source)[i], in AcpiDmAddressFields()
319 AcpiDmDumpInteger32 (ACPI_CAST_PTR (UINT32, Source)[i], in AcpiDmAddressFields()
325 AcpiDmDumpInteger64 (ACPI_CAST_PTR (UINT64, Source)[i], in AcpiDmAddressFields()
/f-stack/freebsd/contrib/device-tree/Bindings/dma/
H A Dst,stm32-mdma.yaml22 -bit 0-1: Source increment mode
23 0x0: Source address pointer is fixed
24 0x2: Source address pointer is incremented after each data transfer
25 0x3: Source address pointer is decremented after each data transfer
30 -bit 8-9: Source increment offset size
/f-stack/freebsd/contrib/edk2/Include/Library/
H A DBaseLib.h242 IN CONST CHAR16 *Source
279 IN CONST CHAR16 *Source,
317 IN CONST CHAR16 *Source
357 IN CONST CHAR16 *Source,
650 IN CONST CHAR8 *Source
684 IN CONST CHAR8 *Source,
719 IN CONST CHAR8 *Source
756 IN CONST CHAR8 *Source,
996 IN CONST CHAR16 *Source
2069 IN CONST CHAR8 *Source
[all …]
/f-stack/freebsd/contrib/openzfs/module/icp/asm-x86_64/modes/
H A DTHIRDPARTYLICENSE.openssl27 "Source" form shall mean the preferred form for making modifications,
32 transformation or translation of a Source form, including but
36 "Work" shall mean the work of authorship, whether in Source or
41 "Derivative Works" shall mean any work, whether in Source or Object
72 Work and such Derivative Works in Source or Object form.
92 modifications, and in Source or Object form, provided that You
101 (c) You must retain, in the Source form of any Derivative Works
103 attribution notices from the Source form of the Work,
113 as part of the Derivative Works; within the Source form or
/f-stack/freebsd/x86/acpica/
H A Dmadt.c72 static enum intr_polarity interrupt_polarity(UINT16 IntiFlags, UINT8 Source);
73 static enum intr_trigger interrupt_trigger(UINT16 IntiFlags, UINT8 Source);
445 interrupt_polarity(UINT16 IntiFlags, UINT8 Source) in interrupt_polarity() argument
453 if (Source == AcpiGbl_FADT.SciInterrupt) in interrupt_polarity()
465 interrupt_trigger(UINT16 IntiFlags, UINT8 Source) in interrupt_trigger() argument
473 if (Source == AcpiGbl_FADT.SciInterrupt) in interrupt_trigger()
/f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/
H A Driscv,cpu-intc.txt31 - Source 1 is the supervisor software interrupt, which can be sent by an SBI
33 - Source 5 is the supervisor timer interrupt, which can be configured by
35 - Source 9 is the supervisor external interrupt, which chains to all other
/f-stack/freebsd/contrib/openzfs/contrib/pyzfs/
H A DLICENSE27 "Source" form shall mean the preferred form for making modifications,
32 transformation or translation of a Source form, including but
36 "Work" shall mean the work of authorship, whether in Source or
41 "Derivative Works" shall mean any work, whether in Source or Object
72 Work and such Derivative Works in Source or Object form.
92 modifications, and in Source or Object form, provided that You
101 (c) You must retain, in the Source form of any Derivative Works
103 attribution notices from the Source form of the Work,
113 as part of the Derivative Works; within the Source form or
/f-stack/freebsd/contrib/device-tree/src/powerpc/fsl/
H A Dgef_sbc610.dts3 * GE SBC610 Device Tree Source
7 * Based on: SBS CM6 Device Tree Source
9 * And: mpc8641_hpcn.dts (MPC8641 HPCN Device Tree Source)
H A Dgef_ppc9a.dts3 * GE PPC9A Device Tree Source
7 * Based on: SBS CM6 Device Tree Source
9 * And: mpc8641_hpcn.dts (MPC8641 HPCN Device Tree Source)
H A Dgef_sbc310.dts3 * GE SBC310 Device Tree Source
7 * Based on: SBS CM6 Device Tree Source
9 * And: mpc8641_hpcn.dts (MPC8641 HPCN Device Tree Source)
H A Dppa8548.dts3 * PPA8548 Device Tree Source (36-bit address map)
7 * MPC8548 CDS Device Tree Source (36-bit address map)
H A Dp1010rdb-pa.dts3 * P1010 RDB Device Tree Source
H A Dp1010rdb-pb.dts3 * P1010 RDB Device Tree Source
/f-stack/freebsd/contrib/openzfs/module/icp/algs/skein/
H A DTHIRDPARTYLICENSE2 Source code author: Doug Whiting, 2008.
/f-stack/freebsd/contrib/dev/acpica/include/
H A Dacstruct.h289 ACPI_OPERAND_OBJECT *Source; member
297 ACPI_OPERAND_OBJECT *Source; member
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Domap443x-clocks.dtsi3 * Device Tree Source for OMAP4 clock data
H A Duniphier-ref-daughter.dtsi3 // Device Tree Source for UniPhier Reference Daughter Board

12345678910>>...23