OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Bswap
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDefs.h
186
inline uint8_t
Bswap
(uint8_t x) { return x; }
187
inline uint16_t
Bswap
(uint16_t x) { return __builtin_bswap16(x); }
188
inline uint32_t
Bswap
(uint32_t x) { return __builtin_bswap32(x); }
189
inline uint64_t
Bswap
(uint64_t x) { return __builtin_bswap64(x); }
FuzzerMutate.cpp
228
if (Rand.RandBool()) Arg1 =
Bswap
(Arg1);
229
if (Rand.RandBool()) Arg2 =
Bswap
(Arg2);
392
Val =
Bswap
(Val);
398
Val =
Bswap
(T(
Bswap
(Val) + Add)); // Add assuming different endiannes.
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ExpandMemCmp.cpp
315
Function *
Bswap
= Intrinsic::getDeclaration(CI->getModule(),
316
Intrinsic::
bswap
, LoadSizeType);
317
Lhs = Builder.CreateCall(
Bswap
, Lhs);
318
Rhs = Builder.CreateCall(
Bswap
, Rhs);
679
/// %6 = call i64 @llvm.
bswap
.i64(i64 %4)
680
/// %7 = call i64 @llvm.
bswap
.i64(i64 %5)
700
/// %20 = call i32 @llvm.
bswap
.i32(i32 %18)
701
/// %21 = call i32 @llvm.
bswap
.i32(i32 %19)
716
/// %34 = call i16 @llvm.
bswap
.i16(i16 %32)
717
/// %35 = call i16 @llvm.
bswap
.i16(i16 %33
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
531
// ctpop(
bswap
(x)) -> ctpop(x)
1026
case Intrinsic::
bswap
: {
1030
//
bswap
(trunc(
bswap
(x))) -> trunc(lshr(x, c))
1122
// fshl i16 X, X, 8 -->
bswap
i16 X (reduce to more-specific form)
1125
Function *
Bswap
= Intrinsic::getDeclaration(Mod, Intrinsic::
bswap
, Ty);
1126
return CallInst::Create(
Bswap
, { Op0 });
InstCombineCasts.cpp
2699
// bitcast <N x i8> (shuf X, undef, <N, N-1,...0>) -->
bswap
(bitcast X)
2708
Function *
Bswap
=
2709
Intrinsic::getDeclaration(CI.getModule(), Intrinsic::
bswap
, DestTy);
2711
return CallInst::Create(
Bswap
, { ScalarX });
Completed in 21 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026