Home
last modified time | relevance | path

Searched refs:UC (Results 1 – 25 of 118) sorted by relevance

12345

/external/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp50 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UC) { in getLargeSlotValue() argument
51 if (UC.size() < 3) in getLargeSlotValue()
53 return UC[1].FrameOffset + (static_cast<uint32_t>(UC[2].FrameOffset) << 16); in getLargeSlotValue()
180 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() argument
181 assert(UC.size() >= getNumUsedSlots(UC[0])); in printUnwindCode()
183 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
184 << getUnwindCodeTypeName(UC[0].getUnwindOp()); in printUnwindCode()
186 switch (UC[0].getUnwindOp()) { in printUnwindCode()
188 OS << " reg=" << getUnwindRegisterName(UC[0].getOpInfo()); in printUnwindCode()
193 << ((UC[0].getOpInfo() == 0) ? UC[1].FrameOffset * 8 in printUnwindCode()
[all …]
DWin64EHDumper.h48 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
/external/llvm-project/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp49 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UC) { in getLargeSlotValue() argument
50 if (UC.size() < 3) in getLargeSlotValue()
52 return UC[1].FrameOffset + (static_cast<uint32_t>(UC[2].FrameOffset) << 16); in getLargeSlotValue()
218 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() argument
219 assert(UC.size() >= getNumUsedSlots(UC[0])); in printUnwindCode()
221 SW.startLine() << format("0x%02X: ", unsigned(UC[0].u.CodeOffset)) in printUnwindCode()
222 << getUnwindCodeTypeName(UC[0].getUnwindOp()); in printUnwindCode()
224 switch (UC[0].getUnwindOp()) { in printUnwindCode()
226 OS << " reg=" << getUnwindRegisterName(UC[0].getOpInfo()); in printUnwindCode()
231 << ((UC[0].getOpInfo() == 0) ? UC[1].FrameOffset * 8 in printUnwindCode()
[all …]
DWin64EHDumper.h47 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
Dutils.h105 #define UCONTEXT_NIA(UC) (UC)->uc_mcontext.gp_regs[PT_NIP] argument
106 #define UCONTEXT_MSR(UC) (UC)->uc_mcontext.gp_regs[PT_MSR] argument
108 #define UCONTEXT_NIA(UC) (UC)->uc_mcontext.uc_regs->gregs[PT_NIP] argument
109 #define UCONTEXT_MSR(UC) (UC)->uc_mcontext.uc_regs->gregs[PT_MSR] argument
/external/openssh/openbsd-compat/
Dinet_ntoa.c53 #define UC(b) (((int)b)&0xff) in inet_ntoa() macro
55 "%u.%u.%u.%u", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3])); in inet_ntoa()
/external/llvm-project/llvm/test/Transforms/InstCombine/
Dintptr8.ll39 br i1 %tobool.i3, label %"??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit6", label %if.then.i4
44 to label %"??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit6" unwind label %terminate.i5
51 "??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit6": ; preds = %try.cont, %if.then.i4
58 br i1 %tobool.i, label %"??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit", label %if.then.i
63 to label %"??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit" unwind label %terminate.i
70 "??1?$intrusive_ptr@UC@@@@QEAA@XZ.exit": ; preds = %ehcleanup, %if.then.i
/external/linux-kselftest/tools/testing/selftests/powerpc/copyloops/
Dexc_validate.c14 #define UCONTEXT_NIA(UC) (UC)->uc_mcontext.gp_regs[PT_NIP] argument
16 #define UCONTEXT_NIA(UC) (UC)->uc_mcontext.uc_regs->gregs[PT_NIP] argument
/external/llvm/utils/TableGen/
DSequenceToOffsetTable.h133 unsigned char UC(C); in printChar()
134 if (isalnum(UC) || ispunct(UC)) { in printChar()
140 OS << unsigned(UC); in printChar()
/external/clang/test/SemaCUDA/
Ddevice-var-init.cu56 __device__ UC d_uc;
58 __shared__ UC s_uc;
60 __constant__ UC c_uc;
204 static __shared__ UC s_uc; in df_sema()
/external/llvm-project/llvm/utils/TableGen/
DSequenceToOffsetTable.h72 unsigned char UC(C); in printChar()
73 if (isalnum(UC) || ispunct(UC)) { in printChar()
79 OS << unsigned(UC); in printChar()
/external/llvm-project/clang/test/SemaCUDA/
Ddevice-var-init.cu62 __device__ UC d_uc;
64 __shared__ UC s_uc;
66 __constant__ UC c_uc;
271 static __device__ UC d_uc; in df_sema()
273 static __shared__ UC s_uc; in df_sema()
275 static __constant__ UC c_uc; in df_sema()
/external/clang/test/SemaCXX/
Dattr-unavailable.cpp74 void untemplated(UnavailableClass &UC) { // expected-error {{'UnavailableClass' is unavailable}} in untemplated() argument
75 templated(UC); in untemplated()
77 void untemplated_marked(UnavailableClass &UC) __attribute__((unavailable)) { in untemplated_marked() argument
78 templated(UC); in untemplated_marked()
/external/llvm-project/clang/test/SemaCXX/
Dattr-unavailable.cpp73 void untemplated(UnavailableClass &UC) { // expected-error {{'UnavailableClass' is unavailable}} in untemplated() argument
74 templated(UC); in untemplated()
76 void untemplated_marked(UnavailableClass &UC) __attribute__((unavailable)) { in untemplated_marked() argument
77 templated(UC); in untemplated_marked()
/external/exoplayer/tree/testdata/src/test/assets/ts/
Dsample_eac3.ts40 …�ET:�����������������������@�@���.8H��@3E��3E�ê�UC��UC��UC��UC��UC��UC�Gl�UC��UC$��…
/external/llvm-project/clang/test/CodeGenCUDA/Inputs/
Dcuda-initializers.h34 struct UC { struct
36 __device__ UC(); argument
/external/clang/test/SemaCUDA/Inputs/
Dcuda-initializers.h34 struct UC { struct
36 __device__ UC(); argument
/external/clang/test/CodeGenCUDA/Inputs/
Dcuda-initializers.h34 struct UC { struct
36 __device__ UC(); argument
/external/llvm-project/clang/test/SemaCUDA/Inputs/
Dcuda-initializers.h34 struct UC { struct
36 __device__ UC(); argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringExtras.h106 unsigned char UC = static_cast<unsigned char>(C); in isPrint() local
107 return (0x20 <= UC) && (UC <= 0x7E); in isPrint()
/external/llvm-project/llvm/include/llvm/ADT/
DStringExtras.h118 unsigned char UC = static_cast<unsigned char>(C); in isPrint() local
119 return (0x20 <= UC) && (UC <= 0x7E); in isPrint()
/external/python/asn1crypto/tests/fixtures/lets_encrypt/
Disrgrootx1.pem12 B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC
/external/llvm-project/llvm/lib/BinaryFormat/
DXCOFF.cpp36 SMC_CASE(UC) in getMappingClassString()
/external/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/
Dtag-types.cpp16 unsigned char UC; member
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerTracePC.h77 void SetUseCounters(bool UC) { UseCounters = UC; } in SetUseCounters() argument

12345