HomeSort by: relevance | last modified time | path
    Searched refs:NewByte (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDriver.cpp 342 for (auto NewByte : ReplacementBytes) {
343 U[Idx] = NewByte;
351 Printf("CLEANSE: Replaced byte %zd with 0x%x\n", Idx, NewByte);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 4655 int NewByte;
4656 if (!getShuffleInput(OpBytes, Byte, BytesPerElement, NewByte))
4658 if (NewByte < 0) {
4662 Op = Op.getOperand(unsigned(NewByte) / SystemZ::VectorBytes);
4663 Byte = unsigned(NewByte) % SystemZ::VectorBytes;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 971 Value *NewByte = nullptr;
977 NewByte = CGF.Builder.CreateXor(OldByte, Mask);
980 NewByte = CGF.Builder.CreateAnd(OldByte, CGF.Builder.CreateNot(Mask));
983 NewByte = CGF.Builder.CreateOr(OldByte, Mask);
986 if (NewByte)
987 CGF.Builder.CreateStore(NewByte, ByteAddr);

Completed in 76 milliseconds