Home
last modified time | relevance | path

Searched refs:IsBigEndian (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DWholeProgramDevirt.h123 VirtualCallTarget(const TypeMemberInfo *TM, bool IsBigEndian) in VirtualCallTarget()
124 : Fn(nullptr), TM(TM), IsBigEndian(IsBigEndian), WasDevirt(false) {} in VirtualCallTarget()
138 bool IsBigEndian; member
185 if (IsBigEndian) in setBeforeBytes()
194 if (IsBigEndian) in setAfterBytes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/Disassembler/
DMipsDisassembler.cpp42 bool IsBigEndian; member in __anon2817e7dc0111::MipsDisassembler
45 MipsDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx, bool IsBigEndian) in MipsDisassembler() argument
48 IsBigEndian(IsBigEndian) {} in MipsDisassembler()
1167 bool IsBigEndian) { in readInstruction16() argument
1174 if (IsBigEndian) { in readInstruction16()
1187 bool IsBigEndian, bool IsMicroMips) { in readInstruction32() argument
1202 if (IsBigEndian) { in readInstruction32()
1228 Result = readInstruction16(Bytes, Address, Size, Insn, IsBigEndian); in getInstruction()
1255 Result = readInstruction32(Bytes, Address, Size, Insn, IsBigEndian, true); in getInstruction()
1302 Result = readInstruction32(Bytes, Address, Size, Insn, IsBigEndian, false); in getInstruction()
/third_party/node/src/
Dstring_bytes.cc355 if (IsBigEndian()) in Write()
728 if (IsBigEndian()) { in Encode()
777 if (IsBigEndian()) { in Encode()
Dnode_i18n.cc112 if (sizeof(T) > 1 && IsBigEndian()) { in ToBufferEndian()
129 if (IsBigEndian()) { in CopySourceBuffer()
Dnode_os.cc393 Boolean::New(env->isolate(), IsBigEndian())).Check(); in Initialize()
Dnode_buffer.cc614 if (IsBigEndian()) in Fill()
880 if (IsBigEndian()) { in IndexOfString()
Dutil.h714 inline bool IsBigEndian() {
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/src/
DBlitResolveStencilNoExport.comp118 #if IsBigEndian
DConvertVertex.comp39 // * IsBigEndian
190 #if IsBigEndian
DOverlayDraw.comp109 #if IsBigEndian
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/src/
DBlitResolveStencilNoExport.comp115 #if IsBigEndian
DConvertVertex.comp41 // * IsBigEndian
192 #if IsBigEndian
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrVSX.td149 def IsBigEndian : Predicate<"!PPCSubTarget->isLittleEndian()">;
993 let Predicates = [IsBigEndian] in {
1120 let Predicates = [IsBigEndian, HasVSX, HasOnlySwappingMemOps] in {
1244 let Predicates = [IsBigEndian] in {
1253 } // IsBigEndian
1599 let Predicates = [IsBigEndian] in {
2044 let Predicates = [IsBigEndian, HasP8Vector] in {
2057 } // IsBigEndian, HasP8Vector
2060 let Predicates = [IsBigEndian, HasVSX] in
2064 let Predicates = [IsBigEndian, HasDirectMove] in {
[all …]
/third_party/mesa3d/src/imgui/
Dimgui_memory_editor.h557 bool IsBigEndian() const in IsBigEndian() function
601 fp = IsBigEndian() ? EndianessCopyBigEndian : EndianessCopyLittleEndian; in EndianessCopy()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp1885 bool IsBigEndian = IC.getDataLayout().isBigEndian(); in optimizeVectorResizeWithIntegerBitCasts() local
1912 if (IsBigEndian) in optimizeVectorResizeWithIntegerBitCasts()
1927 if (IsBigEndian) in optimizeVectorResizeWithIntegerBitCasts()
DInstCombineVectorOps.cpp164 bool IsBigEndian) { in foldBitcastExtElt() argument
212 if (IsBigEndian) in foldBitcastExtElt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6690 Optional<bool> IsBigEndian = isBigEndian(ByteOffsets, FirstOffset); in MatchStoreCombine() local
6691 if (!IsBigEndian.hasValue()) in MatchStoreCombine()
6698 bool NeedsBswap = DAG.getDataLayout().isBigEndian() != *IsBigEndian; in MatchStoreCombine()
6866 Optional<bool> IsBigEndian = isBigEndian( in MatchLoadCombine() local
6868 if (!IsBigEndian.hasValue()) in MatchLoadCombine()
6884 bool NeedsBswap = IsBigEndianTarget != *IsBigEndian; in MatchLoadCombine()
14617 bool IsBigEndian = DAG->getDataLayout().isBigEndian(); in getOffsetFromBase() local
14628 if (IsBigEndian) in getOffsetFromBase()
18877 bool IsBigEndian = DAG.getDataLayout().isBigEndian(); in combineShuffleToVectorExtend() local
18880 if (!VT.isInteger() || IsBigEndian) in combineShuffleToVectorExtend()
[all …]
DSelectionDAG.cpp9510 bool IsBigEndian) const { in isConstantSplat()
9531 unsigned i = IsBigEndian ? NumOps - 1 - j : j; in isConstantSplat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DWholeProgramDevirt.cpp250 IsBigEndian(Fn->getParent()->getDataLayout().isBigEndian()), WasDevirt(false) {} in VirtualCallTarget()