/external/libvpx/libvpx/ |
D | md5_utils.c | 27 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/libaom/libaom/common/ |
D | md5_utils.c | 27 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/flac/libFLAC/ |
D | md5.c | 139 static void byteSwap(FLAC__uint32 *buf, unsigned words) in byteSwap() function 170 #define byteSwap(buf, words) macro 254 byteSwap(ctx->in, 14); in FLAC__MD5Final() 261 byteSwap(ctx->buf, 4); in FLAC__MD5Final()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 1457 APInt LLVM_ATTRIBUTE_UNUSED_RESULT byteSwap() const; 1804 inline APInt byteSwap(const APInt &APIVal) { return APIVal.byteSwap(); } in byteSwap() function
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APInt.h | 1278 APInt byteSwap() const; 1597 inline APInt byteSwap(const APInt& APIVal) { in byteSwap() function 1598 return APIVal.byteSwap(); in byteSwap()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 1433 APInt byteSwap() const; 1831 inline APInt byteSwap(const APInt &APIVal) { return APIVal.byteSwap(); } in byteSwap() function
|
/external/llvm/lib/Analysis/ |
D | DemandedBits.cpp | 111 AB = AOut.byteSwap(); in determineLiveOperandBits()
|
D | ValueTracking.cpp | 1297 KnownZero |= KnownZero2.byteSwap(); in computeKnownBitsFromOperator() 1298 KnownOne |= KnownOne2.byteSwap(); in computeKnownBitsFromOperator()
|
D | ConstantFolding.cpp | 1644 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); in ConstantFoldScalarCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | DemandedBits.cpp | 118 AB = AOut.byteSwap(); in determineLiveOperandBits()
|
D | ConstantFolding.cpp | 1815 return ConstantInt::get(Ty->getContext(), Op->getValue().byteSwap()); in ConstantFoldScalarCall()
|
D | ValueTracking.cpp | 1462 Known.Zero |= Known2.Zero.byteSwap(); in computeKnownBitsFromOperator() 1463 Known.One |= Known2.One.byteSwap(); in computeKnownBitsFromOperator()
|
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 1046 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1687 APInt byteSwap() const;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ConstantFolding.cpp | 1277 return ConstantInt::get(F->getContext(), Op->getValue().byteSwap()); in ConstantFoldCall()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 130 Builder->getInt(ConstLHS->getValue().byteSwap()); in SimplifyBSwap() 133 Builder->getInt(ConstRHS->getValue().byteSwap()); in SimplifyBSwap()
|
D | InstCombineCompares.cpp | 2344 ICI.setOperand(1, Builder->getInt(RHSV.byteSwap())); in visitICmpInstWithInstAndIntCst()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APInt.cpp | 873 APInt APInt::byteSwap() const { in byteSwap() function in APInt
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 766 APInt APInt::byteSwap() const { in byteSwap() function in APInt
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 744 APInt APInt::byteSwap() const { in byteSwap() function in APInt
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APInt.cpp | 616 APInt APInt::byteSwap() const { in byteSwap() function in APInt
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2457 KnownZero = KnownZero2.byteSwap(); in computeKnownBits() 2458 KnownOne = KnownOne2.byteSwap(); in computeKnownBits() 2938 return getConstant(Val.byteSwap(), DL, VT, C->isTargetOpcode(), in getNode()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1486 ICI.setOperand(1, ConstantInt::get(II->getContext(), RHSV.byteSwap())); in visitICmpInstWithInstAndIntCst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2952 Known.Zero = Known2.Zero.byteSwap(); in computeKnownBits() 2953 Known.One = Known2.One.byteSwap(); in computeKnownBits() 3813 return getConstant(Val.byteSwap(), DL, VT, C->isTargetOpcode(), in getNode()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 106 NewRHS = ConstantInt::get(I.getType(), C->byteSwap()); in SimplifyBSwap()
|