HomeSort by relevance Sort by last modified time
    Searched refs:Registers (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/v8/src/arm/
constants-arm.cc 61 const char* Registers::names_[kNumRegisters] = {
67 // List of alias names which can be used when referring to ARM registers.
68 const Registers::RegisterAlias Registers::aliases_[] = {
79 const char* Registers::Name(int reg) {
90 // Support for VFP registers s0 to s31 (d0 to d15) and d16-d31.
130 int Registers::Number(const char* name) {
constants-arm.h 53 // Number of registers in normal ARM mode.
428 // These constants are declared in assembler-arm.cc, as they use named registers
732 class Registers {
  /external/v8/src/arm/
constants-arm.cc 61 const char* Registers::names_[kNumRegisters] = {
67 // List of alias names which can be used when referring to ARM registers.
68 const Registers::RegisterAlias Registers::aliases_[] = {
79 const char* Registers::Name(int reg) {
90 // Support for VFP registers s0 to s31 (d0 to d15).
128 int Registers::Number(const char* name) {
constants-arm.h 94 // Number of registers in normal ARM mode.
441 // These constants are declared in assembler-arm.cc, as they use named registers
738 class Registers {
  /external/smali/
README.md 15 - [Registers wiki page](https://code.google.com/p/smali/wiki/Registers)
  /external/chromium_org/v8/src/mips/
constants-mips.cc 39 // Registers.
44 const char* Registers::names_[kNumSimuRegisters] = {
62 // List of alias names which can be used when referring to MIPS registers.
63 const Registers::RegisterAlias Registers::aliases_[] = {
72 const char* Registers::Name(int reg) {
83 int Registers::Number(const char* name) {
112 // List of alias names which can be used when referring to MIPS registers.
simulator-mips.cc 80 // Print all registers with a nice formatting.
222 int regnum = Registers::Number(desc);
281 #define REG_INFO(n) Registers::Name(n), GetRegisterValue(n), GetRegisterValue(n)
429 int regnum = Registers::Number(arg1);
557 int regnum = Registers::Number(arg1);
675 // Print registers and disassemble.
719 PrintF(" use register name 'all' to print all registers\n");
901 // All registers are initialized to zero to start with.
    [all...]
constants-mips.h 84 // Registers and FPURegisters.
86 // Number of general purpose registers.
90 // Number of registers with HI, LO, and pc.
96 // Number coprocessor registers.
100 // FPU (coprocessor 1) control registers. Currently only FCSR is implemented.
128 class Registers {
184 // the simulator will run through them and print the registers.
577 // registers and other constants.
  /external/v8/src/mips/
constants-mips.cc 39 // Registers.
44 const char* Registers::names_[kNumSimuRegisters] = {
61 // List of alias names which can be used when referring to MIPS registers.
62 const Registers::RegisterAlias Registers::aliases_[] = {
70 const char* Registers::Name(int reg) {
81 int Registers::Number(const char* name) {
109 // List of alias names which can be used when referring to MIPS registers.
simulator-mips.cc 80 // Print all registers with a nice formatting.
222 int regnum = Registers::Number(desc);
281 #define REG_INFO(n) Registers::Name(n), GetRegisterValue(n), GetRegisterValue(n)
429 int regnum = Registers::Number(arg1);
557 int regnum = Registers::Number(arg1);
675 // Print registers and disassemble.
719 PrintF(" use register name 'all' to print all registers\n");
901 // All registers are initialized to zero to start with.
    [all...]
constants-mips.h 83 // Registers and FPURegisters.
85 // Number of general purpose registers.
89 // Number of registers with HI, LO, and pc.
95 // Number coprocessor registers.
99 // FPU (coprocessor 1) control registers. Currently only FCSR is implemented.
127 class Registers {
183 // the simulator will run through them and print the registers.
566 // registers and other constants.
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_atifragshader.c 36 GLfloat Registers[6][4]; /** six temporary registers */
236 COPY_4V(machine->PrevPassRegisters[i], machine->Registers[i]);
265 COPY_4V(machine->Registers[idx],
270 COPY_4V(machine->Registers[idx], machine->PrevPassRegisters[pass_tex]);
272 apply_swizzle(machine->Registers[idx], swizzle);
296 fetch_texel(ctx, tex_coords, 0.0F, idx, machine->Registers[idx]);
346 /* setup the source registers for color and alpha ops */
353 machine->Registers[index - GL_REG_0_ATI]);
536 /* write out the destination registers */
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 36 GLfloat Registers[6][4]; /** six temporary registers */
236 COPY_4V(machine->PrevPassRegisters[i], machine->Registers[i]);
265 COPY_4V(machine->Registers[idx],
270 COPY_4V(machine->Registers[idx], machine->PrevPassRegisters[pass_tex]);
272 apply_swizzle(machine->Registers[idx], swizzle);
296 fetch_texel(ctx, tex_coords, 0.0F, idx, machine->Registers[idx]);
346 /* setup the source registers for color and alpha ops */
353 machine->Registers[index - GL_REG_0_ATI]);
536 /* write out the destination registers */
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 130 // Also compute leading super-registers. Each register has a list of
131 // covered-by-subregs super-registers where it appears as the first explicit
139 // registers, so build a symmetric graph by adding links in both ends.
153 // Iterate over all register units in a set of registers.
236 // Map explicit sub-registers first, so the names take precedence.
237 // The inherited sub-registers are mapped below.
341 // sub-registers. By doing this before computeSecondarySubRegs(), we ensure
362 // sub-registers, the other registers won't contribute any more units.
365 // Explicit sub-registers are usually disjoint, so this is a good way o
    [all...]
AsmWriterEmitter.cpp 541 const std::vector<CodeGenRegister*> &Registers) {
543 SmallVector<std::string, 4> AsmNames(Registers.size());
544 for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
545 const CodeGenRegister &Reg = *Registers[i];
584 for (unsigned i = 0, e = Registers.size(); i != e; ++i) {
597 const std::vector<CodeGenRegister*> &Registers =
611 O << " assert(RegNo && RegNo < " << (Registers.size()+1)
617 emitRegisterNameString(O, AltNameIndices[i]->getName(), Registers);
619 emitRegisterNameString(O, "", Registers);
    [all...]
RegisterInfoEmitter.cpp 38 // runEnums - Print out enum values for all of the registers.
68 // runEnums - Print out enum values for all of the registers.
71 const std::vector<CodeGenRegister*> &Registers = Bank.getRegisters();
74 assert(Registers.size() <= 0xffff && "Too many regs to fit in tables");
76 std::string Namespace = Registers[0]->TheDef->getValueAsString("Namespace");
93 for (unsigned i = 0, e = Registers.size(); i != e; ++i)
94 OS << " " << Registers[i]->getName() << " = " <<
95 Registers[i]->EnumValue << ",\n";
96 assert(Registers.size() == Registers[Registers.size()-1]->EnumValue &
    [all...]
CodeGenRegisters.h 47 // Are all super-registers containing this SubRegIndex covered by their
48 // sub-registers?
128 // Lazily compute a map of all sub-registers.
129 // This includes unique entries for all sub-sub-registers.
132 // Compute extra sub-registers by combining the existing sub-registers.
135 // Add this as a super-register to all sub-registers after the sub-register
140 assert(SubRegsComplete && "Must precompute sub-registers");
144 // Add sub-registers to OSet following a pre-order defined by the .td file.
156 // Get the list of super-registers in topological order, small to large
    [all...]
AsmMatcherEmitter.cpp 187 /// For register classes, the records for all the registers in this class.
188 std::set<Record*> Registers;
210 // Registers classes are only related to registers classes, and only if
218 std::set_intersection(Registers.begin(), Registers.end(),
219 RHS.Registers.begin(), RHS.Registers.end(),
776 // Collect singleton registers, if used.
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
spl_sqrt_floor.s 9 @ Registers touched: r1, r2
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
event_page.js 16 // Registers redirect rules assuming that currently no rules are registered by
  /external/chromium_org/chrome/renderer/resources/extensions/
binding.js 34 // Registers a function as existing but not available, meaning that calls to
167 // Registers a custom event type for the API identified by |namespace|.
173 // Registers a function |hook| to run after the schema for all APIs has been
web_request_internal_custom_bindings.js 56 // Registers a callback to be called when this event is dispatched. If
  /external/chromium_org/v8/tools/
profile.js 96 * Registers a library.
112 * Registers statically compiled code entry.
128 * Registers dynamic (JIT-compiled) code entry.
144 * Registers dynamic (JIT-compiled) code entry.
  /external/v8/tools/
profile.js 96 * Registers a library.
112 * Registers statically compiled code entry.
128 * Registers dynamic (JIT-compiled) code entry.
144 * Registers dynamic (JIT-compiled) code entry.
  /external/grub/netboot/
3c90x.c 54 enum Registers
83 /** following are windowed registers **/
771 /** Program the MAC address into the station address registers **/

Completed in 1049 milliseconds

1 2