Home
last modified time | relevance | path

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

/external/libvpx/
Dmd5_utils.c28 byteSwap(UWORD32 *buf, unsigned words) in byteSwap() function
91 byteSwap(ctx->in, 16); in MD5Update()
100 byteSwap(ctx->in, 16); in MD5Update()
129 byteSwap(ctx->in, 16); in MD5Final()
136 byteSwap(ctx->in, 14); in MD5Final()
143 byteSwap(ctx->buf, 4); in MD5Final()
/external/flac/libFLAC/
Dmd5.c142 static void byteSwap(FLAC__uint32 *buf, unsigned words) in byteSwap() function
173 #define byteSwap(buf, words) macro
257 byteSwap(ctx->in, 14); in FLAC__MD5Final()
264 byteSwap(ctx->buf, 4); in FLAC__MD5Final()
/external/llvm/include/llvm/ADT/
DAPInt.h1299 APInt byteSwap() const;
1618 inline APInt byteSwap(const APInt& APIVal) { in byteSwap() function
1619 return APIVal.byteSwap(); in byteSwap()
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java922 Method byteSwap = instanceSwapMethod(byte.class, "byteValue"); in testReadAndWriteInstanceFields() local
924 assertEquals((byte) 0x35, byteSwap.invoke(null, instance, (byte) 0x64)); in testReadAndWriteInstanceFields()
1005 Method byteSwap = staticSwapMethod(byte.class, "byteValue"); in testReadAndWriteStaticFields() local
1007 assertEquals((byte) 0x35, byteSwap.invoke(null, (byte) 0x64)); in testReadAndWriteStaticFields()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1285 return ConstantInt::get(F->getContext(), Op->getValue().byteSwap()); in ConstantFoldCall()
/external/llvm/lib/Support/
DAPInt.cpp777 APInt APInt::byteSwap() const { in byteSwap() function in APInt
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1512 ICI.setOperand(1, ConstantInt::get(II->getContext(), RHSV.byteSwap())); in visitICmpInstWithInstAndIntCst()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2408 return getConstant(Val.byteSwap(), VT); in getNode()