HomeSort by relevance Sort by last modified time
    Searched defs:Register (Results 51 - 67 of 67) sorted by null

1 23

  /external/v8/src/mips/
simulator-mips.h 143 enum Register {
160 pc, // pc must be the last register.
183 // Accessors for register state. Reading the pc value adheres to the MIPS
232 // Returns true if pc register contains one of the 'special_values' defined
362 // FPU control register.
assembler-mips.h 53 // the register initialization to depend on the particular initialization
56 // "initialization". Also, the Register objects cannot be const as this
70 // Implementation of Register and FPURegister.
72 // Core register.
73 struct Register {
78 static int ToAllocationIndex(Register reg) {
82 static Register FromAllocationIndex(int index) {
108 static Register from_code(int code) {
109 Register r = { code };
114 bool is(Register reg) const { return code_ == reg.code_;
    [all...]
  /external/v8/tools/
grokdump.py 503 def Register(self, name):
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 333 /// \brief Return the "preferred" register width on this target.
335 // Currently we assume the register width on the target matches the pointer
442 /// \brief Returns whether the passed in string is a valid register name
448 /// \brief Returns the "normalized" GCC register name.
554 const char * const Register;
707 /// \brief Return the register number that __builtin_eh_return_regno would
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp     [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 243 void Register(AllocatorStats *s) {
812 s->Register(&stats_);
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 52 /// AssertSext, AssertZext - These nodes record if a register contains a
60 BasicBlock, VALUETYPE, CONDCODE, Register, RegisterMask,
156 /// CopyToReg - This node has three operands: a chain, a register number to
161 /// physical register that is defined outside of the scope of this
162 /// SelectionDAG. The register is available from the RegisterSDNode object.
383 /// sign extend a small value in a large integer register (e.g. sign
384 /// extending the low 8 bits of a 32-bit register to fill the top 24 bits
415 /// X = FP_ROUND_INREG(Y, VT) - This operator takes an FP register, and
417 /// in a register of the same size. This operation effectively just
573 /// register (or other high accuracy low latency clock source
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 592 /// referenced by a load instruction with the base register that is the Pc.
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 164 Register,
230 assert(Kind == Register && "Invalid access!");
403 bool isReg() const { return Kind == Register; }
486 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
579 return Error(StartLoc, "invalid register name",
585 // If the match failed, try the register name as lowercase.
599 return Error(StartLoc, "register %"
664 return Error(StartLoc, "invalid register name",
930 // If we parsed a register, then the end loc has already been set and
941 // identifier. Don't try an parse it as a register
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 25 // 'addl' (immediate ...) (register ...)
58 // For register classes, we can generate these subgroups automatically. For
145 /// The (first) register class, subsequent register classes are
159 /// sake user operands only record their immediate super class, while register
175 /// operand matches this class; this is not valid for Token or register kinds.
179 /// MCInst; this is not valid for Token or register kinds.
186 /// For register classes, the records for all the registers in this class.
192 /// isRegisterClass() - Check if this is a register class.
307 /// Register record if this token is singleton register
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include/
ExynosVideoApi.h 267 ExynosVideoErrorType (*Register)(void *pHandle, ExynosVideoPlane *planes, int nPlanes);
287 ExynosVideoErrorType (*Register)(void *pHandle, ExynosVideoPlane *planes, int nPlanes);
  /external/chromium/chrome/browser/automation/
automation_provider_observers.cc     [all...]
  /external/v8/src/arm/
assembler-arm.h 56 // the register initialization to depend on the particular initialization
59 // "initialization". Also, the Register objects cannot be const as this
71 // Core register
72 struct Register {
77 static int ToAllocationIndex(Register reg) {
82 static Register FromAllocationIndex(int index) {
102 static Register from_code(int code) {
103 Register r = { code };
108 bool is(Register reg) const { return code_ == reg.code_; }
146 const Register no_reg = { kRegister_no_reg_Code }
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 142 /// extensions. Extensions register themselves in this map by calling
324 bool ParseRegisterOrRegisterNumber(int64_t &Register, SMLoc DirectiveLoc);
    [all...]
  /external/v8/src/
api.cc 509 void RegisteredExtension::Register(RegisteredExtension* that) {
517 RegisteredExtension::Register(extension);
    [all...]
  /external/ceres-solver/internal/ceres/gtest/
gtest.h     [all...]

Completed in 2340 milliseconds

1 23