HomeSort by: relevance | last modified time | path
    Searched refs:ByteOffset (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/compiler/
asldefine.h 144 #define RsCreateBitField(Op, Name, ByteOffset, BitOffset) \
145 RsCreateResourceField (Op, Name, ByteOffset, BitOffset, 1)
147 #define RsCreateByteField(Op, Name, ByteOffset) \
148 RsCreateResourceField (Op, Name, ByteOffset, 0, 8);
150 #define RsCreateWordField(Op, Name, ByteOffset) \
151 RsCreateResourceField (Op, Name, ByteOffset, 0, 16);
153 #define RsCreateDwordField(Op, Name, ByteOffset) \
154 RsCreateResourceField (Op, Name, ByteOffset, 0, 32);
156 #define RsCreateQwordField(Op, Name, ByteOffset) \
157 RsCreateResourceField (Op, Name, ByteOffset, 0, 64)
    [all...]
dtio.c 338 Field->ByteOffset = Offset;
941 Field->Line, Field->ByteOffset, Field->NameColumn,
1062 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset);
dtutils.c 104 FieldObject->ByteOffset,
160 FieldObject->ByteOffset,
aslresource.c 446 * ByteOffset - Offset from the field start
462 UINT32 ByteOffset,
470 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
dtcompiler.h 93 UINT32 ByteOffset; /* Offset in source file for field */
dtfield.c 673 Field->ByteOffset = Offset;
aslcompiler.h 1291 UINT32 ByteOffset,
dttable2.c 1255 "%X DevicePathField Length: %X DevicePathField->Value: %s, DataOffsetField->Value: %s DataOffsetField->ByteOffset %X\n",
1257 DevicePathField->Value, DataOffsetField->Value, DataOffsetField->ByteOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalSplit.cpp 93 uint64_t ByteOffset = cast<ConstantInt>(
104 uint64_t AttachedTo = (ByteOffset == 0) ? ByteOffset : ByteOffset - 1;
111 ConstantInt::get(Int32Ty, ByteOffset - SplitBegin)),
WholeProgramDevirt.cpp 309 // tables, and the ByteOffset is the offset in bytes from the address point to
313 uint64_t ByteOffset;
331 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
335 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
350 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
354 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
563 uint64_t ByteOffset);
671 uint64_t ByteOffset);
    [all...]
LowerTypeTests.cpp 121 if (Offset < ByteOffset)
124 if ((Offset - ByteOffset) % (uint64_t(1) << AlignLog2) != 0)
127 uint64_t BitOffset = (Offset - ByteOffset) >> AlignLog2;
135 OS << "offset " << ByteOffset << " size " << BitSize << " align "
165 BSI.ByteOffset = Min;
1139 Int8Ty, CombinedGlobalAddr, ConstantInt::get(IntPtrTy, BSI.ByteOffset)),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.cpp 28 if (Entries.back().ByteOffset != DWARFBytes.size())
DebugLocStream.h 43 size_t ByteOffset;
119 .slice(Entries[EI].ByteOffset, getNumBytes(EI));
145 return DWARFBytes.size() - Entries[EI].ByteOffset;
146 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
LowerTypeTests.h 38 uint64_t ByteOffset;
WholeProgramDevirt.h 239 uint64_t ByteOffset;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/
Target.cpp 597 size_t ByteOffset = 0;
598 for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
600 X86::MOV32mi, ByteOffset,
601 WideConstant.extractBits(32, ByteOffset * 8).getZExtValue()));
602 if (Bytes - ByteOffset >= 2) {
604 X86::MOV16mi, ByteOffset,
605 WideConstant.extractBits(16, ByteOffset * 8).getZExtValue()));
606 ByteOffset += 2;
608 if (Bytes - ByteOffset >= 1
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 50 SVal byteOffset;
53 : baseRegion(nullptr), byteOffset(UnknownVal()) {}
57 : baseRegion(base), byteOffset(offset) {}
59 NonLoc getByteOffset() const { return byteOffset.castAs<NonLoc>(); }
140 // CHECK LOWER BOUND: Is byteOffset < extent begin?
179 // CHECK UPPER BOUND: Is byteOffset >= size(baseRegion)? If so,
208 SVal ByteOffset = rawOffset.getByteOffset();
209 if (isTainted(state, ByteOffset)) {
211 std::make_unique<TaintBugVisitor>(ByteOffset));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.cpp 1836 static bool isDwordAligned(uint64_t ByteOffset) {
1837 return (ByteOffset & 3) == 0;
1841 uint64_t ByteOffset) {
1843 return ByteOffset;
1845 assert(isDwordAligned(ByteOffset));
1846 return ByteOffset >> 2;
1850 int64_t ByteOffset, bool IsBuffer) {
1854 return isInt<20>(ByteOffset) ? Optional<int64_t>(ByteOffset) : None;
1857 if (!isDwordAligned(ByteOffset) && !hasSMEMByteOffset(ST)
    [all...]
AMDGPUBaseInfo.h 861 /// Convert \p ByteOffset to dwords if the subtarget uses dword SMRD immediate
863 uint64_t convertSMRDOffsetUnits(const MCSubtargetInfo &ST, uint64_t ByteOffset);
865 /// \returns The encoding that will be used for \p ByteOffset in the
870 int64_t ByteOffset, bool IsBuffer);
875 int64_t ByteOffset);
885 /// offset field. \p ByteOffset should be the offset in bytes and
887 bool isLegalSMRDImmOffset(const MCSubtargetInfo &ST, int64_t ByteOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 420 /// out of. ByteOffset is an offset into C. CurPtr is the pointer to copy
423 bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset, unsigned char *CurPtr,
425 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) &&
441 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
442 int n = ByteOffset;
446 ++ByteOffset;
454 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
458 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
462 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, DL);
469 unsigned Index = SL->getElementContainingOffset(ByteOffset);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 1222 int64_t ByteOffset = C->getSExtValue();
1223 if (isDSOffsetLegal(SDValue(), ByteOffset)) {
1232 if (isDSOffsetLegal(Sub, ByteOffset)) {
1249 Offset = CurDAG->getTargetConstant(ByteOffset, DL, MVT::i16);
1954 int64_t ByteOffset = C->getSExtValue();
1956 AMDGPU::getSMRDEncodedOffset(*Subtarget, ByteOffset, false);
1964 if (ByteOffset < 0)
1967 EncodedOffset = AMDGPU::getSMRDEncodedLiteralOffset32(*Subtarget, ByteOffset);
1973 if (!isUInt<32>(ByteOffset) && !isInt<32>(ByteOffset))
    [all...]
R600ISelLowering.cpp 567 uint32_t ByteOffset = getImplicitParameterOffset(MF, FIRST_IMPLICIT);
568 return DAG.getConstant(ByteOffset, DL, PtrVT);
816 unsigned ByteOffset = DwordOffset * 4;
821 assert(isInt<16>(ByteOffset));
824 DAG.getConstant(ByteOffset, DL, MVT::i32), // PTR
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 2262 int ByteOffset = AFI->getCalleeSavedStackSize();
2268 ByteOffset = 0;
2367 int OffsetPre = RPI.isScalable() ? ScalableByteOffset : ByteOffset;
2373 ByteOffset += StackFillDir * (RPI.isPaired() ? 2 * Scale : Scale);
2379 ByteOffset += StackFillDir * 8;
2388 !RPI.isPaired() && ByteOffset % 16 != 0) {
2389 ByteOffset += 8 * StackFillDir;
2398 int OffsetPost = RPI.isScalable() ? ScalableByteOffset : ByteOffset;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
winioctl.d 435 LARGE_INTEGER ByteOffset;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 2129 unsigned ByteOffset = 0;
2136 i + 1, SM, LangOpts, CGF.getTarget(), &StartToken, &ByteOffset);

Completed in 94 milliseconds

1 2