Home
last modified time | relevance | path

Searched refs:byteSwap (Results 1 – 25 of 39) sorted by relevance

12

/external/libvpx/libvpx/
Dmd5_utils.c28 static void byteSwap(UWORD32 *buf, unsigned words) { in byteSwap() function
82 byteSwap(ctx->in, 16); in MD5Update()
90 byteSwap(ctx->in, 16); in MD5Update()
116 byteSwap(ctx->in, 16); in MD5Final()
123 byteSwap(ctx->in, 14); in MD5Final()
130 byteSwap(ctx->buf, 4); in MD5Final()
/external/libaom/libaom/common/
Dmd5_utils.c27 static void byteSwap(UWORD32 *buf, unsigned words) { in byteSwap() function
81 byteSwap(ctx->in, 16); in MD5Update()
89 byteSwap(ctx->in, 16); in MD5Update()
115 byteSwap(ctx->in, 16); in MD5Final()
122 byteSwap(ctx->in, 14); in MD5Final()
129 byteSwap(ctx->buf, 4); in MD5Final()
/external/llvm-project/llvm/include/llvm/Support/
DKnownBits.h335 KnownBits byteSwap() { in byteSwap() function
336 return KnownBits(Zero.byteSwap(), One.byteSwap()); in byteSwap()
/external/flac/src/libFLAC/
Dmd5.c140 static void byteSwap(FLAC__uint32 *buf, uint32_t words) in byteSwap() function
171 #define byteSwap(buf, words) macro
255 byteSwap(ctx->in, 14); in FLAC__MD5Final()
262 byteSwap(ctx->buf, 4); in FLAC__MD5Final()
/external/llvm/include/llvm/ADT/
DAPInt.h1457 APInt LLVM_ATTRIBUTE_UNUSED_RESULT byteSwap() const;
1804 inline APInt byteSwap(const APInt &APIVal) { return APIVal.byteSwap(); } in byteSwap() function
/external/llvm-project/llvm/unittests/ADT/
DAPIntTest.cpp1819 TEST(APIntTest, byteSwap) { in TEST() argument
1820 EXPECT_EQ(0x00000000, APInt(16, 0x0000).byteSwap()); in TEST()
1821 EXPECT_EQ(0x0000010f, APInt(16, 0x0f01).byteSwap()); in TEST()
1822 EXPECT_EQ(0x00ff8000, APInt(24, 0x0080ff).byteSwap()); in TEST()
1823 EXPECT_EQ(0x117700ff, APInt(32, 0xff007711).byteSwap()); in TEST()
1824 EXPECT_EQ(0x228811aaffULL, APInt(40, 0xffaa118822ULL).byteSwap()); in TEST()
1825 EXPECT_EQ(0x050403020100ULL, APInt(48, 0x000102030405ULL).byteSwap()); in TEST()
1826 EXPECT_EQ(0xff050403020100ULL, APInt(56, 0x000102030405ffULL).byteSwap()); in TEST()
1827 EXPECT_EQ(0xff050403020100aaULL, APInt(64, 0xaa000102030405ffULL).byteSwap()); in TEST()
1834 EXPECT_EQ(Y, X.byteSwap()); in TEST()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1433 APInt byteSwap() const;
1831 inline APInt byteSwap(const APInt &APIVal) { return APIVal.byteSwap(); } in byteSwap() function
/external/llvm/lib/Analysis/
DDemandedBits.cpp111 AB = AOut.byteSwap(); in determineLiveOperandBits()
DValueTracking.cpp1297 KnownZero |= KnownZero2.byteSwap(); in computeKnownBitsFromOperator()
1298 KnownOne |= KnownOne2.byteSwap(); in computeKnownBitsFromOperator()
DConstantFolding.cpp1644 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); in ConstantFoldScalarCall()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDemandedBits.cpp124 AB = AOut.byteSwap(); in determineLiveOperandBits()
DConstantFolding.cpp1969 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); in ConstantFoldScalarCall1()
DValueTracking.cpp1567 Known.Zero |= Known2.Zero.byteSwap(); in computeKnownBitsFromOperator()
1568 Known.One |= Known2.One.byteSwap(); in computeKnownBitsFromOperator()
/external/llvm-project/llvm/lib/Analysis/
DDemandedBits.cpp124 AB = AOut.byteSwap(); in determineLiveOperandBits()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfExpression.cpp236 API = API.byteSwap(); in addConstantFP()
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DGISelKnownBits.cpp449 Known.byteSwap(); in computeKnownBitsImpl()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1046 Method byteSwap = instanceSwapMethod(byte.class, "byteValue"); in testReadAndWriteInstanceFields() local
1048 assertEquals((byte) 0x35, byteSwap.invoke(null, instance, (byte) 0x64)); in testReadAndWriteInstanceFields()
1130 Method byteSwap = staticSwapMethod(byte.class, "byteValue"); in testReadAndWriteStaticFields() local
1132 assertEquals((byte) 0x35, byteSwap.invoke(null, (byte) 0x64)); in testReadAndWriteStaticFields()
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h1762 APInt byteSwap() const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1751 APInt byteSwap() const;
/external/llvm-project/llvm/lib/MC/
DMCStreamer.cpp149 const APInt Swapped = ShouldSwap ? Value.byteSwap() : Value; in emitIntValue()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp130 Builder->getInt(ConstLHS->getValue().byteSwap()); in SimplifyBSwap()
133 Builder->getInt(ConstRHS->getValue().byteSwap()); in SimplifyBSwap()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp744 APInt APInt::byteSwap() const { in byteSwap() function in APInt
/external/llvm/lib/Support/
DAPInt.cpp766 APInt APInt::byteSwap() const { in byteSwap() function in APInt
/external/llvm-project/llvm/lib/Support/
DAPInt.cpp669 APInt APInt::byteSwap() const { in byteSwap() function in APInt
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp672 APInt APInt::byteSwap() const { in byteSwap() function in APInt

12