Searched defs:Bin (Results 1 - 4 of 4) sorted by relevance

/external/scrypt/lib/crypto/
H A Dcrypto_scrypt-neon.c88 blockmix_salsa8(uint8x16_t * Bin, uint8x16_t * Bout, uint8x16_t * X, size_t r) argument
93 blkcpy(X, &Bin[8 * r - 4], 64);
98 blkxor(X, &Bin[i * 8], 64);
106 blkxor(X, &Bin[i * 8 + 4], 64);
H A Dcrypto_scrypt-sse.c143 * blockmix_salsa8(Bin, Bout, X, r):
144 * Compute Bout = BlockMix_{salsa20/8, r}(Bin). The input Bin must be 128r
149 blockmix_salsa8(__m128i * Bin, __m128i * Bout, __m128i * X, size_t r) argument
154 blkcpy(X, &Bin[8 * r - 4], 64);
159 blkxor(X, &Bin[i * 8], 64);
167 blkxor(X, &Bin[i * 8 + 4], 64);
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.cpp267 static bool getGNUDebuglinkContents(const Binary *Bin, std::string &DebugName, argument
269 const ObjectFile *Obj = dyn_cast<ObjectFile>(Bin);
301 Binary *Bin = nullptr;
307 Bin = ParsedBinary.get();
309 if (Bin->isMachO() || Bin->isMachOUniversalBinary()) {
326 if (getGNUDebuglinkContents(Bin, DebuglinkName, CRCHash) &&
337 DbgBin = Bin;
338 BinaryPair Res = std::make_pair(Bin, DbgBin);
344 LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin, cons argument
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp357 const MCBinaryExpr *Bin = static_cast<const MCBinaryExpr*>(Expr); local
358 if (HasSecRelSymbolRef(Bin->getLHS())
359 || HasSecRelSymbolRef(Bin->getRHS())) {

Completed in 80 milliseconds