Searched refs:Pointer (Results 76 - 100 of 196) sorted by relevance

12345678

/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Daslnamesp.c311 ObjDesc->String.Pointer);
539 ACPI_CAST_PTR (char, TargetPath.Pointer));
540 ACPI_FREE (TargetPath.Pointer);
H A Dasloffset.c482 strcat (AslGbl_MsgBuffer, &((char *) TargetPath.Pointer)[1]);
484 ACPI_FREE (TargetPath.Pointer);
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbmethod.c601 ParamObjects.Pointer = NULL;
614 ParamObjects.Pointer = Params;
619 ReturnObj.Pointer = NULL;
H A Ddbobject.c283 ObjDesc->String.Length, ObjDesc->String.Pointer);
300 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]);
/freebsd-12-stable/sys/contrib/dev/acpica/components/executer/
H A Dexserial.c375 ACPI_CAST_PTR (UINT64, BufferDesc->Buffer.Pointer), Function);
489 Buffer = BufferDesc->Buffer.Pointer;
492 memcpy (Buffer, SourceDesc->Buffer.Pointer, DataLength);
/freebsd-12-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbxfload.c289 * .Pointer field is not validated until after call to AcpiTbValidateTable.
291 AcpiGbl_DSDT = Table->Pointer;
353 Table->Signature.Ascii, Table->Pointer->OemTableId));
359 Table->Signature.Ascii, Table->Pointer->OemTableId));
446 * PARAMETERS: Table - Pointer to a buffer containing the ACPI
448 * TableIdx - Pointer to a UINT32 for storing the table
/freebsd-12-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutids.c233 strcpy (Hid->String, ObjDesc->String.Pointer);
321 strcpy (Uid->String, ObjDesc->String.Pointer);
469 strcpy (NextIdString, CidObjects[i]->String.Pointer);
H A Dutosi.c621 InterfaceInfo = AcpiUtGetInterface (StringDesc->String.Pointer);
649 StringDesc->String.Pointer, (UINT32) ReturnValue))
657 StringDesc->String.Pointer, ReturnValue == 0 ? "not " : ""));
/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h70 // PointeeOf<Pointer>::type is the type of a value pointed to by a
71 // Pointer, which can be either a smart pointer or a raw pointer. The
72 // following default implementation is for the case where Pointer is a
74 template <typename Pointer>
78 typedef typename Pointer::element_type type;
87 template <typename Pointer>
88 inline const typename Pointer::element_type* GetRawPointer(const Pointer& p) {
/freebsd-12-stable/sys/dev/acpi_support/
H A Dacpi_toshiba.c432 args.Pointer = obj;
433 results.Pointer = NULL;
437 res = (ACPI_OBJECT *)results.Pointer;
462 if (results.Pointer != NULL)
463 AcpiOsFree(results.Pointer);
H A Dacpi_asus_wmi.c544 if (buf && buf->Pointer) {
545 AcpiOsFree(buf->Pointer);
561 obj = (ACPI_OBJECT*) response.Pointer;
610 obj = out.Pointer;
H A Dacpi_hp.c856 if (buf && buf->Pointer) {
857 AcpiOsFree(buf->Pointer);
871 obj = (ACPI_OBJECT*) response.Pointer;
873 switch (*((UINT8 *) obj->Buffer.Pointer)) {
880 *((UINT8 *) obj->Buffer.Pointer));
905 obj = out.Pointer;
910 result = (UINT32*) obj->Buffer.Pointer;
929 strlcpy(dst, obj->String.Pointer, length);
974 obj = out.Pointer;
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsdump.c481 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]);
495 AcpiUtPrintString (ObjDesc->String.Pointer, 80);
622 AcpiOsPrintf (" S:%p-%X\n", ObjDesc->String.Pointer,
628 AcpiOsPrintf (" B:%p-%X\n", ObjDesc->Buffer.Pointer,
683 "(Pointer to ACPI Object type %.2X [UNKNOWN])\n",
691 "(Pointer to ACPI Object type %.2X [%s])\n",
722 ObjDesc = (void *) ObjDesc->String.Pointer;
H A Dnsrepair2.c302 * ReturnObjectPtr - Pointer to the object returned from the
343 * RETURN: Pointer to entry in repair table. NULL indicates not found.
378 * ReturnObjectPtr - Pointer to the object returned from the
409 * ReturnObjectPtr - Pointer to the object returned from the
470 ByteBuffer = ReturnObject->Buffer.Pointer;
472 BufferObject->Buffer.Pointer);
506 * ReturnObjectPtr - Pointer to the object returned from the
579 * ReturnObjectPtr - Pointer to the object returned from the
674 * ReturnObjectPtr - Pointer to the object returned from the
731 Source = ReturnObject->String.Pointer;
[all...]
/freebsd-12-stable/sys/dev/acpica/
H A Dacpi_thermal.c394 if (sc->tz_zone.al[i].Pointer != NULL)
395 AcpiOsFree(sc->tz_zone.al[i].Pointer);
396 if (sc->tz_zone.psl.Pointer != NULL)
397 AcpiOsFree(sc->tz_zone.psl.Pointer);
413 sc->tz_zone.al[i].Pointer = NULL;
415 obj = (ACPI_OBJECT *)sc->tz_zone.al[i].Pointer;
428 sc->tz_zone.psl.Pointer = NULL;
565 if (sc->tz_zone.al[i].Pointer != NULL) {
567 (ACPI_OBJECT *)sc->tz_zone.al[i].Pointer,
580 (ACPI_OBJECT *)sc->tz_zone.al[i].Pointer,
[all...]
H A Dacpi.c2397 buf->Pointer = (void *)(buf + 1);
2410 args.Pointer = &arg1;
2432 buf.Pointer = &param;
2451 if ((buf.Pointer = AcpiOsAllocate(buf.Length)) == NULL) {
2457 AcpiOsFree(buf.Pointer);
2470 p = (ACPI_OBJECT *)bufp->Pointer;
2481 val = p->Buffer.Pointer;
2521 rp = (ACPI_RESOURCE *)buf->Pointer;
2525 if (rp > (ACPI_RESOURCE *)((u_int8_t *)buf->Pointer + buf->Length))
2556 if (buf->Pointer
[all...]
H A Dacpi_pcib.c77 if (prt == NULL || prt->Pointer == NULL)
81 prtptr = prt->Pointer;
H A Dacpi_video.c942 dod_buf.Pointer = NULL;
951 res = (ACPI_OBJECT *)dod_buf.Pointer;
972 if (dod_buf.Pointer != NULL)
973 AcpiOsFree(dod_buf.Pointer);
986 bcl_buf.Pointer = NULL;
994 res = (ACPI_OBJECT *)bcl_buf.Pointer;
1017 if (bcl_buf.Pointer != NULL)
1018 AcpiOsFree(bcl_buf.Pointer);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp973 /// Compute the memdep value for BB with Pointer/PointeeSize using either
1094 Instruction *QueryInst, const PHITransAddr &Pointer,
1098 // Look up the cached info for Pointer.
1099 ValueIsLoadPair CacheKey(Pointer.getAddr(), isLoad);
1145 QueryInst, Pointer, Loc.getWithNewSize(CacheInfo->Size), isLoad,
1164 QueryInst, Pointer, Loc.getWithoutAATags(), isLoad, StartBB, Result,
1183 if (VI == Visited.end() || VI->second == Pointer.getAddr())
1193 Value *Addr = Pointer.getAddr();
1257 // Analyze the dependency of *Pointer in FromBB. See if we already have
1261 // Get the dependency info for Pointer i
1093 getNonLocalPointerDepFromBB( Instruction *QueryInst, const PHITransAddr &Pointer, const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock *, Value *> &Visited, bool SkipFirstBlock) argument
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/components/resources/
H A Drsutils.c244 * PARAMETERS: Destination - Pointer to the destination descriptor
245 * Source - Pointer to the source descriptor
329 * Aml - Pointer to the raw AML descriptor
386 * Aml - Pointer to the raw AML descriptor
419 * PARAMETERS: Destination - Pointer to the destination string
420 * Source - Pointer to the source string
461 * Aml - Pointer to the raw AML descriptor
551 * PARAMETERS: Aml - Pointer to the raw AML descriptor
615 * RetBuffer - Pointer to a buffer structure for the
669 * RetBuffer - Pointer t
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DEvalEmitter.h116 bool ExecuteCall(Function *F, Pointer &&This, const SourceInfo &Info);
H A DPrimType.h21 #include "Pointer.h"
51 template <> struct PrimConv<PT_Ptr> { using T = Pointer; };
H A DProgram.cpp55 const Pointer Ptr(G->block());
57 Pointer Field = Ptr.atIndex(I).narrow();
82 Pointer Program::getPtrGlobal(unsigned Idx) {
84 return Pointer(Globals[Idx]->block());
/freebsd-12-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwesleep.c190 ArgList.Pointer = &Arg;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h222 const Value *Pointer = local
224 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {

Completed in 231 milliseconds

12345678