HomeSort by relevance Sort by last modified time
    Searched refs:MFP (Results 1 - 5 of 5) sorted by null

  /external/u-boot/include/
mvmfp.h 12 * Header file for MultiFunctionPin (MFP) Configururation framework
21 * MFP configuration is represented by a 32-bit unsigned integer
24 #define MFP(_off, _pull, _drv, _slp, _edge, _sleep, _afn) ( \
25 /* bits 31..16 - MFP Register Offset */ (((_off) & 0xffff) << 16) | \
34 #define MFP(_off, _pull, _drv, _slp, _edge, _sleep, _afn) ( \
35 /* bits 31..16 - MFP Register Offset */ (((_off) & 0xffff) << 16) | \
50 #define MFP_OFFSET_MASK MFP(0xffff, 0, 0, 0, 0, 0, 0)
51 #define MFP_REG(x) MFP(x, 0, 0, 0, 0, 0, 0)
54 #define MFP_AF0 MFP(0x0000, 0, 0, 0, 0, 0, 0)
55 #define MFP_AF1 MFP(0x0000, 0, 0, 0, 0, 0, 1
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-templates-memptrs.cpp 86 template <typename T, void (T::*MFP)()>
88 (o.*MFP)();
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 137 MachineFunctionProperties &set(const MachineFunctionProperties &MFP) {
138 Properties |= MFP.Properties;
141 MachineFunctionProperties &clear(const MachineFunctionProperties &MFP) {
142 Properties.reset(MFP.Properties);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineFunction.h 181 MachineFunctionProperties &set(const MachineFunctionProperties &MFP) {
182 Properties |= MFP.Properties;
186 MachineFunctionProperties &reset(const MachineFunctionProperties &MFP) {
187 Properties.reset(MFP.Properties);
    [all...]
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 81 MachineFunctionProperties MFP;
83 MFP.set(MachineFunctionProperties::Property::AllVRegsAllocated);
84 return MFP;
    [all...]

Completed in 387 milliseconds