Searched refs:Unpacked (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dstack_trace_compressor.h23 // For the stack trace in `Unpacked` with length `UnpackedSize`, pack it into
26 size_t pack(const uintptr_t *Unpacked, size_t UnpackedSize, uint8_t *Packed,
30 // unpacked stack trace of maximum length `UnpackedMaxSize` into `Unpacked`.
32 size_t unpack(const uint8_t *Packed, size_t PackedSize, uintptr_t *Unpacked,
H A Dstack_trace_compressor.cpp69 size_t pack(const uintptr_t *Unpacked, size_t UnpackedSize, uint8_t *Packed, argument
73 uintptr_t Diff = Unpacked[CurrentDepth];
75 Diff -= Unpacked[CurrentDepth - 1];
87 size_t unpack(const uint8_t *Packed, size_t PackedSize, uintptr_t *Unpacked, argument
99 Unpacked[CurrentDepth] = zigzagDecode(EncodedDiff);
101 Unpacked[CurrentDepth] += Unpacked[CurrentDepth - 1];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp4472 SelectionDAG &DAG, bool Unpacked) {
4476 if (Unpacked) { // From v2i32/v4i32 back to v2f16/v4f16.
4504 bool Unpacked = Subtarget->hasUnpackedD16VMem(); local
4508 if (Unpacked && LoadVT.isVector()) {
4522 if (!Unpacked) // Just adjusted the opcode.
4525 SDValue Adjusted = adjustLoadValueTypeImpl(Load, LoadVT, DL, DAG, Unpacked);
5695 bool IsTexFail, bool Unpacked, bool IsD16,
5701 int NumDataDwords = (!IsD16 || (IsD16 && Unpacked)) ?
5704 int MaskPopDwords = (!IsD16 || (IsD16 && Unpacked)) ?
5736 Data = adjustLoadValueTypeImpl(Data, ReqRetVT, DL, DAG, Unpacked);
4470 adjustLoadValueTypeImpl(SDValue Result, EVT LoadVT, const SDLoc &DL, SelectionDAG &DAG, bool Unpacked) argument
5692 constructRetValue(SelectionDAG &DAG, MachineSDNode *Result, ArrayRef<EVT> ResultTypes, bool IsTexFail, bool Unpacked, bool IsD16, int DMaskPop, int NumVDataDwords, const SDLoc &DL, LLVMContext &Context) argument
[all...]
H A DAMDGPULegalizerInfo.cpp3382 const bool Unpacked = ST.hasUnpackedD16VMem();
3417 else if (Unpacked && IsD16 && Ty.isVector())
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp5900 ArrayRef<TemplateArgument> Unpacked(Arg);
5902 Unpacked = Arg.pack_elements();
5903 for (TemplateArgument UnpackedArg : Unpacked)
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp14562 Value *Unpacked = Builder.CreateBitCast(
14568 return Builder.CreateExtractElement(Unpacked, Index);

Completed in 174 milliseconds