Searched defs:RegisterType (Results 1 - 5 of 5) sorted by relevance
/external/vixl/src/vixl/a64/ |
H A D | assembler-a64.h | 52 enum RegisterType { enum in class:vixl::CPURegister 67 CPURegister(unsigned code, unsigned size, RegisterType type) 77 RegisterType type() const { 231 RegisterType type_; 466 CPURegList(CPURegister::RegisterType type, unsigned size, RegList list) 471 CPURegList(CPURegister::RegisterType type, unsigned size, 484 CPURegister::RegisterType type() const { 633 CPURegister::RegisterType type_;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
H A D | RegisterType.java | 42 public class RegisterType { class 46 private RegisterType(byte category, @Nullable TypeProto type) { method in class:RegisterType 74 RegisterType that = (RegisterType) o; 177 public static final RegisterType UNKNOWN_TYPE = new RegisterType(UNKNOWN, null); 178 public static final RegisterType UNINIT_TYPE = new RegisterType(UNINIT, null); 179 public static final RegisterType NULL_TYPE = new RegisterType(NUL [all...] |
/external/protobuf/src/google/protobuf/ |
H A D | message.cc | 241 void RegisterType(const Descriptor* descriptor, const Message* prototype); 284 void GeneratedMessageFactory::RegisterType(const Descriptor* descriptor, function in class:google::protobuf::__anon16802::GeneratedMessageFactory 353 GeneratedMessageFactory::singleton()->RegisterType(descriptor, prototype);
|
/external/v8/src/arm64/ |
H A D | assembler-arm64.h | 80 enum RegisterType { enum in struct:v8::internal::CPURegister 89 static CPURegister Create(int code, int size, RegisterType type) { 95 RegisterType type() const; 128 RegisterType reg_type; 392 CPURegList(CPURegister::RegisterType type, int size, RegList list) 397 CPURegList(CPURegister::RegisterType type, int size, int first_reg, 410 CPURegister::RegisterType type() const { 507 CPURegister::RegisterType type_;
|
/external/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 3451 // RegisterType is the type of the register being written to or read from. 3454 llvm::Type *RegisterType, 3457 assert((RegisterType->isIntegerTy(32) || RegisterType->isIntegerTy(64)) 3471 llvm::Type *Types[] = { RegisterType }; 3473 bool MixedTypes = RegisterType->isIntegerTy(64) && ValueType->isIntegerTy(32); 3474 assert(!(RegisterType->isIntegerTy(32) && ValueType->isIntegerTy(64)) 3496 ArgValue = Builder.CreateZExt(ArgValue, RegisterType); 3502 ArgValue = Builder.CreatePtrToInt(ArgValue, RegisterType); 3775 llvm::Type *RegisterType; local 3452 EmitSpecialRegisterBuiltin(CodeGenFunction &CGF, const CallExpr *E, llvm::Type *RegisterType, llvm::Type *ValueType, bool IsRead) argument 4536 llvm::Type *RegisterType = Int64Ty; local [all...] |
Completed in 264 milliseconds