HomeSort by relevance Sort by last modified time
    Searched full:code_ptr (Results 1 - 25 of 40) sorted by null

1 2

  /external/e2fsprogs/lib/ss/
request_tbl.c 22 void ss_add_request_table(sci_idx, rqtbl_ptr, position, code_ptr)
26 int *code_ptr;
39 *code_ptr = errno;
52 *code_ptr = 0;
55 void ss_delete_request_table(sci_idx, rqtbl_ptr, code_ptr)
58 int *code_ptr;
63 *code_ptr = SS_ET_TABLE_NOT_FOUND;
69 *code_ptr = 0;
help.c 130 void ss_add_info_dir(sci_idx, info_dir, code_ptr)
133 int *code_ptr;
142 *code_ptr = SS_ET_NO_INFO_DIR;
146 *code_ptr = errno;
157 *code_ptr = errno;
164 *code_ptr = 0;
167 void ss_delete_info_dir(sci_idx, info_dir, code_ptr)
170 int *code_ptr;
182 *code_ptr = 0;
186 *code_ptr = SS_ET_NO_INFO_DIR
    [all...]
invocation.c 24 request_table_ptr, code_ptr)
28 int *code_ptr;
34 *code_ptr = 0;
62 new_table->abbrev_info = ss_abbrev_initialize("/etc/passwd", code_ptr);
ss_internal.h 81 #define ss_current_request(sci_idx,code_ptr) \
82 (*code_ptr=0,ss_info(sci_idx)->current_request)
83 void ss_add_info_dir (int sci_idx, char *info_dir, int *code_ptr);
84 void ss_delete_info_dir (int sci_idx, char *info_dir, int *code_ptr);
  /external/qemu/tcg/x86_64/
tcg-target.c 80 static void patch_reloc(uint8_t *code_ptr, int type,
88 *(uint32_t *)code_ptr = value;
93 *(uint32_t *)code_ptr = value;
96 value -= (long)code_ptr;
99 *(uint32_t *)code_ptr = value;
277 val = offset - ((tcg_target_long)s->code_ptr + 5 + (-rm - 1));
384 disp = target - s->code_ptr - 5;
385 if (disp == (target - s->code_ptr - 5)) {
472 val = l->u.value - (tcg_target_long)s->code_ptr;
497 tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4)
    [all...]
  /external/qemu/gdb-xml/
power-core.xml 43 <reg name="pc" bitsize="32" type="code_ptr" regnum="64"/>
46 <reg name="lr" bitsize="32" type="code_ptr"/>
power64-core.xml 43 <reg name="pc" bitsize="64" type="code_ptr" regnum="64"/>
46 <reg name="lr" bitsize="64" type="code_ptr"/>
arm-core.xml 25 <reg name="pc" bitsize="32" type="code_ptr"/>
cf-core.xml 27 <reg name="pc" bitsize="32" type="code_ptr"/>
cf-fp.xml 21 <reg name="fpiaddr" bitsize="32" type="code_ptr" group="float"/>
  /external/qemu/tcg/sparc/
tcg-target.c 103 static void patch_reloc(uint8_t *code_ptr, int type,
111 *(uint32_t *)code_ptr = value;
114 value -= (long)code_ptr;
118 *(uint32_t *)code_ptr = ((*(uint32_t *)code_ptr) & ~0x3fffff) | value;
121 value -= (long)code_ptr;
125 *(uint32_t *)code_ptr = ((*(uint32_t *)code_ptr) & ~0x7ffff) | value;
477 val = l->u.value - (tcg_target_long)s->code_ptr;
479 | INSN_OFF22(l->u.value - (unsigned long)s->code_ptr)));
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
power-core.xml 43 <reg name="pc" bitsize="32" type="code_ptr" regnum="64"/>
46 <reg name="lr" bitsize="32" type="code_ptr"/>
power64-core.xml 43 <reg name="pc" bitsize="64" type="code_ptr" regnum="64"/>
46 <reg name="lr" bitsize="64" type="code_ptr"/>
arm-core-valgrind-s1.xml 25 <reg name="pcs1" bitsize="32" type="code_ptr"/>
arm-core-valgrind-s2.xml 25 <reg name="pcs2" bitsize="32" type="code_ptr"/>
arm-core.xml 25 <reg name="pc" bitsize="32" type="code_ptr"/>
power-core-valgrind-s1.xml 43 <reg name="pcs1" bitsize="32" type="code_ptr" regnum="64"/>
46 <reg name="lrs1" bitsize="32" type="code_ptr"/>
power-core-valgrind-s2.xml 43 <reg name="pcs2" bitsize="32" type="code_ptr" regnum="64"/>
46 <reg name="lrs2" bitsize="32" type="code_ptr"/>
power64-core-valgrind-s1.xml 43 <reg name="pcs1" bitsize="64" type="code_ptr" regnum="64"/>
46 <reg name="lrs1" bitsize="64" type="code_ptr"/>
power64-core-valgrind-s2.xml 43 <reg name="pcs2" bitsize="64" type="code_ptr" regnum="64"/>
46 <reg name="lrs2" bitsize="64" type="code_ptr"/>
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 154 static uint32_t decode_utf16(const unsigned short **code_ptr)
156 const unsigned short *code = *code_ptr;
159 *code_ptr += 1;
162 *code_ptr += 2;
  /external/qemu/tcg/arm/
tcg-target.c 116 static inline void reloc_abs32(void *code_ptr, tcg_target_long target)
118 *(uint32_t *) code_ptr = target;
121 static inline void reloc_pc24(void *code_ptr, tcg_target_long target)
123 uint32_t offset = ((target - ((tcg_target_long) code_ptr + 8)) >> 2);
125 *(uint32_t *) code_ptr = ((*(uint32_t *) code_ptr) & ~0xffffff)
129 static void patch_reloc(uint8_t *code_ptr, int type,
134 reloc_abs32(code_ptr, value);
143 reloc_pc24(code_ptr, value);
360 s->code_ptr += 3
    [all...]
  /external/qemu/tcg/ppc64/
tcg-target.c 196 static void patch_reloc (uint8_t *code_ptr, int type,
202 reloc_pc14 (code_ptr, value);
205 reloc_pc24 (code_ptr, value);
492 disp = target - (tcg_target_long) s->code_ptr;
641 label1_ptr = s->code_ptr;
670 label2_ptr = s->code_ptr;
675 reloc_pc14 (label1_ptr, (tcg_target_long) s->code_ptr);
760 reloc_pc24 (label2_ptr, (tcg_target_long) s->code_ptr);
787 label1_ptr = s->code_ptr;
799 label2_ptr = s->code_ptr;
    [all...]
  /external/qemu/tcg/ppc/
tcg-target.c 205 static void patch_reloc(uint8_t *code_ptr, int type,
211 reloc_pc14 (code_ptr, value);
214 reloc_pc24 (code_ptr, value);
472 disp = target - (tcg_target_long) s->code_ptr;
587 label1_ptr = s->code_ptr;
634 label2_ptr = s->code_ptr;
639 reloc_pc14 (label1_ptr, (tcg_target_long) s->code_ptr);
720 reloc_pc24 (label2_ptr, (tcg_target_long) s->code_ptr);
783 label1_ptr = s->code_ptr;
834 label2_ptr = s->code_ptr;
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c 86 static void patch_reloc(uint8_t *code_ptr, int type,
92 value -= (uintptr_t)code_ptr;
96 *(uint32_t *)code_ptr = value;
99 value -= (uintptr_t)code_ptr;
103 *(uint8_t *)code_ptr = value;
425 tcg_target_long pc = (tcg_target_long)s->code_ptr + 5 + ~rm;
722 val = l->u.value - (tcg_target_long)s->code_ptr;
749 tcg_out_reloc(s, s->code_ptr, R_386_PC8, label_index, -1);
750 s->code_ptr += 1;
757 tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4)
    [all...]

Completed in 512 milliseconds

1 2