HomeSort by relevance Sort by last modified time
    Searched refs:code_ptr (Results 1 - 14 of 14) sorted by null

  /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;
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);
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);
  /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/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...]
  /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/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/hppa/
tcg-target.c 147 static void patch_reloc(uint8_t *code_ptr, int type,
150 uint32_t *insn_ptr = (uint32_t *)code_ptr;
155 pcrel = (value - ((tcg_target_long)code_ptr + 8)) >> 2;
630 disp = (val - ((tcg_target_long)s->code_ptr + 8)) >> 2;
720 val -= (tcg_target_long)s->code_ptr + 8;
727 uint32_t old_insn = *(uint32_t *)s->code_ptr;
729 tcg_out_reloc(s, s->code_ptr, R_PARISC_PCREL17F, label_index, 0);
773 val -= (tcg_target_long)s->code_ptr + 8;
784 uint32_t old_insn = *(uint32_t *)s->code_ptr;
786 tcg_out_reloc(s, s->code_ptr, R_PARISC_PCREL12F, label_index, 0)
    [all...]
  /external/qemu/tcg/
tcg.c 68 static void patch_reloc(uint8_t *code_ptr, int type,
96 *s->code_ptr++ = v;
101 *(uint16_t *)s->code_ptr = v;
102 s->code_ptr += 2;
107 *(uint32_t *)s->code_ptr = v;
108 s->code_ptr += 4;
113 static void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type,
124 patch_reloc(code_ptr, type, l->u.value, addend);
129 r->ptr = code_ptr;
259 s->code_ptr = s->code_buf
    [all...]
tcg.h 301 uint8_t *code_ptr; member in struct:TCGContext
  /external/v8/src/
platform-macos.cc 258 char* code_ptr = getsectdatafromheader_64( local
265 char* code_ptr = getsectdatafromheader(header, SEG_TEXT, SECT_TEXT, &size); local
267 if (code_ptr == NULL) continue;
269 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide;

Completed in 56 milliseconds