/external/libunwind/src/x86/ |
Gregs.c | 30 x86_scratch_loc (struct cursor *c, unw_regnum_t reg) 33 return x86_get_scratch_loc (c, reg); 35 return DWARF_REG_LOC (&c->dwarf, reg); 39 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp, 46 switch (reg) 64 arg_num = reg - UNW_X86_EAX; 78 loc = c->dwarf.loc[(reg == UNW_X86_EAX) ? EAX : EDX]; 107 loc = x86_scratch_loc (c, reg); 111 Debug (1, "bad register number %u\n", reg); 122 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp [all...] |
unwind_i.h | 59 extern dwarf_loc_t x86_scratch_loc (struct cursor *c, unw_regnum_t reg); 60 extern dwarf_loc_t x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg); 61 extern void *x86_r_uc_addr (ucontext_t *uc, int reg);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/ |
Xregion.h | 114 #define MEMCHECK(reg, rect, firstrect){\ 115 if ((reg)->numRects >= ((reg)->size - 1)){\ 117 ((char *)(firstrect), (unsigned) (2 * (sizeof(BOX)) * ((reg)->size)));\ 120 (reg)->size *= 2;\ 121 (rect) = &(firstrect)[(reg)->numRects];\ 129 #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)\ 130 (!(((Reg)->numRects > 0)&&\ 137 #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){\ 139 CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xregion.h | 114 #define MEMCHECK(reg, rect, firstrect){\ 115 if ((reg)->numRects >= ((reg)->size - 1)){\ 117 ((char *)(firstrect), (unsigned) (2 * (sizeof(BOX)) * ((reg)->size)));\ 120 (reg)->size *= 2;\ 121 (rect) = &(firstrect)[(reg)->numRects];\ 129 #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)\ 130 (!(((Reg)->numRects > 0)&&\ 137 #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){\ 139 CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){ [all...] |
/art/compiler/utils/x86_64/ |
managed_register_x86_64.h | 44 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg); 193 X86_64ManagedRegister reg(reg_id); 194 CHECK(reg.IsValidManagedRegister()); 195 return reg; 199 std::ostream& operator<<(std::ostream& os, const X86_64ManagedRegister& reg); 204 x86_64::X86_64ManagedRegister reg(id_); 205 CHECK(reg.IsNoRegister() || reg.IsValidManagedRegister()); 206 return reg;
|
/external/libunwind/include/ |
libunwind-dynamic.h | 87 int16_t reg; /* what register */ member in struct:unw_dyn_op 179 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \ 180 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst))) 182 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \ 183 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \ 186 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \ 187 (*(op) = _U_dyn_op (UNW_DYN_SPILL_SP_REL, (qp), (when), (reg), \ 190 #define _U_dyn_op_add(op, qp, when, reg, value) \ 191 (*(op) = _U_dyn_op (UNW_DYN_ADD, (qp), (when), (reg), (value)))
|
/art/compiler/dex/ |
reg_storage.h | 99 static const uint16_t kHighRegNumMask = 0x001f; // 0..31 for high reg 106 // Reg is [F][LLLLL], will override any existing shape and use rs_kind. 107 constexpr RegStorage(RegStorageKind rs_kind, int reg) 111 kValid | rs_kind | (reg & kRegTypeMask)) { 119 << "High reg must be in 0..31: " << high_reg, false) 126 // We do not provide a general operator overload for equality of reg storage, as this is 183 static constexpr bool IsFloat(uint16_t reg) { 184 return ((reg & kFloatingPoint) == kFloatingPoint); 187 static constexpr bool IsDouble(uint16_t reg) { 188 return (reg & (kFloatingPoint | k64BitMask)) == (kFloatingPoint | k64Bits) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 68 int reg = inst->src[i].reg; local 70 if (!bd[b].def[reg]) 71 bd[b].use[reg] = true; 80 inst->regs_written() == v->virtual_grf_sizes[inst->dst.reg] && 84 int reg = inst->dst.reg; local 85 if (!bd[b].use[reg]) 86 bd[b].def[reg] = true; 190 int reg = inst->src[i].reg local 197 int reg = inst->dst.reg; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 68 int reg = inst->src[i].reg; local 70 if (!bd[b].def[reg]) 71 bd[b].use[reg] = true; 80 inst->regs_written() == v->virtual_grf_sizes[inst->dst.reg] && 84 int reg = inst->dst.reg; local 85 if (!bd[b].use[reg]) 86 bd[b].def[reg] = true; 190 int reg = inst->src[i].reg local 197 int reg = inst->dst.reg; local [all...] |
/art/compiler/dex/quick/arm64/ |
fp_arm64.cc | 62 NewLIR3(op, rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg()); 115 NewLIR3(FWIDE(op), rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg()); 192 NewLIR2(op, rl_result.reg.GetReg(), rl_src.reg.GetReg()); 211 NewLIR2(FWIDE(kA64Fcmp2ff), rl_src1.reg.GetReg(), rl_src2.reg.GetReg()) [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_registrar.c | 194 static int wps_set_ie(struct wps_registrar *reg); 198 static void wps_registrar_remove_pin(struct wps_registrar *reg, 202 static void wps_registrar_add_authorized_mac(struct wps_registrar *reg, 209 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) { 215 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1], 217 os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN); 219 (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs)); 223 static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg, 640 struct wps_registrar *reg = os_zalloc(sizeof(*reg)); local 959 struct wps_registrar *reg = eloop_ctx; local 2495 struct wps_registrar *reg = wps->wps->registrar; local 2516 struct wps_registrar *reg = wps->wps->registrar; local 3345 struct wps_registrar *reg = eloop_ctx; local [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Local.java | 27 private int reg = -1; field in class:Local 45 this.reg = nextAvailableRegister; 72 return "v" + reg + "(" + type + ")";
|
/external/libunwind/src/arm/ |
Gget_save_loc.c | 28 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) 35 switch (reg) 53 loc = c->dwarf.loc[reg - UNW_ARM_R0];
|
/external/libunwind/src/ppc32/ |
regname.c | 106 unw_regname (unw_regnum_t reg) 108 if (reg < (unw_regnum_t) ARRAY_SIZE (regname)) 109 return regname[reg];
|
/external/libunwind/src/sh/ |
Gget_save_loc.c | 29 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) 34 switch (reg) 54 loc = c->dwarf.loc[reg];
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
register_allocate.h | 44 unsigned int base_reg, unsigned int reg); 45 void ra_class_add_reg(struct ra_regs *regs, unsigned int c, unsigned int reg); 70 void ra_set_node_reg(struct ra_graph * g, unsigned int n, unsigned int reg);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaInsn.java | 108 * Returns whether or not the specified reg is the result reg. 110 * @param reg register to test 114 public boolean isResultReg(int reg) { 115 return result != null && result.getReg() == reg; 123 * @param reg new result register 125 public void changeResultReg(int reg) { 127 result = result.withReg(reg); 208 * @param reg the register in question 209 * @return true if the reg is a sourc [all...] |
/external/mesa3d/src/mesa/program/ |
register_allocate.h | 44 unsigned int base_reg, unsigned int reg); 45 void ra_class_add_reg(struct ra_regs *regs, unsigned int c, unsigned int reg); 70 void ra_set_node_reg(struct ra_graph * g, unsigned int n, unsigned int reg);
|
/hardware/invensense/60xx/mlsdk/platform/include/ |
i2c.h | 92 void set_i2c_write_register_cb(int (*func)(int fd, int client_addr, unsigned char reg, unsigned char value)); 93 void set_i2c_read_register_cb(unsigned char (*func)(int fd, int client_addr, unsigned char reg)); 96 int _i2c_write_register(int fd, int client_addr, unsigned char reg, unsigned char value); 97 unsigned char _i2c_read_register (int fd, int client_addr, unsigned char reg); 100 int i2c_write_register(int fd, int client_addr, unsigned char reg, unsigned char value); 101 unsigned char i2c_read_register (int fd, int client_addr, unsigned char reg);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
runptests.c | 35 const char *reg; member in struct:test 53 printf ("\n%s\n%.*s\n", tests[cnt].reg, 54 (int) strlen (tests[cnt].reg), 57 else if (tests[cnt].reg == NULL) 65 printf ("regexp: \"%s\", string: \"%s\" -> ", tests[cnt].reg, 69 err = regcomp (&re, tests[cnt].reg, tests[cnt].options);
|
/external/libcxxabi/src/Unwind/ |
DwarfParser.hpp | 378 uint64_t reg; 419 reg = addressSpace.getULEB128(p, instructionsEnd); 422 if (reg > kMaxRegisterNumber) { 424 "malformed DW_CFA_offset_extended dwarf unwind, reg too big\n"); 427 results->savedRegisters[reg].location = kRegisterInCFA; 428 results->savedRegisters[reg].value = offset; 430 fprintf(stderr, "DW_CFA_offset_extended(reg=%lld, offset=%lld)\n", reg, 434 reg = addressSpace.getULEB128(p, instructionsEnd); 436 if (reg > kMaxRegisterNumber) [all...] |
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
DwarfParser.hpp | 378 uint64_t reg; 419 reg = addressSpace.getULEB128(p, instructionsEnd); 422 if (reg > kMaxRegisterNumber) { 424 "malformed DW_CFA_offset_extended dwarf unwind, reg too big\n"); 427 results->savedRegisters[reg].location = kRegisterInCFA; 428 results->savedRegisters[reg].value = offset; 430 fprintf(stderr, "DW_CFA_offset_extended(reg=%lld, offset=%lld)\n", reg, 434 reg = addressSpace.getULEB128(p, instructionsEnd); 436 if (reg > kMaxRegisterNumber) [all...] |
/art/compiler/optimizing/ |
optimizing_unit_test.h | 42 int reg = -1) { 47 interval->SetRegister(reg);
|
/art/runtime/arch/x86/ |
asm_support_x86.S | 80 #define CFI_DEF_CFA(reg,size) .cfi_def_cfa reg,size 81 #define CFI_DEF_CFA_REGISTER(reg) .cfi_def_cfa_register reg 82 #define CFI_RESTORE(reg) .cfi_restore reg 83 #define CFI_REL_OFFSET(reg,size) .cfi_rel_offset reg,size 91 #define CFI_DEF_CFA(reg,size) 92 #define CFI_DEF_CFA_REGISTER(reg) [all...] |
/art/runtime/arch/x86_64/ |
asm_support_x86_64.S | 80 #define CFI_DEF_CFA(reg,size) .cfi_def_cfa reg,size 81 #define CFI_DEF_CFA_REGISTER(reg) .cfi_def_cfa_register reg 82 #define CFI_RESTORE(reg) .cfi_restore reg 83 #define CFI_REL_OFFSET(reg,size) .cfi_rel_offset reg,size 89 #define CFI_DEF_CFA(reg,size) 90 #define CFI_DEF_CFA_REGISTER(reg) [all...] |