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

  /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/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...]
  /src/sys/external/bsd/acpica/dist/compiler/
dtcompiler.h 93 UINT32 ByteOffset; /* Offset in source file for field */
  /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/CodeGen/AsmPrinter/
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/lib/MC/
MCAsmStreamer.cpp 1228 unsigned ByteOffset =
1230 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 2129 unsigned ByteOffset = 0;
2136 i + 1, SM, LangOpts, CGF.getTarget(), &StartToken, &ByteOffset);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
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
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...]
  /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/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 7074 // ByteOffset is the offset of the byte in the value produced by the load.
7076 unsigned ByteOffset = 0;
7080 static ByteProvider getMemory(LoadSDNode *Load, unsigned ByteOffset) {
7081 return ByteProvider(Load, ByteOffset);
7090 return Other.Load == Load && Other.ByteOffset == ByteOffset;
7094 ByteProvider(LoadSDNode *Load, unsigned ByteOffset)
7095 : Load(Load), ByteOffset(ByteOffset) {}
7480 ? bigEndianByteAt(LoadByteWidth, P.ByteOffset)
    [all...]

Completed in 55 milliseconds